Fix return value check

svn path=/trunk/netsurf/; revision=3249
This commit is contained in:
John Mark Bell 2007-04-07 23:27:28 +00:00
parent 00af899230
commit a27a1e425a

View File

@ -82,9 +82,9 @@ void browser_window_create_iframes(struct browser_window *bw,
window->margin_height = cur->margin_height; window->margin_height = cur->margin_height;
if (cur->name) { if (cur->name) {
window->name = strdup(cur->name); window->name = strdup(cur->name);
if (!cur->name) if (!window->name)
warn_user("NoMemory", 0); warn_user("NoMemory", 0);
} }
/* linking */ /* linking */
window->box = cur->box; window->box = cur->box;