Commit a0fc9066effee5ebebac87a6154be92422506382

Ran Benita 2013-02-28T21:06:35

test/rmlvo-to-kccgst: free memory before exit Signed-off-by: Ran Benita <ran234@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/test/rmlvo-to-kccgst.c b/test/rmlvo-to-kccgst.c
index 338cbb8..3443614 100644
--- a/test/rmlvo-to-kccgst.c
+++ b/test/rmlvo-to-kccgst.c
@@ -81,5 +81,11 @@ main(int argc, char *argv[])
     printf("types:    %s\n", kccgst.types);
     printf("compat:   %s\n", kccgst.compat);
     printf("symbols:  %s\n", kccgst.symbols);
+
+    free(kccgst.keycodes);
+    free(kccgst.types);
+    free(kccgst.compat);
+    free(kccgst.symbols);
+    xkb_context_unref(ctx);
     return 0;
 }