fix for missing null check in own recent commit.

This commit is contained in:
Campbell Barton 2011-10-03 18:03:44 +00:00
parent cdc564064c
commit 59c0cbbc34

@ -5157,7 +5157,9 @@ void uiContextActivePropertyHandle(bContext *C)
* currently this is mainly so reset defaults works for the
* operator redo panel - campbell */
uiBlock *block= activebut->block;
block->handle_func(C, block->handle_func_arg, 0);
if (block->handle_func) {
block->handle_func(C, block->handle_func_arg, 0);
}
}
}