From ca83f4d63c0be48d70b91b34ddcab43301c3bd72 Mon Sep 17 00:00:00 2001 From: cha0smaster Date: Tue, 23 Aug 2005 12:17:39 +0000 Subject: [PATCH] fix brokeness introduced in the last Anton's cleanup --- libntfs/unistr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libntfs/unistr.c b/libntfs/unistr.c index 17775cc2..7fc7f64f 100644 --- a/libntfs/unistr.c +++ b/libntfs/unistr.c @@ -115,7 +115,7 @@ int ntfs_names_collate(const ntfschar *name1, const u32 name1_len, 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); }