Merge branch 'master' of git://git.netsurf-browser.org/netsurf
This commit is contained in:
commit
dd35da2cac
|
@ -247,6 +247,8 @@ dom_default_action_DOMNodeInserted_cb(struct dom_event *evt, void *pw)
|
|||
if (dom_string_caseless_isequal(name, corestring_dom_link)) {
|
||||
html_css_process_link(htmlc, (dom_node *)node);
|
||||
}
|
||||
|
||||
dom_string_unref(name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -273,6 +275,8 @@ dom_default_action_DOMSubtreeModified_cb(struct dom_event *evt, void *pw)
|
|||
if (dom_string_caseless_isequal(name, corestring_dom_style)) {
|
||||
html_css_update_style(htmlc, (dom_node *)node);
|
||||
}
|
||||
|
||||
dom_string_unref(name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -429,6 +429,8 @@ bool ro_gui_selection_prepare_paste_dataload(
|
|||
if (ret == UTF8_CONVERT_OK) {
|
||||
clip_length = strlen(clipboard);
|
||||
}
|
||||
|
||||
free(local_cb);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue