2007-03-27 Mat Hostetter <mat@lcs.mit.edu>

* server.c (main): Correct strtoul check.
This commit is contained in:
Daniel Jacobowitz 2007-03-27 19:10:16 +00:00
parent de6a76fdbf
commit 506c7aa0d5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-03-27 Mat Hostetter <mat@lcs.mit.edu>
* server.c (main): Correct strtoul check.
2007-03-27 Jon Ringle <jon@ringle.org>
* linux-low.c: Check __ARCH_HAS_MMU__ also.

View File

@ -727,7 +727,7 @@ main (int argc, char *argv[])
if (argc >= 3 && strcmp (argv[2], "--attach") == 0)
{
if (argc == 4
&& argv[3] != '\0'
&& argv[3][0] != '\0'
&& (pid = strtoul (argv[3], &arg_end, 10)) != 0
&& *arg_end == '\0')
{