1
1

* command.c (enter): Speed up and simplify.

Этот коммит содержится в:
Andrew V. Samoilov 2004-12-10 07:29:57 +00:00
родитель d7355ea381
Коммит c3b5df605c
2 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2004-12-10 Andrew V. Samoilov <sav@bcs.zp.ua>
* command.c (enter): Speed up and simplify.
2004-12-08 Pavel Shirshov <me@pavelsh.pp.ru>
* subshell.c (init_subshell_child): Don't g_strdup() constant string

Просмотреть файл

@ -209,7 +209,7 @@ enter (WInput *cmdline)
return MSG_HANDLED;
} else {
char *command, *s;
size_t i, j;
size_t i, j, cmd_len;
if (!vfs_current_is_local ()) {
message (1, MSG_ERROR,
@ -227,16 +227,15 @@ enter (WInput *cmdline)
return MSG_NOT_HANDLED;
}
#endif
command = g_malloc (strlen (cmd) + 1);
cmd_len = strlen (cmd);
command = g_malloc (cmd_len + 1);
command[0] = 0;
for (i = j = 0; i < strlen (cmd); i++) {
for (i = j = 0; i < cmd_len; i++) {
if (cmd[i] == '%') {
i++;
s = expand_format (NULL, cmd[i], 1);
command = g_realloc (command, strlen (command) + strlen (s)
+ strlen (cmd) - i + 1);
strcat (command, s);
command = g_realloc (command, j + strlen (s) + cmd_len - i + 1);
strcpy (command + j, s);
g_free (s);
j = strlen (command);
} else {