summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-10-07 00:05:07 +0000
committerRoland McGrath <roland@gnu.org>1994-10-07 00:05:07 +0000
commitbbee9c26c27d2ffdd0588b74bcf03050d80cc8b0 (patch)
tree0a2f7ef4f3490612866a5fe510bcf3faf03090b6 /libdiskfs
parent0099b6412a0e59730b60632b95468ce1f05f8d8c (diff)
Formerly boot-start.c.~32~
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/boot-start.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libdiskfs/boot-start.c b/libdiskfs/boot-start.c
index cbe1f871..5f5b5bc0 100644
--- a/libdiskfs/boot-start.c
+++ b/libdiskfs/boot-start.c
@@ -326,7 +326,9 @@ diskfs_S_fsys_init (mach_port_t port,
/* Allocate our reference here; _hurd_port_set will consume a reference
for the library itself. */
- mach_port_mod_refs (mach_task_self (), authhandle, MACH_PORT_RIGHT_SEND, 1);
+ err = mach_port_mod_refs (mach_task_self (),
+ authhandle, MACH_PORT_RIGHT_SEND, +1);
+ assert (!err);
_hurd_port_set (&_hurd_ports[INIT_PORT_PROC], procserver);
_hurd_port_set (&_hurd_ports[INIT_PORT_AUTH], authhandle);
@@ -335,7 +337,7 @@ diskfs_S_fsys_init (mach_port_t port,
mach_port_deallocate (mach_task_self (), diskfs_auth_server_port);
diskfs_auth_server_port = authhandle;
- assert (exectask);
+ assert (exectask != MACH_PORT_NULL);
err = proc_task2proc (procserver, exectask, &execprocess);
assert (!err);