don't use %i for scanf unless non-base-10 input is needed (bug #4717)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6138 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-07-15 16:10:21 +00:00
parent 17fee8dc68
commit 7070dafdbf

View File

@@ -379,7 +379,7 @@ static int myatoi(char *str)
int ret;
if (str == NULL) return -1;
if (sscanf(str,"%i",&ret) != 1) return -1;
if (sscanf(str,"%d",&ret) != 1) return -1;
return ret;
}