Fix a stupid thinko, and fix killall to cope with the updated
find_pid_by_name() interface
-Erik
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c
index 57decc6..7f39dd4 100644
--- a/libbb/find_pid_by_name.c
+++ b/libbb/find_pid_by_name.c
@@ -106,6 +106,7 @@
pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=1;
} else {
+ pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=-1;
}
@@ -181,6 +182,7 @@
pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=1;
} else {
+ pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=-1;
}
return pidList;