Config: Fix a memory leak

This commit is contained in:
Fatih Aşıcı 2007-12-25 22:59:24 +02:00 committed by Julien Cristau
parent 743008a481
commit 389e8917f6

View File

@ -251,6 +251,8 @@ unwind:
xfree(xkb_model); xfree(xkb_model);
if (xkb_layout) if (xkb_layout)
xfree(xkb_layout); xfree(xkb_layout);
if (xkb_variant)
xfree(xkb_variant);
if (xkb_options) if (xkb_options)
xfree(xkb_options); xfree(xkb_options);
if (config_info) if (config_info)