Don't test for NULL when it is both unnecessary (the pointer is checked

against NULL when it is first allocated) and pointless (we've already
dereferenced the pointer several times).

Found by:	Coverity Prevent(tm)
CID:		3204
This commit is contained in:
Colin Percival 2007-05-21 04:45:24 +00:00
parent 51bbfbd15c
commit 3662c7b8ad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169813

View File

@ -1168,7 +1168,7 @@ pax_header(struct archive_read *a, struct tar *tar, struct archive_entry *entry,
return (-1);
while (*wp && *wp != L'=')
++wp;
if (*wp == L'\0' || wp == NULL) {
if (*wp == L'\0') {
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
"Invalid pax extended attributes");
return (ARCHIVE_WARN);