diff options
author | Martin Schulze <joey@infodrom.org> | 2004-09-13 09:07:18 +0200 |
---|---|---|
committer | Andreas Beckmann <debian@abeckmann.de> | 2012-10-01 19:58:43 +0200 |
commit | ae03fe5d926a63cab418207f760d62a947957123 (patch) | |
tree | aa48cfe56ac7c47fb9b0abce4d4689033d3098d6 /debian/patches/util.c.893.patch | |
parent | dd994db23cb7f88732be927fad3a7039bd6301db (diff) | |
download | sendmail-debian/8.12.3-7.1.tar.gz |
Imported Debian patch 8.12.3-7.1debian/8.12.3-7.1
Diffstat (limited to 'debian/patches/util.c.893.patch')
-rw-r--r-- | debian/patches/util.c.893.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/debian/patches/util.c.893.patch b/debian/patches/util.c.893.patch deleted file mode 100644 index fb71fcd..0000000 --- a/debian/patches/util.c.893.patch +++ /dev/null @@ -1,48 +0,0 @@ ---- ./src/util.c.orig Fri Jan 22 07:18:40 1999 -+++ sendmail-8.9.3/src/util.c Thu Apr 29 02:34:21 1999 -@@ -2086,6 +2086,8 @@ - ProcListVec = npv; - } - ProcListVec[i].proc_pid = pid; -+ if (ProcListVec[i].proc_task != NULL) -+ free(ProcListVec[i].proc_task); - ProcListVec[i].proc_task = newstr(task); - - /* if process adding itself, it's not a child */ -@@ -2142,11 +2144,6 @@ - if (ProcListVec[i].proc_pid == pid) - { - ProcListVec[i].proc_pid = NO_PID; -- if (ProcListVec[i].proc_task != NULL) -- { -- free(ProcListVec[i].proc_task); -- ProcListVec[i].proc_task = NULL; -- } - break; - } - } -@@ -2172,11 +2169,6 @@ - for (i = 1; i < ProcListSize; i++) - { - ProcListVec[i].proc_pid = NO_PID; -- if (ProcListVec[i].proc_task != NULL) -- { -- free(ProcListVec[i].proc_task); -- ProcListVec[i].proc_task = NULL; -- } - } - CurChildren = 0; - } -@@ -2207,11 +2199,6 @@ - "proc_list_probe: lost pid %d", - (int) ProcListVec[i].proc_pid); - ProcListVec[i].proc_pid = NO_PID; -- if (ProcListVec[i].proc_task != NULL) -- { -- free(ProcListVec[i].proc_task); -- ProcListVec[i].proc_task = NULL; -- } - CurChildren--; - } - } - |