search for: 667efdc

Displaying 2 results from an estimated 2 matches for "667efdc".

2016 Mar 06
8
[PATCH 0/5] Use less stack.
Various changes/fixes to use smaller stack frames. Rich.
2016 Mar 07
2
[PATCH v2] Use less stack.
...if (buf == NULL) { + perror ("malloc"); + _exit (EXIT_FAILURE); + } snprintf (buf, len, "PS1='mount-local-shell> ' %s --norc -i", shell); r = system (buf); } else diff --git a/fish/events.c b/fish/events.c index 667efdc..0349c55 100644 --- a/fish/events.c +++ b/fish/events.c @@ -99,12 +99,18 @@ do_event_handler (guestfs_h *g, const uint64_t *array, size_t array_len) { pid_t pid; - const char *argv[8 + array_len]; + CLEANUP_FREE const char **argv = NULL; const char *shell; struct entr...