make sure string_table is initialized to NULL in read_shstring_table(),

so that NULL is returned if .strtab is not found
This commit is contained in:
jdolecek 2002-01-03 21:45:58 +00:00
parent d9a0044d29
commit b3adaffa36
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: elf.c,v 1.7 2001/11/08 15:33:15 christos Exp $ */
/* $NetBSD: elf.c,v 1.8 2002/01/03 21:45:58 jdolecek Exp $ */
/*
* Copyright (c) 1998 Johan Danielsson <joda@pdc.kth.se>
@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: elf.c,v 1.7 2001/11/08 15:33:15 christos Exp $");
__RCSID("$NetBSD: elf.c,v 1.8 2002/01/03 21:45:58 jdolecek Exp $");
#include <sys/param.h>
@ -191,7 +191,7 @@ read_shstring_table(int fd, Elf_Ehdr *ehdr)
static char *
read_string_table(int fd, struct elf_section *head, int *strtablen)
{
char *string_table;
char *string_table=NULL;
while (head) {
if ((strcmp(head->name, ".strtab") == 0 )