From 079f9d6fd490052a87a65b6b04bfb87b6ee3065d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 17 Jul 2011 14:11:25 +0000 Subject: Remember to NULL-ify new keys/vals. --- Makefile | 2 +- eqn.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a2b3d449..22156ca6 100644 --- a/Makefile +++ b/Makefile @@ -355,7 +355,7 @@ llib-lmandoc.ln: $(MANDOC_LNS) # You'll need -ldb for Linux. mandocdb: $(MANDOCDB_OBJS) libmandoc.a - $(CC) -o $@ $(MANDOCDB_OBJS) libmandoc.a + $(CC) -o $@ $(MANDOCDB_OBJS) libmandoc.a -ldb llib-lmandocdb.ln: $(MANDOCDB_LNS) $(LINT) $(LINTFLAGS) -Cmandocdb $(MANDOCDB_LNS) diff --git a/eqn.c b/eqn.c index f0f00c62..43b30c9c 100644 --- a/eqn.c +++ b/eqn.c @@ -1,4 +1,4 @@ -/* $Id: eqn.c,v 1.8 2011/07/17 14:08:49 kristaps Exp $ */ +/* $Id: eqn.c,v 1.9 2011/07/17 14:11:25 kristaps Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -283,6 +283,7 @@ eqn_do_define(struct eqn_node *ep, int ln, int pos, const char **end) ep->defs = mandoc_realloc (ep->defs, ep->defsz * sizeof(struct eqn_def)); + ep->defs[i].key = ep->defs[i].val = NULL; } ep->defs[i].keysz = sz; -- cgit v1.2.3