]> git.sur5r.net Git - i3/i3/commitdiff
remove unused statusline_buffer
authorIngo Bürk <ingo.buerk@tngtech.com>
Wed, 18 Feb 2015 19:01:32 +0000 (20:01 +0100)
committerIngo Bürk <ingo.buerk@tngtech.com>
Wed, 18 Feb 2015 19:01:52 +0000 (20:01 +0100)
i3bar/include/common.h
i3bar/src/child.c
i3bar/src/main.c

index e8b6be0a57ec7e2788a9a68a9eb4ed161cfceb8a..90b11f78731f883e7e9a30aa6700524e2538bca0 100644 (file)
@@ -17,7 +17,6 @@ typedef struct rect_t rect;
 
 struct ev_loop *main_loop;
 char *statusline;
-char *statusline_buffer;
 
 struct rect_t {
     int x;
index d0f0c5fbc67deb004a66f73752e1b2c4a533038c..c0ea36138548066693c9f55851359adcba4cf0b1 100644 (file)
@@ -56,7 +56,6 @@ parser_ctx parser_context;
 
 /* The buffer statusline points to */
 struct statusline_head statusline_head = TAILQ_HEAD_INITIALIZER(statusline_head);
-char *statusline_buffer = NULL;
 
 int child_stdin;
 
@@ -115,9 +114,6 @@ void cleanup(void) {
     if (stdin_io != NULL) {
         ev_io_stop(main_loop, stdin_io);
         FREE(stdin_io);
-        FREE(statusline_buffer);
-        /* statusline pointed to memory within statusline_buffer */
-        statusline = NULL;
     }
 
     if (child_sig != NULL) {
index 371aeec9be4e4457d372d6464f408843b3280ef6..ee3d81b974e23923ec2dcacfa2dce47b28708887 100644 (file)
@@ -171,8 +171,6 @@ int main(int argc, char **argv) {
 
     kill_child();
 
-    FREE(statusline_buffer);
-
     clean_xcb();
     ev_default_destroy();