diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2010-05-20 11:04:53 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2010-05-28 16:49:30 +1000 |
commit | 108b766c31b57fb1955d34d85673a235c7f743aa (patch) | |
tree | 150c0dc7a37f60bad953e99cc5468ce1a6a3b201 /hw | |
parent | 151659f9636088fd70bc5586de97bf43ee706180 (diff) |
xfree86: initialize InputAttributes to NULL in the autoconfig code.
Reported-by: Jamey Sharp <jamey@minilop.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/common/xf86Config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c index a4813683c..7acb6afaa 100644 --- a/hw/xfree86/common/xf86Config.c +++ b/hw/xfree86/common/xf86Config.c @@ -2330,6 +2330,7 @@ configInput(IDevPtr inputp, XF86ConfInputPtr conf_input, MessageType from) inputp->driver = conf_input->inp_driver; inputp->commonOptions = conf_input->inp_option_lst; inputp->extraOptions = NULL; + inputp->attrs = NULL; return TRUE; } |