kill correct pid on fdopen failure
authorciomaire <ciomaire@adobe.com>
Tue, 3 May 2016 11:41:14 +0000 (13:41 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Sun, 15 May 2016 08:33:54 +0000 (10:33 +0200)
src/exec.c

index d560f46..83055da 100644 (file)
@@ -744,8 +744,7 @@ static void *exec_notification_one (void *arg) /* {{{ */
     char errbuf[1024];
     ERROR ("exec plugin: fdopen (%i) failed: %s", fd,
         sstrerror (errno, errbuf, sizeof (errbuf)));
-    kill (pl->pid, SIGTERM);
-    pl->pid = 0;
+    kill (pid, SIGTERM);
     close (fd);
     sfree (arg);
     pthread_exit ((void *) 1);