mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix one more issue of debug-printing %s with NULL.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15654 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
8627d4c024
commit
5b85f1ce07
@ -719,7 +719,7 @@ gnc_html_on_url_cb(GtkHTML * html, const gchar * url, gpointer data)
|
||||
{
|
||||
gnc_html * gnchtml = (gnc_html *) data;
|
||||
|
||||
DEBUG("Rollover %s", url);
|
||||
DEBUG("Rollover %s", url ? url : "(null)");
|
||||
g_free(gnchtml->current_link);
|
||||
gnchtml->current_link = g_strdup(url);
|
||||
if(gnchtml->flyover_cb) {
|
||||
|
Loading…
Reference in New Issue
Block a user