* fhandler_process.cc (fhandler_process::fill_filebuf): Deal with error
condition from cmdline retrieval.
This commit is contained in:
@ -301,7 +301,7 @@ fhandler_process::fill_filebuf ()
|
||||
if (filebuf)
|
||||
free (filebuf);
|
||||
filebuf = p->cmdline (filesize);
|
||||
if (!*filebuf)
|
||||
if (!filebuf || !*filebuf)
|
||||
filebuf = strdup ("<defunct>");
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user