From 03c787d6ce8dbd6a0898995c47309f33d7d3490e Mon Sep 17 00:00:00 2001 From: grischka Date: Mon, 11 May 2009 18:46:39 +0200 Subject: fix unused/uninitalized warnings --- tcccoff.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tcccoff.c') diff --git a/tcccoff.c b/tcccoff.c index ddb296d..0dcbe50 100644 --- a/tcccoff.c +++ b/tcccoff.c @@ -84,6 +84,8 @@ int tcc_output_coff(TCCState *s1, FILE *f) Section *stext, *sdata, *sbss; int i, NSectionsToOutput = 0; + Coff_str_table = pCoff_str_table = NULL; + stext = FindSection(s1, ".text"); sdata = FindSection(s1, ".data"); sbss = FindSection(s1, ".bss"); -- cgit v1.3.1