Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/libntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2366/libntfs
Modified Files:
index.c
Log Message:
fix stupidness introduced just before commit
Index: index.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/index.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- index.c 14 Aug 2005 15:44:47 -0000 1.9
+++ index.c 14 Aug 2005 16:06:33 -0000 1.10
@@ -455,8 +455,8 @@ int ntfs_index_add_filename(ntfs_inode *
ntfs_debug("Entering.");
if (!ni || !fn) {
ntfs_error(, "Invalid arguments.");
- err = EINVAL;
- goto err_out;
+ errno = EINVAL;
+ return -1;
}
ictx = ntfs_index_ctx_get(ni, I30, 4);
if (!ictx)
|