Merge branch 'fix_memory_leak' of git://github.com/gs93/dunst into pull_requests

This commit is contained in:
Sascha Kruse 2014-03-08 11:36:35 +01:00
commit 62809844ed

View File

@ -83,6 +83,8 @@ char **string_to_argv(const char *s)
argv = realloc (argv, sizeof (char*) * (n_spaces+1));
argv[n_spaces] = NULL;
free(str);
return argv;
}