summaryrefslogtreecommitdiff
path: root/devel/apr/patches
diff options
context:
space:
mode:
authoritojun <itojun@pkgsrc.org>2003-05-29 01:02:27 +0000
committeritojun <itojun@pkgsrc.org>2003-05-29 01:02:27 +0000
commit3e43c7bc35f5b2358cb2956c0ef9f90b4c2f7a96 (patch)
tree9df0b7f07a819e638dc1f8da54520185fa329d24 /devel/apr/patches
parentcec0da75db35efa8296f20c641105b0b0881401a (diff)
downloadpkgsrc-3e43c7bc35f5b2358cb2956c0ef9f90b4c2f7a96.tar.gz
upgrade to apache 2.0.46. fixes two vulnerabilities:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0245 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0189
Diffstat (limited to 'devel/apr/patches')
-rw-r--r--devel/apr/patches/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/devel/apr/patches/patch-ae b/devel/apr/patches/patch-ae
deleted file mode 100644
index 2fb6d34ba04..00000000000
--- a/devel/apr/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2003/05/25 08:55:19 epg Exp $
-
-Index: threadproc/unix/proc.c
-===================================================================
-RCS file: /home/cvspublic/apr/threadproc/unix/proc.c,v
-retrieving revision 1.62
-diff -a -u -r1.62 proc.c
---- threadproc/unix/proc.c 6 Jan 2003 23:44:38 -0000 1.62
-+++ apr/threadproc/unix/proc.c
-@@ -474,7 +474,11 @@
- waitpid_options |= WNOHANG;
- }
-
-- if ((pstatus = waitpid(proc->pid, &exit_int, waitpid_options)) > 0) {
-+ do {
-+ pstatus = waitpid(proc->pid, &exit_int, waitpid_options);
-+ } while (pstatus < 0 && errno == EINTR);
-+
-+ if (pstatus > 0) {
- proc->pid = pstatus;
-
- if (WIFEXITED(exit_int)) {