mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:52:54 +00:00
Tempoarily patch away SEGV-inducing code. See JIRA 6660 and 6661.
svn path=/trunk/; revision=57301
This commit is contained in:
parent
be682db3a4
commit
01ddf15c62
2 changed files with 35 additions and 0 deletions
|
@ -485,6 +485,7 @@ static void test_heightgivendpi(void)
|
||||||
GdipDeleteFontFamily(fontfamily);
|
GdipDeleteFontFamily(fontfamily);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if CORE_6660_IS_FIXED
|
||||||
static int CALLBACK font_enum_proc(const LOGFONTW *lfe, const TEXTMETRICW *ntme,
|
static int CALLBACK font_enum_proc(const LOGFONTW *lfe, const TEXTMETRICW *ntme,
|
||||||
DWORD type, LPARAM lparam)
|
DWORD type, LPARAM lparam)
|
||||||
{
|
{
|
||||||
|
@ -721,6 +722,7 @@ static void test_font_metrics(void)
|
||||||
GdipDeleteGraphics(graphics);
|
GdipDeleteGraphics(graphics);
|
||||||
DeleteDC(hdc);
|
DeleteDC(hdc);
|
||||||
}
|
}
|
||||||
|
#endif // CORE_6660_IS_FIXED
|
||||||
|
|
||||||
START_TEST(font)
|
START_TEST(font)
|
||||||
{
|
{
|
||||||
|
@ -734,7 +736,9 @@ START_TEST(font)
|
||||||
|
|
||||||
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
|
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
|
||||||
|
|
||||||
|
#if CORE_6660_IS_FIXED
|
||||||
test_font_metrics();
|
test_font_metrics();
|
||||||
|
#endif
|
||||||
test_createfont();
|
test_createfont();
|
||||||
test_logfont();
|
test_logfont();
|
||||||
test_fontfamily();
|
test_fontfamily();
|
||||||
|
|
|
@ -28,3 +28,34 @@ Index: graphics.c
|
||||||
test_get_set_interpolation();
|
test_get_set_interpolation();
|
||||||
test_get_set_textrenderinghint();
|
test_get_set_textrenderinghint();
|
||||||
test_getdc_scaled();
|
test_getdc_scaled();
|
||||||
|
|
||||||
|
Index: font.c
|
||||||
|
===================================================================
|
||||||
|
--- font.c (revision 57206)
|
||||||
|
+++ font.c (working copy)
|
||||||
|
@@ -485,6 +485,7 @@
|
||||||
|
GdipDeleteFontFamily(fontfamily);
|
||||||
|
}
|
||||||
|
|
||||||
|
+#if CORE_6660_IS_FIXED
|
||||||
|
static int CALLBACK font_enum_proc(const LOGFONTW *lfe, const TEXTMETRICW *ntme,
|
||||||
|
DWORD type, LPARAM lparam)
|
||||||
|
{
|
||||||
|
@@ -721,6 +722,7 @@
|
||||||
|
GdipDeleteGraphics(graphics);
|
||||||
|
DeleteDC(hdc);
|
||||||
|
}
|
||||||
|
+#endif // CORE_6660_IS_FIXED
|
||||||
|
|
||||||
|
START_TEST(font)
|
||||||
|
{
|
||||||
|
@@ -734,7 +736,9 @@
|
||||||
|
|
||||||
|
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
|
||||||
|
|
||||||
|
+#if CORE_6660_IS_FIXED
|
||||||
|
test_font_metrics();
|
||||||
|
+#endif
|
||||||
|
test_createfont();
|
||||||
|
test_logfont();
|
||||||
|
test_fontfamily();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue