elm config files - don't write to file if file handle is null
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Wed, 17 Jun 2015 07:37:56 +0000 (16:37 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Wed, 17 Jun 2015 07:38:54 +0000 (16:38 +0900)
fixes seg with new file only config for elm

src/lib/elm_config.c

index 92dd8aa..de77af5 100644 (file)
@@ -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);