From 90d4bb1403e0cf18200c485e7a0a4516a344745e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 30 Mar 2014 19:36:51 +1100 Subject: [PATCH] Fix for uninitialized var use --- source/blender/blenkernel/intern/library_query.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/blenkernel/intern/library_query.c b/source/blender/blenkernel/intern/library_query.c index f67b1ac8796..09c87c58dc0 100644 --- a/source/blender/blenkernel/intern/library_query.c +++ b/source/blender/blenkernel/intern/library_query.c @@ -435,8 +435,6 @@ void BKE_library_foreach_ID_link(ID *id, LibraryIDLinkCallback callback, void *u { MaskSpline *mask_spline; - CALLBACK_INVOKE_ID(mask_spline->parent.id, IDWALK_NOP); - for (mask_spline = mask_layer->splines.first; mask_spline; mask_spline = mask_spline->next)