summaryrefslogtreecommitdiffstats
path: root/lib/libarchive
diff options
context:
space:
mode:
authorkientzle <kientzle@FreeBSD.org>2009-12-28 02:33:22 +0000
committerkientzle <kientzle@FreeBSD.org>2009-12-28 02:33:22 +0000
commita591c39057f7135e425a604e8289faf19b906228 (patch)
tree26accf2f2741283b718b643c63dc06bc7a8fa0fb /lib/libarchive
parentd9802a8c44e50ae9130ebab29fd38b01ac2d6022 (diff)
downloadFreeBSD-src-a591c39057f7135e425a604e8289faf19b906228.zip
FreeBSD-src-a591c39057f7135e425a604e8289faf19b906228.tar.gz
Remove an unused variable and an unnecessary increment.
Diffstat (limited to 'lib/libarchive')
-rw-r--r--lib/libarchive/archive_string.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libarchive/archive_string.c b/lib/libarchive/archive_string.c
index 111dcb1..d68ad58 100644
--- a/lib/libarchive/archive_string.c
+++ b/lib/libarchive/archive_string.c
@@ -291,12 +291,10 @@ __archive_string_utf8_w(struct archive_string *as)
int wc, wc2;/* Must be large enough for a 21-bit Unicode code point. */
const char *src;
int n;
- int err;
ws = (wchar_t *)malloc((as->length + 1) * sizeof(wchar_t));
if (ws == NULL)
__archive_errx(1, "Out of memory");
- err = 0;
dest = ws;
src = as->s;
while (*src != '\0') {
@@ -344,7 +342,7 @@ __archive_string_utf8_w(struct archive_string *as)
} else
*dest++ = wc;
}
- *dest++ = L'\0';
+ *dest = L'\0';
return (ws);
}
OpenPOWER on IntegriCloud