From 25f6db51f031ff22a9a09ce6918747b64cac20b6 Mon Sep 17 00:00:00 2001 From: Jan Arne Petersen Date: Mon, 5 Nov 2012 03:26:40 +0100 Subject: [PATCH] editor: Initalize editor struct with 0 Signed-off-by: Jan Arne Petersen --- clients/editor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clients/editor.c b/clients/editor.c index cbc7218..42c1aec 100644 --- a/clients/editor.c +++ b/clients/editor.c @@ -922,6 +922,8 @@ main(int argc, char *argv[]) { struct editor editor; + memset(&editor, 0, sizeof editor); + editor.display = display_create(argc, argv); if (editor.display == NULL) { fprintf(stderr, "failed to create display: %m\n"); -- 2.7.4