]> git.sur5r.net Git - i3/i3/commitdiff
i3-input: fix (irrelevant) memory leak
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 15 May 2014 21:50:09 +0000 (23:50 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 15 May 2014 21:50:09 +0000 (23:50 +0200)
Given that the code was exit(0)ing directly after using that memory,
it’s not like this has any effect. However, less false positives on the
clang-analyze report pages is a good thing.

i3-input/main.c

index 1c0d68568401b74bbde622a2c05d4f7c550c1848..c9ebd0103bf58d337cbf146fe99467c2d20b0c30 100644 (file)
@@ -214,6 +214,8 @@ static void finish_input() {
 
     ipc_send_message(sockfd, strlen(full), 0, (uint8_t*)full);
 
+    free(full);
+
 #if 0
     free(command);
     return 1;