Skip to content
Snippets Groups Projects
Commit 716d1770 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix strtoul() odd interface

parent 94c3bc33
No related branches found
No related tags found
No related merge requests found
......@@ -362,6 +362,11 @@ lutil_atoux( unsigned *v, const char *s, int x )
assert( s != NULL );
assert( v != NULL );
/* strtoul() has an odd interface */
if ( s[ 0 ] == '-' ) {
return -1;
}
u = strtoul( s, &next, x );
if ( next == s || next[ 0 ] != '\0' ) {
return -1;
......@@ -404,6 +409,11 @@ lutil_atoulx( unsigned long *v, const char *s, int x )
assert( s != NULL );
assert( v != NULL );
/* strtoul() has an odd interface */
if ( s[ 0 ] == '-' ) {
return -1;
}
ul = strtoul( s, &next, x );
if ( next == s || next[ 0 ] != '\0' ) {
return -1;
......@@ -433,6 +443,11 @@ lutil_parse_time(
unsigned long u;
char *what;
/* strtoul() has an odd interface */
if ( s[ 0 ] == '-' ) {
return -1;
}
u = strtoul( s, &next, 10 );
if ( next == s ) {
return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment