diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-28 21:56:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-28 21:56:36 +0000 |
commit | e918e155ed1d36522e0c096e43d275f1ebda0515 (patch) | |
tree | 891280750dbf0fb8c29eba9dd64b7e852433e233 | |
parent | 0afdfdf649005b50c1fffd663537b405129ae4d1 (diff) | |
download | busybox-w32-e918e155ed1d36522e0c096e43d275f1ebda0515.tar.gz busybox-w32-e918e155ed1d36522e0c096e43d275f1ebda0515.tar.bz2 busybox-w32-e918e155ed1d36522e0c096e43d275f1ebda0515.zip |
remove stray semicolon
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 2db85d0d4..26a49a1c3 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -1314,7 +1314,7 @@ int read_line_input(const char* prompt, char* command, int maxsize, line_input_t | |||
1314 | /* If we enter read_line_input for the Nth time, | 1314 | /* If we enter read_line_input for the Nth time, |
1315 | * they may be already allocated! Need to free. */ | 1315 | * they may be already allocated! Need to free. */ |
1316 | free(user_buf); | 1316 | free(user_buf); |
1317 | if (home_pwd_buf != null_str); | 1317 | if (home_pwd_buf != null_str) |
1318 | free(home_pwd_buf); | 1318 | free(home_pwd_buf); |
1319 | user_buf = xstrdup(entry->pw_name); | 1319 | user_buf = xstrdup(entry->pw_name); |
1320 | home_pwd_buf = xstrdup(entry->pw_dir); | 1320 | home_pwd_buf = xstrdup(entry->pw_dir); |