2008-02-08 H.J. Lu <hongjiu.lu@intel.com>

PR binutils/5713
	* strings.c (main): Set string_min to 4 if it is <= 0.
This commit is contained in:
H.J. Lu 2008-02-08 20:58:18 +00:00
parent b0d8593d63
commit d51c30157c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-02-08 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/5713
* strings.c (main): Set string_min to 4 if it is <= 0.
2008-02-07 Alan Modra <amodra@bigpond.net.au>
* objdump.c (main): Don't pass unadorned NULL to concat.

View File

@ -270,7 +270,7 @@ main (int argc, char **argv)
}
}
if (string_min < 0)
if (string_min <= 0)
string_min = 4;
switch (encoding)