]> code.delx.au - gnu-emacs/commitdiff
(get_user_app): Free the gethomedir value.
authorRichard M. Stallman <rms@gnu.org>
Sun, 27 Apr 1997 03:18:20 +0000 (03:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 27 Apr 1997 03:18:20 +0000 (03:18 +0000)
src/xrdb.c

index be1b9cbab1d089d6b8c4d88569372833dae7efb7..9105f6ea763c26b215f9629681abe166c78c021e 100644 (file)
@@ -403,6 +403,7 @@ get_user_app (class)
 {
   char *path;
   char *file = 0;
+  char *free_it = 0;
 
   /* Check for XUSERFILESEARCHPATH.  It is a path of complete file
      names, not directories.  */
@@ -417,16 +418,20 @@ get_user_app (class)
       
       /* Check in the home directory.  This is a bit of a hack; let's
         hope one's home directory doesn't contain any %-escapes.  */
-      || (path = gethomedir (),
-         ((file = search_magic_path (path, class, "%L/%N", 0))
-          || (file = search_magic_path (path, class, "%N", 0)))))
+      || (free_it = gethomedir (),
+         ((file = search_magic_path (free_it, class, "%L/%N", 0))
+          || (file = search_magic_path (free_it, class, "%N", 0)))))
     {
       XrmDatabase db = XrmGetFileDatabase (file);
       free (file);
+      if (free_it)
+       free (free_it);
       return db;
     }
-  else
-    return NULL;
+
+  if (free_it)
+    free (free_it);
+  return NULL;
 }