﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
212	Compiler warning for argv == NULL in execve() on newer Linux	rainer	rainer	"As reported by T. Luettgert, gcc 4.4.4 on Fedora 13 will throw a warning if execve is called
with a NULL argv pointer. This makes many tests in the test suite fail. The patch:

{{{
@@ -419,7 +420,7 @@
 		  fcntl  (pfd, F_SETFD, FD_CLOEXEC);
 		  do {
 		    val_return = execve (pname, 
-					 (task->argc == 0) ? NULL : task->argv, 
+					 (task->argc == 0) ? argp : task->argv, 
 					 (task->envc == 0) ? NULL : task->envv
 					 );
 		  } while (val_return < 0 && errno == EINTR);
}}}"	defect	closed	minor	2.7.2	main		fixed		
