From c802d187e5810441545e08dbf1b7d63a71c21f88 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Fri, 4 Sep 2009 23:20:45 +0000 Subject: Comment out line so build does not crash due to NULL pointer. --- source/blender/makesrna/intern/rna_space.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 0ac7fa40727..542f6e2aeda 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1219,7 +1219,7 @@ static void rna_def_console_line(BlenderRNA *brna) srna = RNA_def_struct(brna, "ConsoleLine", NULL); RNA_def_struct_ui_text(srna, "Console Input", "Input line for the interactive console."); - RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CONSOLE, NULL); + // XXX using non-inited "prop", uh? RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CONSOLE, NULL); prop= RNA_def_property(srna, "line", PROP_STRING, PROP_NONE); RNA_def_property_string_funcs(prop, "rna_ConsoleLine_line_get", "rna_ConsoleLine_line_length", "rna_ConsoleLine_line_set"); -- cgit v1.2.3