Prevent winexe from ever creating a core file. The core file could potentially leak windows login information. Signed-off-by: Jeff Schroeder --- zenoss-2.2.0/externallibs/b/wmi-0.1.12/Samba/source/wmi/wmic.c 2008-06-17 13:08:59.000000000 -0700 +++ zenoss-2.2.0/externallibs/wmi-0.1.12/Samba/source/wmi/wmic.c 2008-06-17 13:18:28.000000000 -0700 @@ -32,6 +32,7 @@ #include "lib/com/dcom/dcom.h" #include "lib/com/proto.h" #include "lib/com/dcom/proto.h" +#include struct WBEMCLASS; struct WBEMOBJECT; @@ -164,6 +165,7 @@ int main(int argc, char **argv) WERROR result; NTSTATUS status; struct IWbemServices *pWS = NULL; + prctl(PR_SET_DUMPABLE, 0); parse_args(argc, argv, &args);