aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-06-22 00:47:18 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-06-22 00:47:18 +0200
commitfbb12ddc6a53ad97ff6bcc7ed9b253c09001ad2f (patch)
tree94c82f9eac30c86a1ec4f4d06f6c17b72b47cf3e /shell/ash.c
parentb6bca7703bbe6aacec0bda964c82fad389a02b69 (diff)
downloadbusybox-w32-1_14_2.tar.gz
busybox-w32-1_14_2.tar.bz2
busybox-w32-1_14_2.zip
post 1.14.1 fixes; bump version to 1.14.21_14_2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 4acc30110..4981f4ce0 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11909,7 +11909,8 @@ find_dot_file(char *name)
11909 */ 11909 */
11910 return fullname; 11910 return fullname;
11911 } 11911 }
11912 stunalloc(fullname); 11912 if (fullname != name)
11913 stunalloc(fullname);
11913 } 11914 }
11914 11915
11915 /* not found in the PATH */ 11916 /* not found in the PATH */