diff options
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index d640159..fe5709f 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -437,7 +437,7 @@ main (argc, argv) of object files in the archive (the 64-bit objects or the 32-bit objects). GNU ar always looks at all kinds of objects in an archive. */ - while (strcmp (argv[1], "-X32_64") == 0) + while (argc > 1 && strcmp (argv[1], "-X32_64") == 0) { argv++; argc--; |