From d68017be3aa40615c000f0b0ac8ae1286b11dca8 Mon Sep 17 00:00:00 2001 From: bapt Date: Sun, 9 Aug 2015 00:19:14 +0000 Subject: Fix typo Remove useless tests before free() Suggested by: jilles --- lib/libc/string/strcoll.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'lib/libc/string/strcoll.c') diff --git a/lib/libc/string/strcoll.c b/lib/libc/string/strcoll.c index 5bad40c..7675e0a 100644 --- a/lib/libc/string/strcoll.c +++ b/lib/libc/string/strcoll.c @@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$"); /* - * In order to properly handle multibyte locales, its easiet to just + * In order to properly handle multibyte locales, its easiest to just * convert to wide characters and then use wcscoll. However if an * error occurs, we gracefully fall back to simple strcmp. Caller * should check errno. @@ -99,18 +99,14 @@ strcoll_l(const char *s, const char *s2, locale_t locale) goto error; ret = wcscoll_l(w1, w2, locale); - if (t1) - free(t1); - if (t2) - free(t2); + free(t1); + free(t2); return (ret); error: - if (t1) - free(t1); - if (t2) - free(t2); + free(t1); + free(t2); return (strcmp(s, s2)); } -- cgit v1.1