Merge branch 'master' of git://git.netsurf-browser.org/netsurf

This commit is contained in:
Steve Fryatt 2013-02-24 23:59:09 +00:00
commit dd35da2cac
2 changed files with 6 additions and 0 deletions

View File

@ -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);
}
}
}

View File

@ -429,6 +429,8 @@ bool ro_gui_selection_prepare_paste_dataload(
if (ret == UTF8_CONVERT_OK) {
clip_length = strlen(clipboard);
}
free(local_cb);
}
}