Use MAP_FAILED and NULL.

This commit is contained in:
joerg 2009-03-10 13:15:40 +00:00
parent 0d16285a6e
commit 9d4bdfc640
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: catopen.c,v 1.27 2009/01/11 02:46:29 christos Exp $ */
/* $NetBSD: catopen.c,v 1.28 2009/03/10 13:15:40 joerg Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: catopen.c,v 1.27 2009/01/11 02:46:29 christos Exp $");
__RCSID("$NetBSD: catopen.c,v 1.28 2009/03/10 13:15:40 joerg Exp $");
#endif /* LIBC_SCCS and not lint */
#define _NLS_PRIVATE
@ -173,7 +173,7 @@ load_msgcat(path)
(off_t)0);
close (fd);
if (data == (void *)-1) {
if (data == MAP_FAILED) {
return (nl_catd)-1;
}
@ -183,7 +183,7 @@ load_msgcat(path)
return (nl_catd)-1;
}
if ((catd = malloc(sizeof (*catd))) == 0) {
if ((catd = malloc(sizeof (*catd))) == NULL) {
munmap(data, (size_t)st.st_size);
return (nl_catd)-1;
}