glibc/posix
Adhemerval Zanella 6c9e1be87a Fix writes past the allocated array bounds in execvpe (BZ#20847)
This patch fixes an invalid write out or stack allocated buffer in
2 places at execvpe implementation:

  1. On 'maybe_script_execute' function where it allocates the new
     argument list and it does not account that a minimum of argc
     plus 3 elements (default shell path, script name, arguments,
     and ending null pointer) should be considered.  The straightforward
     fix is just to take account of the correct list size on argument
     copy.

  2. On '__execvpe' where the executable file name lenght may not
     account for ending '\0' and thus subsequent path creation may
     write past array bounds because it requires to add the terminating
     null.  The fix is to change how to calculate the executable name
     size to add the final '\0' and adjust the rest of the code
     accordingly.

As described in GCC bug report 78433 [1], these issues were masked off by
GCC because it allocated several bytes more than necessary so that many
off-by-one bugs went unnoticed.

Checked on x86_64 with a latest GCC (7.0.0 20161121) with -O3 on CFLAGS.

	[BZ #20847]
	* posix/execvpe.c (maybe_script_execute): Remove write past allocated
	array bounds.
	(__execvpe): Likewise.

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78433
2016-11-22 10:23:07 -02:00
..
bits Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
rxspencer
sys Installed-header hygiene (BZ#20366): time.h types. 2016-09-23 08:43:56 -04:00
BOOST.tests
Depend
Makefile Consolidate posix_fadvise implementations 2016-10-07 14:16:41 -03:00
PCRE.tests
PTESTS
PTESTS2C.sed
TESTS
TESTS2C.sed
Versions Fix aio_* pread namespace (bug 18519). 2015-06-12 17:34:11 +00:00
_exit.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
alarm.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
annexc.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bsd-getpgrp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-ga1.c
bug-ga2.c
bug-getopt1.c
bug-getopt2.c
bug-getopt3.c
bug-getopt4.c
bug-getopt5.c
bug-glob1.c
bug-glob2.c CVE-2016-1234: glob: Do not copy d_name field of struct dirent [BZ #19779] 2016-05-04 12:09:35 +02:00
bug-glob3.c
bug-regex1.c
bug-regex2.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex3.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex4.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex5.c
bug-regex6.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex7.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex8.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex9.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex10.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex11.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex12.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex13.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex14.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex15.c
bug-regex16.c
bug-regex17.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex18.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex19.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex20.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex21.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex22.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex23.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex24.c
bug-regex25.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex26.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex27.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex28.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex29.c
bug-regex30.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex31.c
bug-regex31.input
bug-regex32.c
bug-regex33.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex34.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex35.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-regex36.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
confstr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
cpio.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
environ.c
execl.c posix: Remove dynamic memory allocation from execl{e,p} 2016-03-07 00:21:36 -03:00
execle.c posix: Remove dynamic memory allocation from execl{e,p} 2016-03-07 00:21:36 -03:00
execlp.c posix: Remove dynamic memory allocation from execl{e,p} 2016-03-07 00:21:36 -03:00
execv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
execve.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
execvp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
execvpe.c Fix writes past the allocated array bounds in execvpe (BZ#20847) 2016-11-22 10:23:07 -02:00
fexecve.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fnmatch.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fnmatch.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fnmatch_loop.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fork.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fpathconf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gai.conf
gai_strerror.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
get_child_max.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getaddrinfo.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getconf-speclist.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getconf.c Avoid attempt for runtime checks if all environments are defined 2016-06-24 02:00:12 +05:30
getegid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
geteuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getgroups.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getopt.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getopt.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getopt1.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getopt_init.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getopt_int.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpgrp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getppid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getresgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getresuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getsid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
glob.c Properly initialize glob structure with GLOB_BRACE|GLOB_DOOFFS (bug 20707) 2016-10-31 12:36:08 +01:00
glob.h Installed-header hygiene (BZ#20366): Simple self-contained fixes. 2016-09-23 08:43:55 -04:00
glob64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
globtest.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
globtest.sh Properly initialize glob structure with GLOB_BRACE|GLOB_DOOFFS (bug 20707) 2016-10-31 12:36:08 +01:00
group_member.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
init-posix.c
nanosleep.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pathconf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pause.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
posix-conf-vars.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
posix-conf-vars.list
posix-envs.def Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
posix_madvise.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pread.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pread64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ptestcases.h
pwrite.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pwrite64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
re_comp.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
regcomp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
regex.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
regex.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
regex_internal.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
regex_internal.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
regexbug1.c
regexec.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
runptests.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
runtests.c
sched.h Installed-header hygiene (BZ#20366): time.h types. 2016-09-23 08:43:56 -04:00
sched_cpualloc.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_cpucount.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_cpufree.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_getaffinity.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_getp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_gets.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_primax.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_primin.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_rr_gi.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_setaffinity.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_setp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_sets.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sched_yield.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setpgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setpgrp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setresgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setresuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setsid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sleep.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawn.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawn.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawn_faction_addclose.c Improve file descriptor checks for posix_spawn actions [BZ #19505] 2016-02-19 14:49:38 +01:00
spawn_faction_adddup2.c Improve file descriptor checks for posix_spawn actions [BZ #19505] 2016-02-19 14:49:38 +01:00
spawn_faction_addopen.c Improve file descriptor checks for posix_spawn actions [BZ #19505] 2016-02-19 14:49:38 +01:00
spawn_faction_destroy.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawn_faction_init.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawn_int.h Improve file descriptor checks for posix_spawn actions [BZ #19505] 2016-02-19 14:49:38 +01:00
spawn_valid_fd.c Improve file descriptor checks for posix_spawn actions [BZ #19505] 2016-02-19 14:49:38 +01:00
spawnattr_destroy.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_getdefault.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_getflags.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_getpgroup.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_getschedparam.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_getschedpolicy.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_getsigmask.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_init.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_setdefault.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_setflags.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_setpgroup.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_setschedparam.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_setschedpolicy.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnattr_setsigmask.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawni.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawnp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sysconf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tar.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
test-vfork.c
testcases.h
testfnm.c
times.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
transbug.c
tst-boost.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-chmod.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-cpucount.c
tst-cpuset.c
tst-dir.c Add missing inclusion of libc-internal.h. 2016-02-22 17:44:41 +01:00
tst-exec-static.c
tst-exec.c 2016-06-11 Paul Pluzhnikov <ppluzhnikov@google.com> 2016-06-11 14:50:16 -07:00
tst-execl1.c
tst-execl2.c
tst-execle1.c
tst-execle2.c
tst-execlp1.c
tst-execlp2.c
tst-execv1.c
tst-execv2.c
tst-execve1.c
tst-execve2.c
tst-execvp1.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvp2.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvp3.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvp4.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvpe1.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvpe2.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvpe3.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvpe4.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvpe5.c posix: Fix tst-execvpe5 for --enable-hardcoded-path-in-tests 2016-03-08 09:30:38 +07:00
tst-execvpe6.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-fnmatch.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-fnmatch.input Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-fnmatch2.c
tst-fnmatch3.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-fork.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-getaddrinfo.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-getaddrinfo2.c
tst-getaddrinfo3.c
tst-getaddrinfo4.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-getaddrinfo5.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-getconf.sh Make shebang interpreter directives consistent 2016-01-07 04:03:21 -05:00
tst-getopt_long1.c
tst-gnuglob.c glob: Simplify the interface for the GLOB_ALTDIRFUNC callback gl_readdir 2016-04-29 09:35:30 +02:00
tst-mmap-offset.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-mmap.c
tst-nanosleep.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-nice.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-pathconf.c 2016-06-11 Paul Pluzhnikov <ppluzhnikov@google.com> 2016-06-11 14:50:16 -07:00
tst-pcre.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-posix_fadvise-common.c Consolidate posix_fadvise implementations 2016-10-07 14:16:41 -03:00
tst-posix_fadvise.c Consolidate posix_fadvise implementations 2016-10-07 14:16:41 -03:00
tst-posix_fadvise64.c Consolidate posix_fadvise implementations 2016-10-07 14:16:41 -03:00
tst-posix_spawn-fd.c Improve file descriptor checks for posix_spawn actions [BZ #19505] 2016-02-19 14:49:38 +01:00
tst-preadwrite-common.c Test p{read,write}64 with offset > 4GB 2016-07-12 08:29:17 -07:00
tst-preadwrite.c Test p{read,write}64 with offset > 4GB 2016-07-12 08:29:17 -07:00
tst-preadwrite64.c Test p{read,write}64 with offset > 4GB 2016-07-12 08:29:17 -07:00
tst-regex.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-regex2.c
tst-regexloc.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-rfc3484-2.c
tst-rfc3484-3.c
tst-rfc3484.c
tst-rxspencer-no-utf8.c
tst-rxspencer.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-spawn-static.c
tst-spawn.c 2016-06-11 Paul Pluzhnikov <ppluzhnikov@google.com> 2016-06-11 14:50:16 -07:00
tst-spawn2.c posix: New Linux posix_spawn{p} implementation 2016-03-07 11:53:47 +07:00
tst-spawn3.c posix: Fix open file action for posix_spawn on Linux 2016-09-28 14:07:35 -07:00
tst-sysconf.c
tst-truncate-common.c Consolidate Linux ftruncate implementations 2016-11-09 17:46:11 -02:00
tst-truncate.c Consolidate Linux ftruncate implementations 2016-11-09 17:46:11 -02:00
tst-truncate64.c Consolidate Linux ftruncate implementations 2016-11-09 17:46:11 -02:00
tst-vfork1.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-vfork2.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-vfork3.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-waitid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tstgetopt.c
uname-values.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
uname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
unistd.h Correct ttyslot header declaration conditions (bug 20051). 2016-05-17 15:47:20 +00:00
vfork.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
wait.c Remove union wait [BZ #19613] 2016-04-14 08:54:57 +02:00
wait.h
wait3.c Remove union wait [BZ #19613] 2016-04-14 08:54:57 +02:00
wait4.c Remove union wait [BZ #19613] 2016-04-14 08:54:57 +02:00
waitid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
waitpid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
wordexp-test.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
wordexp-tst.sh Make shebang interpreter directives consistent 2016-01-07 04:03:21 -05:00
wordexp.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
wordexp.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00