mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 04:12:36 -03:00
util: Don't allow ParseMoney(...) of strings with embedded NUL characters
This commit is contained in:
parent
a595011f5a
commit
ccc53e43c5
1 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include <tinyformat.h>
|
||||
#include <util/strencodings.h>
|
||||
#include <util/string.h>
|
||||
|
||||
std::string FormatMoney(const CAmount& n)
|
||||
{
|
||||
|
@ -32,6 +33,9 @@ std::string FormatMoney(const CAmount& n)
|
|||
|
||||
bool ParseMoney(const std::string& str, CAmount& nRet)
|
||||
{
|
||||
if (!ValidAsCString(str)) {
|
||||
return false;
|
||||
}
|
||||
return ParseMoney(str.c_str(), nRet);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue