correct string termination for tomb close invocation

This commit is contained in:
Jaromil 2011-02-09 18:18:22 +01:00
parent 89b76bcf06
commit 22a65c7193

View File

@ -189,7 +189,7 @@ gboolean cb_close(GtkWidget *w, GdkEvent *e) {
for(c=0; read(pipefd[0], &buf, 1) > 0; c++)
map[c] = buf;
close(pipefd[0]);
map[c+1] = '\0';
map[c] = '\n';
execlp("tomb", "tomb", "close", map, (char*)NULL);
_exit(1);
}