From 8888461f6814ae8b6221b02049fb9e1f69a5ff70 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Sat, 29 Feb 2020 00:29:04 +0700 Subject: util: Fail to parse empty string in ParseMoney --- src/util/moneystr.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/util') diff --git a/src/util/moneystr.cpp b/src/util/moneystr.cpp index 981cb1b267..40d8918dfc 100644 --- a/src/util/moneystr.cpp +++ b/src/util/moneystr.cpp @@ -37,6 +37,10 @@ bool ParseMoney(const std::string& str, CAmount& nRet) return false; } + if (str.empty()) { + return false; + } + std::string strWhole; int64_t nUnits = 0; const char* p = str.c_str(); -- cgit v1.2.3