home · contact · privacy
Client: Fix memory leak.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 3 Aug 2014 02:20:52 +0000 (04:20 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 3 Aug 2014 02:20:52 +0000 (04:20 +0200)
TODO
src/client/draw_wins.c

diff --git a/TODO b/TODO
index e79d14101a8d863f132ecf6bce09b202bcd79401..c37c5c23f141ee9aa39ae727c73295f68edf6e2c 100644 (file)
--- a/TODO
+++ b/TODO
@@ -12,5 +12,3 @@ BOTH SERVER/CLIENT:
 CLIENT:
 
 - re-work unnecessary complex command / keybinding / server message mapping
-
-- fix memory leakin draw_wins module
index 6736a1bbb77b980872fa2950c6b57201f546bb22..67b8caeba2f122de7d04156fc9e637348703c311 100644 (file)
@@ -182,7 +182,7 @@ static void add_line_compact(struct Win * win, char * line, attr_t attri,
     uint16_t len_line = strlen(line);
     char * separator = last ? "" : " / ";
     uint32_t len_line_new = len_line + strlen(separator);
-    char * line_new = try_malloc(len_line_new, __func__);
+    char * line_new = try_malloc(len_line_new + 1, __func__);
     int test = sprintf(line_new, "%s%s", line, separator);
     exit_trouble(test < 0, __func__, "sprintf");
     uint16_t x = 0;