PR binutils/21407
* bucomm.c (get_file_size): Return -1 if file_name is NULL.
* ar.c (main): Fail with usage() invocation if no file names are
provided.
+2017-04-26 Nick Clifton <nickc@redhat.com>
+
+ PR binutils/21407
+ * bucomm.c (get_file_size): Return -1 if file_name is NULL.
+ * ar.c (main): Fail with usage() invocation if no file names are
+ provided.
+
2017-04-26 Nick Clifton <nickc@redhat.com>
* readelf.c (process_section_headers): Warn about overlarge
arg_index = 0;
+ if (argv[arg_index] == NULL)
+ usage (0);
+
if (mri_mode)
{
default_deterministic ();
{
struct stat statbuf;
+ if (file_name == NULL)
+ return (off_t) -1;
+
if (stat (file_name, &statbuf) < 0)
{
if (errno == ENOENT)