From 3babdd927a0dfe49b9aa45854bea95bcf0de838b Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 17 Jun 2015 16:37:56 +0900 Subject: [PATCH] elm config files - don't write to file if file handle is null fixes seg with new file only config for elm --- src/lib/elm_config.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_config.c b/src/lib/elm_config.c index 92dd8aa..de77af5 100644 --- a/src/lib/elm_config.c +++ b/src/lib/elm_config.c @@ -3338,9 +3338,13 @@ _elm_config_sub_init(void) _elm_profile); if (!ecore_file_exists(buf)) { - FILE *fp = fopen(buf, "w+"); - fprintf(fp, "flush"); - fclose(fp); + FILE *f = fopen(buf, "w+"); + + if (f) + { + fprintf(f, "flush"); + fclose(f); + } } _eio_monitor = eio_monitor_add(buf); ecore_event_handler_add(EIO_MONITOR_FILE_MODIFIED, _elm_config_file_monitor_cb, NULL); -- 2.7.4