* fhandler_process.cc (fhandler_process::fill_filebuf): Deal with error
condition from cmdline retrieval.
This commit is contained in:
parent
43a299881f
commit
8948b6585d
|
@ -1,3 +1,8 @@
|
||||||
|
2002-11-04 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* fhandler_process.cc (fhandler_process::fill_filebuf): Deal with error
|
||||||
|
condition from cmdline retrieval.
|
||||||
|
|
||||||
2002-11-04 Christopher Faylor <cgf@redhat.com>
|
2002-11-04 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* sigproc.cc (WAIT_SIG_PRIORITY): Bump to highest priority.
|
* sigproc.cc (WAIT_SIG_PRIORITY): Bump to highest priority.
|
||||||
|
|
|
@ -301,7 +301,7 @@ fhandler_process::fill_filebuf ()
|
||||||
if (filebuf)
|
if (filebuf)
|
||||||
free (filebuf);
|
free (filebuf);
|
||||||
filebuf = p->cmdline (filesize);
|
filebuf = p->cmdline (filesize);
|
||||||
if (!*filebuf)
|
if (!filebuf || !*filebuf)
|
||||||
filebuf = strdup ("<defunct>");
|
filebuf = strdup ("<defunct>");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue