Author: tlsa
Date: Thu Dec 1 11:04:35 2011
New Revision: 13213
URL:
http://source.netsurf-browser.org?rev=13213&view=rev
Log:
Squash use of uninitialised variable warning.
Modified:
trunk/netsurf/desktop/hotlist.c
Modified: trunk/netsurf/desktop/hotlist.c
URL:
http://source.netsurf-browser.org/trunk/netsurf/desktop/hotlist.c?rev=132...
==============================================================================
--- trunk/netsurf/desktop/hotlist.c (original)
+++ trunk/netsurf/desktop/hotlist.c Thu Dec 1 11:04:35 2011
@@ -413,7 +413,8 @@
*/
void hotlist_add_entry(bool selected)
{
- struct node *node, *parent;
+ struct node *node;
+ struct node *parent = NULL;
creating_node = true;
if (selected == true) {