Commit b31a1e3f by Richard Stallman

(handler): Check whether c_file and o_file are 0.

From-SVN: r5073
parent 956af069
......@@ -330,10 +330,10 @@ static void
handler (signo)
int signo;
{
if (c_file[0])
if (c_file != 0 && c_file[0])
maybe_unlink (c_file);
if (o_file[0])
if (o_file != 0 && o_file[0])
maybe_unlink (o_file);
signal (signo, SIG_DFL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment