From 4be15b7a086a497f8048bacceaef58b140e8fb87 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Mon, 8 Dec 2008 17:13:30 +0000 Subject: * python/python-value.c (values_in_python): Add specific initialization to NULL to work-around a MacOS linker bug. --- gdb/python/python-value.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gdb/python/python-value.c') diff --git a/gdb/python/python-value.c b/gdb/python/python-value.c index 8bf4ec8..b23174c 100644 --- a/gdb/python/python-value.c +++ b/gdb/python/python-value.c @@ -30,7 +30,9 @@ can copy the values' types if needed. This is declared unconditionally to reduce the number of uses of HAVE_PYTHON in the generic code. */ -struct value *values_in_python; +/* This variable is unnecessarily initialized to NULL in order to + work around a linker bug on MacOS. */ +struct value *values_in_python = NULL; #ifdef HAVE_PYTHON -- cgit v1.1