In geanydoc/src/geanydoc.c:

>  	GtkWidget *dialog, *entry;
>  
>  	/* example configuration dialog */
> -	dialog = create_Interactive();
> +	dialog = create_Interactive(default_word);
> +	if (default_word)
> +		g_free(default_word);

g_free() (like free()) is NULL-safe, no need to guard it


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.