aboutsummaryrefslogtreecommitdiff
path: root/xkbcomp/compat.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2014-10-23 17:09:50 +0200
committermarha <marha@users.sourceforge.net>2014-10-23 17:09:50 +0200
commitd17578910169acabae7e67a3da8f26b5ed608ce6 (patch)
tree0ad947c621b5b0d04d139ff034c5f6d908fcf61c /xkbcomp/compat.c
parentc1eb417e64d36393974ecb12eee2b88ebed69d2f (diff)
downloadvcxsrv-d17578910169acabae7e67a3da8f26b5ed608ce6.tar.gz
vcxsrv-d17578910169acabae7e67a3da8f26b5ed608ce6.tar.bz2
vcxsrv-d17578910169acabae7e67a3da8f26b5ed608ce6.zip
Solved difference in output between debug version and release version due to unitialised data
Diffstat (limited to 'xkbcomp/compat.c')
-rwxr-xr-x[-rw-r--r--]xkbcomp/compat.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/xkbcomp/compat.c b/xkbcomp/compat.c
index 3dd76581c..f9402f129 100644..100755
--- a/xkbcomp/compat.c
+++ b/xkbcomp/compat.c
@@ -114,7 +114,11 @@ InitCompatInfo(CompatInfo * info, XkbDescPtr xkb)
info->dflt.defs.fileID = info->fileID;
info->dflt.defs.defined = 0;
info->dflt.defs.merge = MergeOverride;
+ info->dflt.defs.next = NULL;
info->dflt.interp.flags = 0;
+ info->dflt.interp.match = 0;
+ info->dflt.interp.mods = 0;
+ info->dflt.interp.sym = 0;
info->dflt.interp.virtual_mod = XkbNoModifier;
info->dflt.interp.act.type = XkbSA_NoAction;
for (i = 0; i < XkbAnyActionDataSize; i++)