Check sscanf() return value in GetValue().
commitd4ec435e9a93138c1f027d8130075b7e93884732
authorAndrew Poelstra (local) <apoelstra@wpsoftware.net>
Mon, 26 Mar 2012 20:17:00 +0000 (26 13:17 -0700)
committerAndrew Poelstra (local) <apoelstra@wpsoftware.net>
Mon, 26 Mar 2012 20:19:34 +0000 (26 13:19 -0700)
treeac159eb5968de720d5fb3f40c4ee787190bece4e
parente4fbe7acf02a02ce73c479b02773421fe8219a82
Check sscanf() return value in GetValue().

In case the user passes something like "+" with no digits to
GetValue, sscanf fails and the function returns an indeterminate
result. This patch fixes that, returning 0 instead if sscanf
fails.
src/misc.c