From 22a65c7193c2c892e4fc5e84d4d0224b248d759a Mon Sep 17 00:00:00 2001 From: Jaromil Date: Wed, 9 Feb 2011 18:18:22 +0100 Subject: [PATCH] correct string termination for tomb close invocation --- src/tomb-status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tomb-status.c b/src/tomb-status.c index c790318..471d486 100644 --- a/src/tomb-status.c +++ b/src/tomb-status.c @@ -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); }