components/libarchive/patches/archive_write_set_format_ar.c.patch
author John Beck <John.Beck@Oracle.COM>
Tue, 28 May 2013 11:52:39 -0700
changeset 1316 22b5cf35a3ea
permissions -rw-r--r--
PSARC 2012/356 libarchive 15959922 add libarchive to Userland

This patch was fed back to the upstream community:
http://code.google.com/p/libarchive/issues/detail?id=287
Given the response "I just committed your patch.", it should
no longer be needed with the next release.

--- libarchive/libarchive/archive_write_set_format_ar.c.orig	Mon Mar 26 19:49:00 2012
+++ libarchive/libarchive/archive_write_set_format_ar.c	Tue Nov 27 17:48:04 2012
@@ -165,7 +165,7 @@
 	 * Reject files with empty name.
 	 */
 	pathname = archive_entry_pathname(entry);
-	if (*pathname == '\0') {
+	if (pathname == NULL || *pathname == '\0') {
 		archive_set_error(&a->archive, EINVAL,
 		    "Invalid filename");
 		return (ARCHIVE_WARN);