mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
windows_service: fix memory leak
Found by codacy.com
This commit is contained in:
parent
0dac3c6428
commit
1a0733e534
1 changed files with 2 additions and 1 deletions
|
@ -70,8 +70,9 @@ namespace {
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return std::string{p_error_text};
|
std::string ret{p_error_text};
|
||||||
LocalFree(p_error_text);
|
LocalFree(p_error_text);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue