1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-04-14 17:43:01 -04:00

Initialize savept to NULL. (coverity)

This commit is contained in:
QC 2015-01-07 17:37:53 +01:00
parent 8ef5a84711
commit 19d8ce279b

View file

@ -2294,7 +2294,7 @@ static void config_sanity_check ( void )
*/
static void setup_switchers ( void )
{
char *savept;
char *savept = NULL;
char *switcher_str = g_strdup ( config.switchers );
char *token;
// Split token on ','. This modifies switcher_str.