diff options
-rw-r--r-- | keycodes.c | 2 | ||||
-rw-r--r-- | misc.c | 2 | ||||
-rw-r--r-- | xkbscan.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -494,7 +494,7 @@ HandleIncludeKeycodes(IncludeStmt * stmt, { unsigned newMerge; XkbFile *rtrn; - KeyNamesInfo included; + KeyNamesInfo included = {0}; Bool haveSelf; haveSelf = False; @@ -43,7 +43,7 @@ ProcessIncludeFile(IncludeStmt * stmt, { FILE *file; XkbFile *rtrn, *mapToUse; - char oldFile[1024]; + char oldFile[1024] = {0}; int oldLine = lineNum; rtrn = XkbFindFileInCache(stmt->file, file_type, &stmt->path); @@ -37,7 +37,7 @@ FILE *yyin = NULL; -static char scanFileBuf[1024]; +static char scanFileBuf[1024] = {0}; char *scanFile = scanFileBuf; int lineNum = 0; |