From 73743d1db73ea57257f902ca94779bb076378bd9 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 23 Jan 2013 10:56:55 +0000 Subject: [PATCH] backport previous e_sys null deref fix SVN revision: 83159 --- ChangeLog | 1 + NEWS | 1 + src/bin/e_sys_main.c | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 40047b2f8..27de5cc80 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ * fixed small leak in illume2 policy config * fixed path setting in import dialog * fixed possible NULL deref in desktop editor + * fixed possible NULL deref in e_sys when debugging 2013-01-22 Massimo Maiurana diff --git a/NEWS b/NEWS index e1062d0e7..fe5304953 100644 --- a/NEWS +++ b/NEWS @@ -44,3 +44,4 @@ Fixes: * fixed small leak in illume2 policy config * fixed path setting in import dialog * fixed possible NULL deref in desktop editor + * fixed possible NULL deref in e_sys when debugging diff --git a/src/bin/e_sys_main.c b/src/bin/e_sys_main.c index 579716e72..b5e412c35 100644 --- a/src/bin/e_sys_main.c +++ b/src/bin/e_sys_main.c @@ -167,7 +167,7 @@ main(int argc, "-ex detach -ex quit > /dev/null 2> /dev/null", cmd, pid, - output); + output ?: "e-output.txt"); r = system(buffer);