Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/libntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13608/libntfs
Modified Files:
unistr.c
Log Message:
fix brokeness introduced in the last Anton's cleanup
Index: unistr.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/unistr.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -p -r1.24 -r1.25
--- unistr.c 22 Aug 2005 21:33:07 -0000 1.24
+++ unistr.c 23 Aug 2005 12:17:39 -0000 1.25
@@ -115,7 +115,7 @@ int ntfs_names_collate(const ntfschar *n
ntfschar c1, c2;
#ifdef DEBUG
- if (!name1 || !name2 || (ic && (!upcase || upcase_len))) {
+ if (!name1 || !name2 || (ic && (!upcase || !upcase_len))) {
Dputs("ntfs_names_collate received NULL pointer!");
exit(1);
}
|