- bug fix: brecht's fixing of warning caused one bug, ... one "break;"

was missing in code ... blender crashed, when it was connected to
   verse server with bitmap node
This commit is contained in:
Jiri Hnidek 2006-10-30 12:24:22 +00:00
parent 65677de02c
commit b17ce5e24a

@ -569,7 +569,7 @@ static void cb_node_create(
VNodeID owner_id)
{
struct VerseSession *session = (VerseSession*)current_verse_session();
struct VNode *vnode;
struct VNode *vnode = NULL;
if(!session) return;
@ -700,12 +700,13 @@ static void cb_node_create(
/* create bitmap data */
vnode->data = (void*)create_bitmap_data();
}
break;
default:
vnode = NULL;
break;
}
vnode->post_node_create(vnode);
if(vnode) vnode->post_node_create(vnode);
}
/*