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

Collapse All | Expand All

(-)libs/FBidi.c.orig (-2 / +2 lines)
Lines 35-41 Link Here
35
Bool FBidiIsApplicable(const char *charset)
35
Bool FBidiIsApplicable(const char *charset)
36
{
36
{
37
	if (fribidi_parse_charset((char *)charset) ==
37
	if (fribidi_parse_charset((char *)charset) ==
38
	    FRIBIDI_CHARSET_NOT_FOUND)
38
	    FRIBIDI_CHAR_SET_NOT_FOUND)
39
	{
39
	{
40
		return False;
40
		return False;
41
	}
41
	}
Lines 69-75 Link Here
69
	}
69
	}
70
70
71
	fribidi_charset = fribidi_parse_charset((char *)charset);
71
	fribidi_charset = fribidi_parse_charset((char *)charset);
72
	if (fribidi_charset == FRIBIDI_CHARSET_NOT_FOUND)
72
	if (fribidi_charset == FRIBIDI_CHAR_SET_NOT_FOUND)
73
	{
73
	{
74
		return NULL;
74
		return NULL;
75
	}
75
	}

Return to bug 118266