diff --git a/sys/compat/irix/irix_exec_elf32.c b/sys/compat/irix/irix_exec_elf32.c index 0c23723221e1..8fea52877a19 100644 --- a/sys/compat/irix/irix_exec_elf32.c +++ b/sys/compat/irix/irix_exec_elf32.c @@ -1,4 +1,4 @@ -/* $NetBSD: irix_exec_elf32.c,v 1.9 2003/10/31 14:04:04 drochner Exp $ */ +/* $NetBSD: irix_exec_elf32.c,v 1.10 2003/11/08 21:33:34 manu Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: irix_exec_elf32.c,v 1.9 2003/10/31 14:04:04 drochner Exp $"); +__KERNEL_RCSID(0, "$NetBSD: irix_exec_elf32.c,v 1.10 2003/11/08 21:33:34 manu Exp $"); #ifndef ELFSIZE #define ELFSIZE 32 /* XXX should die */ @@ -74,7 +74,7 @@ ELFNAME2(irix,probe_o32)(p, epp, eh, itp, pos) char *itp; vaddr_t *pos; { - int error; + int error = 0; #ifdef DEBUG_IRIX printf("irix_probe_o32()\n"); @@ -112,7 +112,7 @@ ELFNAME2(irix,probe_n32)(p, epp, eh, itp, pos) char *itp; vaddr_t *pos; { - int error; + int error = 0; #ifdef DEBUG_IRIX printf("irix_probe_n32()\n"); diff --git a/sys/compat/irix/irix_prctl.c b/sys/compat/irix/irix_prctl.c index ad5415314549..cba78d8942e2 100644 --- a/sys/compat/irix/irix_prctl.c +++ b/sys/compat/irix/irix_prctl.c @@ -1,4 +1,4 @@ -/* $NetBSD: irix_prctl.c,v 1.21 2003/01/28 23:47:42 manu Exp $ */ +/* $NetBSD: irix_prctl.c,v 1.22 2003/11/08 21:33:35 manu Exp $ */ /*- * Copyright (c) 2001-2002 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: irix_prctl.c,v 1.21 2003/01/28 23:47:42 manu Exp $"); +__KERNEL_RCSID(0, "$NetBSD: irix_prctl.c,v 1.22 2003/11/08 21:33:35 manu Exp $"); #include #include @@ -284,7 +284,7 @@ irix_sproc(entry, inh, arg, sp, len, pid, l, retval) struct irix_sproc_child_args *isc; struct irix_emuldata *ied; struct irix_emuldata *iedp; - struct irix_share_group *isg; + struct irix_share_group *isg = NULL; segsz_t stacksize; #ifdef DEBUG_IRIX diff --git a/sys/compat/irix/irix_systeminfo.c b/sys/compat/irix/irix_systeminfo.c index c84012222549..1317fbdbfcbb 100644 --- a/sys/compat/irix/irix_systeminfo.c +++ b/sys/compat/irix/irix_systeminfo.c @@ -1,4 +1,4 @@ -/* $NetBSD: irix_systeminfo.c,v 1.7 2003/01/22 12:58:24 rafal Exp $ */ +/* $NetBSD: irix_systeminfo.c,v 1.8 2003/11/08 21:33:35 manu Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: irix_systeminfo.c,v 1.7 2003/01/22 12:58:24 rafal Exp $"); +__KERNEL_RCSID(0, "$NetBSD: irix_systeminfo.c,v 1.8 2003/11/08 21:33:35 manu Exp $"); #include #include @@ -90,8 +90,8 @@ irix_sys_systeminfo(l, v, retval) struct proc *p = l->l_proc; const char *str = NULL; char strbuf[BUF_SIZE + 1]; - int error; - size_t len; + int error = 0; + size_t len = 0; char buf[256]; caddr_t sg = stackgap_init(p, 0);