summaryrefslogtreecommitdiff
path: root/x11/xedit/files/patch-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'x11/xedit/files/patch-util.c')
-rw-r--r--x11/xedit/files/patch-util.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/x11/xedit/files/patch-util.c b/x11/xedit/files/patch-util.c
new file mode 100644
index 000000000000..22ec83b7c17c
--- /dev/null
+++ b/x11/xedit/files/patch-util.c
@@ -0,0 +1,27 @@
+--- util.c.orig 2015-02-21 21:42:33 UTC
++++ util.c
+@@ -506,13 +506,14 @@ ResolveName(char *filename)
+
+ if (result == NULL && errno == ENOENT) {
+ int length;
+- char *dir, *file;
++ char *dir, *file, *fname;
+
+ length = strlen(filename);
+ tmp = dir = XtMalloc(length + 1);
+ strcpy(dir, filename);
++ fname = strdup(filename);
+
+- file = basename(filename);
++ file = basename(fname);
+ dir = dirname(tmp);
+
+ /* Creating a new file? */
+@@ -526,6 +527,7 @@ ResolveName(char *filename)
+ }
+
+ XtFree(tmp);
++ free(fname);
+ }
+
+ return (result);