shell: Free temporary strings

Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
Quentin Glidic 2013-06-18 09:11:03 +02:00 committed by Kristian Høgsberg
parent 9ae2f111d4
commit 8418c298af

View file

@ -402,8 +402,10 @@ shell_configuration(struct desktop_shell *shell)
weston_config_section_get_string(section,
"binding-modifier", &s, "super");
shell->binding_modifier = get_modifier(s);
free(s);
weston_config_section_get_string(section, "animation", &s, "none");
shell->win_animation_type = get_animation_type(s);
free(s);
weston_config_section_get_uint(section, "num-workspaces",
&shell->workspaces.num,
DEFAULT_NUM_WORKSPACES);