Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 189690 | Differences between
and this patch

Collapse All | Expand All

(-)./star/extract.c.orig (-2 / +2 lines)
Lines 1668-1677 Link Here
1668
		    (p[2] == '/' || p[2] == '\0')) {
1668
		    (p[2] == '/' || p[2] == '\0')) {
1669
			return (TRUE);
1669
			return (TRUE);
1670
		}
1670
		}
1671
		do {
1671
		while (*p != '/') {
1672
			if (*p++ == '\0')
1672
			if (*p++ == '\0')
1673
				return (FALSE);
1673
				return (FALSE);
1674
		} while (*p != '/');
1674
		}
1675
		p++;
1675
		p++;
1676
	}
1676
	}
1677
	return (FALSE);
1677
	return (FALSE);

Return to bug 189690