Blame SOURCES/libtar-1.2.11-mem-deref.patch

360332
--- libtar-1.2.11/lib/libtar.h.deref	2009-12-30 16:37:03.790121122 +0100
360332
+++ libtar-1.2.11/lib/libtar.h	2009-12-30 16:37:35.521246633 +0100
360332
@@ -172,6 +172,7 @@ int th_write(TAR *t);
360332
 #define TH_ISDIR(t)	((t)->th_buf.typeflag == DIRTYPE \
360332
 			 || S_ISDIR((mode_t)oct_to_int((t)->th_buf.mode)) \
360332
 			 || ((t)->th_buf.typeflag == AREGTYPE \
360332
+			     && strlen((t)->th_buf.name) \
360332
 			     && ((t)->th_buf.name[strlen((t)->th_buf.name) - 1] == '/')))
360332
 #define TH_ISFIFO(t)	((t)->th_buf.typeflag == FIFOTYPE \
360332
 			 || S_ISFIFO((mode_t)oct_to_int((t)->th_buf.mode)))
360332
--- libtar-1.2.11/lib/util.c.deref	2003-01-07 02:41:00.000000000 +0100
360332
+++ libtar-1.2.11/lib/util.c	2009-12-30 17:35:51.860121660 +0100
360332
@@ -133,9 +133,7 @@ oct_to_int(char *oct)
360332
 {
360332
 	int i;
360332
 
360332
-	sscanf(oct, "%o", &i);
360332
-
360332
-	return i;
360332
+	return sscanf(oct, "%o", &i) == 1 ? i : 0;
360332
 }
360332
 
360332
 
360332