aboutsummaryrefslogtreecommitdiff
path: root/src/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/debug.c b/src/debug.c
index f72fe9b..e65919b 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -154,6 +154,9 @@ static void _type_str(FILE *f, struct type *t);
static void _type_list_str(FILE *f, struct type *types)
{
+ if (!types)
+ return;
+
_type_str(f, types);
foreach_type(type, types->n) {