Need to strdup the params, as they are free'd later.

SVN revision: 32268
This commit is contained in:
Sebastian Dransfeld 2007-10-31 20:03:21 +00:00
parent b8cd2447aa
commit 1912e70288
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ e_int_config_keybindings(E_Container *con, const char *params)
"enlightenment/keys", 0, v, NULL);
if ((params) && (params[0]))
{
cfd->cfdata->params = params;
cfd->cfdata->params = strdup(params);
_add_key_binding_cb(cfd->cfdata, NULL);
}