Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!husc6!seismo!mcvax!botter!klipper!westerhu From: westerhu@klipper.UUCP Newsgroups: comp.os.minix Subject: Bug in fs/link.c Message-ID: <713@klipper.cs.vu.nl> Date: Wed, 8-Apr-87 05:36:20 EST Article-I.D.: klipper.713 Posted: Wed Apr 8 05:36:20 1987 Date-Received: Sat, 11-Apr-87 07:14:14 EST Organization: V.U. Informatica, Amsterdam, the Netherlands Lines: 13 There is a bug on source line 11304 in fs/link.c The 'put_inode(rip)' is missing if 'fetch_name(name2,......)' fails. So, the correct line 11304 should be: if (fetch_name(name2, name2_length, M1) != OK) { put_inode(rip); return(err_code); } Edo Westerhuis.