diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-01 10:13:20 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-01 10:13:20 +0000 |
commit | 7cba04f6dedcf888170496bf8f1857c4069d1131 (patch) | |
tree | affaa99c83934efb6c95255ee6bf36973f5be860 /bsd-user | |
parent | 660f11be541813be5f09fbaf44d8e7c6d5a5bbfe (diff) |
More NULL pointer fixes
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/bsdload.c | 2 | ||||
-rw-r--r-- | bsd-user/elfload.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bsd-user/bsdload.c b/bsd-user/bsdload.c index 05fd20acd..14a93bf39 100644 --- a/bsd-user/bsdload.c +++ b/bsd-user/bsdload.c @@ -163,7 +163,7 @@ int loader_exec(const char * filename, char ** argv, char ** envp, bprm.p = TARGET_PAGE_SIZE*MAX_ARG_PAGES-sizeof(unsigned int); for (i=0 ; i<MAX_ARG_PAGES ; i++) /* clear page-table */ - bprm.page[i] = 0; + bprm.page[i] = NULL; retval = open(filename, O_RDONLY); if (retval < 0) return retval; diff --git a/bsd-user/elfload.c b/bsd-user/elfload.c index ed25e8519..678f3e6ad 100644 --- a/bsd-user/elfload.c +++ b/bsd-user/elfload.c @@ -1014,7 +1014,7 @@ static const char *lookup_symbolxx(struct syminfo *s, target_ulong orig_addr) key.st_value = orig_addr; sym = bsearch(&key, syms, s->disas_num_syms, sizeof(*syms), symfind); - if (sym != 0) { + if (sym != NULL) { return s->disas_strtab + sym->st_name; } |