mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
* regtool.cc (main): Avoid a SEGV when nothing follows -K.
This commit is contained in:
parent
d61925786a
commit
2391eea57e
@ -1,3 +1,7 @@
|
||||
2005-02-27 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* regtool.cc (main): Avoid a SEGV when nothing follows -K.
|
||||
|
||||
2005-02-26 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* kill (getsig): Avoid buffer overflow when generating a signal name.
|
||||
|
@ -674,7 +674,10 @@ main (int argc, char **_argv)
|
||||
print_version ();
|
||||
exit (0);
|
||||
case 'K':
|
||||
key_sep = *optarg;
|
||||
if (!optarg)
|
||||
usage ();
|
||||
else
|
||||
key_sep = *optarg;
|
||||
break;
|
||||
default :
|
||||
usage ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user