Imported from ../bash-2.02.1.tar.gz.
[platform/upstream/bash.git] / builtins / exec.def
index 4e1394d..d7166d7 100644 (file)
@@ -191,6 +191,11 @@ exec_builtin (list)
 #endif /* JOB_CONTROL */
 
   shell_execve (command, args, env);
+
+  /* We have to set this to NULL because shell_execve has called realloc()
+     to stuff more items at the front of the array, which may have caused
+     the memory to be freed by realloc().  We don't want to free it twice. */
+  args = (char **)NULL;
   if (cleanenv == 0)
     adjust_shell_level (1);