started with: ./tools/valgrind/valgrind-full.sh --rebuild --suppress-known --skip-crashes HEAD is: commit 0def005b7744e11fec02a6ff74e1c5bc24ea7273 Author: Nikolay Sivov Date: Fri Dec 9 01:10:11 2016 +0300 comctl32/tests: Increase fixed buffer size to make test string fit. Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard commit before HEAD is: commit 74735f327c804b8739489bbcb777736516c33f03 Author: Henri Verbeet Date: Thu Dec 8 14:32:00 2016 +0100 d2d1: Use d2d_point_set() in d2d_rectangle_geometry_init(). Signed-off-by: Henri Verbeet Signed-off-by: Alexandre Julliard diff --git a/dlls/d2d1/d2d1_private.h b/dlls/d2d1/d2d1_private.h index 2e05b80..5b494d5 100644 --- a/dlls/d2d1/d2d1_private.h +++ b/dlls/d2d1/d2d1_private.h @@ -382,6 +382,12 @@ static inline BOOL d2d_matrix_invert(D2D_MATRIX_3X2_F *dst, const D2D_MATRIX_3X2 return TRUE; } +static inline void d2d_point_set(D2D1_POINT_2F *dst, float x, float y) +{ + dst->x = x; + dst->y = y; +} + static inline void d2d_point_transform(D2D1_POINT_2F *dst, const D2D1_MATRIX_3X2_F *matrix, float x, float y) { dst->x = x * matrix->_11 + y * matrix->_21 + matrix->_31; diff --git a/dlls/d2d1/geometry.c b/dlls/d2d1/geometry.c index 8bdd818..f0e1d08 100644 --- a/dlls/d2d1/geometry.c +++ b/dlls/d2d1/geometry.c @@ -2600,6 +2600,9 @@ static const struct ID2D1RectangleGeometryVtbl d2d_rectangle_geometry_vtbl = HRESULT d2d_rectangle_geometry_init(struct d2d_geometry *geometry, ID2D1Factory *factory, const D2D1_RECT_F *rect) { + D2D1_POINT_2F *fv; + float l, r, t, b; + d2d_geometry_init(geometry, factory, &identity, (ID2D1GeometryVtbl *)&d2d_rectangle_geometry_vtbl); geometry->u.rectangle.rect = *rect; @@ -2617,14 +2620,16 @@ HRESULT d2d_rectangle_geometry_init(struct d2d_geometry *geometry, ID2D1Factory } geometry->fill.face_count = 2; - geometry->fill.vertices[0].x = min(rect->left, rect->right); - geometry->fill.vertices[0].y = min(rect->top, rect->bottom); - geometry->fill.vertices[1].x = min(rect->left, rect->right); - geometry->fill.vertices[1].y = max(rect->top, rect->bottom); - geometry->fill.vertices[2].x = max(rect->left, rect->right); - geometry->fill.vertices[2].y = min(rect->top, rect->bottom); - geometry->fill.vertices[3].x = max(rect->left, rect->right); - geometry->fill.vertices[3].y = max(rect->top, rect->bottom); + l = min(rect->left, rect->right); + r = max(rect->left, rect->right); + t = min(rect->top, rect->bottom); + b = max(rect->top, rect->bottom); + + fv = geometry->fill.vertices; + d2d_point_set(&fv[0], l, t); + d2d_point_set(&fv[1], l, b); + d2d_point_set(&fv[2], r, t); + d2d_point_set(&fv[3], r, b); geometry->fill.faces[0].v[0] = 0; geometry->fill.faces[0].v[1] = 2; diff --git a/dlls/d2d1/render_target.c b/dlls/d2d1/render_target.c index 74dbfb7..0a70897 100644 --- a/dlls/d2d1/render_target.c +++ b/dlls/d2d1/render_target.c @@ -42,12 +42,6 @@ static ID2D1Brush *d2d_draw_get_text_brush(struct d2d_draw_text_layout_ctx *cont return context->brush; } -static void d2d_point_set(D2D1_POINT_2F *dst, float x, float y) -{ - dst->x = x; - dst->y = y; -} - static void d2d_rect_expand(D2D1_RECT_F *dst, const D2D1_POINT_2F *point) { if (point->x < dst->left) Using valgrind-3.13.0.SVN make[1]: Entering directory '/home/austin/wine-valgrind/dlls/advapi32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so cred && touch cred.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 cred.c:820: Tests skipped: CRED_TYPE_DOMAIN_VISIBLE_PASSWORD credentials are not supported or are disabled. Skipping ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so crypt && touch crypt.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so crypt_lmhash && touch crypt_lmhash.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so crypt_md4 && touch crypt_md4.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so crypt_md5 && touch crypt_md5.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so crypt_sha && touch crypt_sha.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so eventlog && touch eventlog.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 eventlog.c:543: Tests skipped: We don't have a backup eventlog to work with eventlog.c:476: Tests skipped: No records in the 'Application' log eventlog.c:886: Tests skipped: No events were written to the eventlog ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so lsa && touch lsa.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so registry && touch registry.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 registry.c:2503: Tests skipped: Not on Wow64, no redirection registry.c:2817: Tests skipped: HKCR key merging not supported registry.c:3113: Tests skipped: HKCR key merging not supported ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so security && touch security.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 security.c:2057: Tests skipped: Well known SID 38 not implemented security.c:2057: Tests skipped: Well known SID 39 not implemented security.c:2057: Tests skipped: Well known SID 40 not implemented security.c:2057: Tests skipped: Well known SID 41 not implemented security.c:2057: Tests skipped: Well known SID 42 not implemented security.c:2057: Tests skipped: Well known SID 43 not implemented security.c:2057: Tests skipped: Well known SID 44 not implemented security.c:2057: Tests skipped: Well known SID 45 not implemented security.c:2057: Tests skipped: Well known SID 46 not implemented security.c:2057: Tests skipped: Well known SID 47 not implemented security.c:2057: Tests skipped: Well known SID 48 not implemented security.c:2057: Tests skipped: Well known SID 49 not implemented security.c:2057: Tests skipped: Well known SID 50 not implemented security.c:2057: Tests skipped: Well known SID 62 not implemented security.c:2057: Tests skipped: Well known SID 63 not implemented security.c:2057: Tests skipped: Well known SID 64 not implemented security.c:2057: Tests skipped: Well known SID 65 not implemented security.c:2057: Tests skipped: Well known SID 70 not implemented security.c:2057: Tests skipped: Well known SID 71 not implemented security.c:2057: Tests skipped: Well known SID 72 not implemented security.c:2057: Tests skipped: Well known SID 73 not implemented security.c:2057: Tests skipped: Well known SID 74 not implemented security.c:2057: Tests skipped: Well known SID 75 not implemented security.c:2057: Tests skipped: Well known SID 76 not implemented security.c:2057: Tests skipped: Well known SID 77 not implemented security.c:2057: Tests skipped: Well known SID 78 not implemented security.c:2057: Tests skipped: Well known SID 79 not implemented security.c:2057: Tests skipped: Well known SID 81 not implemented security.c:2057: Tests skipped: Well known SID 82 not implemented preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==25430== 20 bytes in 1 blocks are definitely lost in loss record 51 of 257 ==25430== at 0x7BC5067C: notify_alloc (heap.c:254) ==25430== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==25430== by 0x7B449700: HeapAlloc (heap.c:271) ==25430== by 0x7B44AE2F: LocalAlloc (heap.c:970) ==25430== by 0x4E4FD97: GetSecurityInfo (security.c:3264) ==25430== by 0x4A62F2A: test_system_security_access (security.c:6202) ==25430== by 0x4A64548: func_security (security.c:6449) ==25430== by 0x4A7393E: run_test (test.h:589) ==25430== by 0x4A73D6A: main (test.h:671) ==25430== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:LocalAlloc fun:GetSecurityInfo fun:test_system_security_access fun:func_security fun:run_test fun:main } ==25430== 148 bytes in 1 blocks are definitely lost in loss record 178 of 257 ==25430== at 0x7BC5067C: notify_alloc (heap.c:254) ==25430== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==25430== by 0x7B449700: HeapAlloc (heap.c:271) ==25430== by 0x7B44AE2F: LocalAlloc (heap.c:970) ==25430== by 0x4E4FD97: GetSecurityInfo (security.c:3264) ==25430== by 0x4A5AA05: test_GetSecurityInfo (security.c:4602) ==25430== by 0x4A64511: func_security (security.c:6438) ==25430== by 0x4A7393E: run_test (test.h:589) ==25430== by 0x4A73D6A: main (test.h:671) ==25430== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:LocalAlloc fun:GetSecurityInfo fun:test_GetSecurityInfo fun:func_security fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M advapi32.dll -p advapi32_test.exe.so service && touch service.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/advapi32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/advpack/tests' ../../../tools/runtest -q -P wine -T ../../.. -M advpack.dll -p advpack_test.exe.so advpack && touch advpack.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advpack.dll -p advpack_test.exe.so files && touch files.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M advpack.dll -p advpack_test.exe.so install && touch install.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/advpack/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/amstream/tests' ../../../tools/runtest -q -P wine -T ../../.. -M amstream.dll -p amstream_test.exe.so amstream && touch amstream.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6bc477c (thread 0094), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06bc477c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06bc477c ESP:04b0df00 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06ffe000 ECX:046e0200 EDX:00200000 ESI:04669578 EDI:046e0200 Stack dump: 0x04b0df00: 04b0df3c 046d9b4c 00000003 00000002 0x04b0df10: 00007f30 00007f44 00000082 00007f4c 0x04b0df20: 00800000 00000000 00007f24 00007f28 0x04b0df30: 00007f2c 00000000 04668d58 00007f54 0x04b0df40: 00000000 00000000 00000000 00000000 0x04b0df50: 00000000 00000000 00000000 aa756700 Backtrace: =>0 0x06bc477c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06baafab in radeonsi_dri.so (+0x670faa) (0x046680f0) 2 0x06bab332 in radeonsi_dri.so (+0x671331) (0x04b0e098) 3 0x06c2b6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e098) 4 0x0656a6fc in radeonsi_dri.so (+0x306fb) (0x04664b30) 5 0x069a2f00 in radeonsi_dri.so (+0x468eff) (0x04664b30) 6 0x069a293d in radeonsi_dri.so (+0x46893c) (0x04664b30) 7 0x0686381b in radeonsi_dri.so (+0x32981a) (0x04664b30) 8 0x0685f846 in radeonsi_dri.so (+0x325845) (0x04664aa8) 9 0x05fdc722 in libgl.so.1 (+0x43721) (0x045b4ec0) 10 0x05fb1a42 in libgl.so.1 (+0x18a41) (0x045b2998) 11 0x05fad60b in libgl.so.1 (+0x1460a) (0x04b0eb54) 12 0x05fad784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0eb54) 13 0x05c1017f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0ec28) 14 0x05c11bd7 init_opengl+0xfbe(once=0x5c6ee38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0ee38) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0ee88) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0eeb8) 17 0x05c12052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0eee8) 18 0x05c1a0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0ef08) 19 0x05c04e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f7550, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0ef38) 20 0x04f99459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0ef68) 21 0x04bffc8b wined3d_adapter_init+0xe0(adapter=0x48f3fc8, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0f398) 22 0x04c006bd wined3d_init+0xa5(wined3d=0x48f3fb8, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0f3c8) 23 0x04c86b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0f428) 24 0x04b3272a ddraw_init+0xda(ddraw=0x48f3f00, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04b0f608) 25 0x04b45d86 DDRAW_Create+0x163(guid=(nil), DD=0x4b0f6d8, UnkOuter=(nil), iid=0x4b72db4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b0f668) 26 0x04b45f55 DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b0f6a8) 27 0x04825f12 create_directdraw+0x3d() [/home/austin/wine-valgrind/dlls/amstream/tests/amstream.c:60] in amstream_test (0x04b0f768) 28 0x04826b4c test_media_streams+0x5d() [/home/austin/wine-valgrind/dlls/amstream/tests/amstream.c:205] in amstream_test (0x04b0fca8) 29 0x0482b25d func_amstream+0x25() [/home/austin/wine-valgrind/dlls/amstream/tests/amstream.c:864] in amstream_test (0x04b0fcc8) 30 0x0482c06d run_test+0x96(name="amstream") [/home/austin/wine-valgrind/dlls/amstream/tests/../../../include/wine/test.h:589] in amstream_test (0x04b0fd08) 31 0x0482c498 main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/amstream/tests/../../../include/wine/test.h:671] in amstream_test (0x04b0fdd8) 32 0x0482c529 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in amstream_test (0x04b0fe18) 33 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 34 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 35 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 36 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 37 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 38 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 39 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 40 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea96288) 41 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea96308) 42 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea971b8) 43 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea971f8) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea97734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea97248) 45 0x7c000f80 main+0x145(argc=, argv=0xfea97734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea97688) 46 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06bc477c: repe Modules: Module Address Debug info Name (123 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4833000 Dwarf amstream_test \-PE 4820000- 4833000 \ amstream_test ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4b8f000 Dwarf ddraw \-PE 4b20000- 4b8f000 \ ddraw ELF 4b8f000- 4ced000 Dwarf wined3d \-PE 4ba0000- 4ced000 \ wined3d ELF 4eed000- 5031000 Dwarf gdi32 \-PE 4f00000- 5031000 \ gdi32 ELF 5031000- 50b2000 Deferred advapi32 \-PE 5040000- 50b2000 \ advapi32 ELF 50b2000- 5226000 Deferred user32 \-PE 50c0000- 5226000 \ user32 ELF 5426000- 5441000 Deferred version \-PE 5430000- 5441000 \ version ELF 5441000- 55c3000 Deferred ole32 \-PE 5460000- 55c3000 \ ole32 ELF 56c3000- 5750000 Deferred rpcrt4 \-PE 56d0000- 5750000 \ rpcrt4 ELF 57ac000- 5864000 Deferred libfreetype.so.6 ELF 5a68000- 5a7f000 Deferred libz.so.1 ELF 5a87000- 5a99000 Deferred libbz2.so.1 ELF 5aa1000- 5adf000 Deferred libpng16.so.16 ELF 5ae7000- 5b24000 Deferred libfontconfig.so.1 ELF 5b2c000- 5b56000 Deferred libexpat.so.1 ELF 5b5a000- 5b66000 Deferred libxcursor.so.1 ELF 5b6a000- 5b71000 Deferred libxfixes.so.3 ELF 5b7d000- 5b80000 Deferred libxshmfence.so.1 ELF 5ba5000- 5bca000 Deferred imm32 \-PE 5bb0000- 5bca000 \ imm32 ELF 5bd2000- 5c72000 Dwarf winex11 \-PE 5be0000- 5c72000 \ winex11 ELF 5c82000- 5c86000 Deferred libxinerama.so.1 ELF 5c8a000- 5c90000 Deferred libxxf86vm.so.1 ELF 5c90000- 5c9c000 Deferred libxrender.so.1 ELF 5ca0000- 5cad000 Deferred libxrandr.so.2 ELF 5cb1000- 5cb5000 Deferred libxcomposite.so.1 ELF 5cca000- 5cdd000 Deferred libxext.so.6 ELF 5ce1000- 5e32000 Deferred libx11.so.6 ELF 5e3e000- 5e6a000 Deferred libxcb.so.1 ELF 5e6e000- 5e72000 Deferred libxau.so.6 ELF 5e76000- 5e7d000 Deferred libxdmcp.so.6 ELF 5e7d000- 5e99000 Deferred libbsd.so.0 ELF 5e9d000- 5ea0000 Deferred libx11-xcb.so.1 ELF 5ea1000- 5ed4000 Deferred amstream \-PE 5eb0000- 5ed4000 \ amstream ELF 5ed8000- 5edc000 Deferred libxcb-dri3.so.0 ELF 5ee0000- 5ee4000 Deferred libxcb-present.so.0 ELF 5ee9000- 5efc000 Deferred libxi.so.6 ELF 5f0c000- 5f12000 Deferred libtxc_dxtn.so ELF 5f89000- 5f93000 Deferred libdrm_nouveau.so.2 ELF 5f99000- 6010000 Dwarf libgl.so.1 ELF 6110000- 6118000 Deferred libxcb-sync.so.1 ELF 6118000- 614f000 Deferred libglapi.so.0 ELF 6153000- 6157000 Deferred libxdamage.so.1 ELF 615b000- 6178000 Deferred libxcb-glx.so.0 ELF 617c000- 6182000 Deferred libxcb-dri2.so.0 ELF 6186000- 6198000 Deferred libdrm.so.2 ELF 61e8000- 6210000 Deferred libudev.so.1 ELF 6310000- 6335000 Deferred libdrm_intel.so.1 ELF 653a000- 71fc000 Dwarf radeonsi_dri.so ELF 73f0000- 7430000 Deferred libnettle.so.6 ELF 7430000- 743e000 Deferred libdrm_radeon.so.1 ELF 743e000- 7449000 Deferred libdrm_amdgpu.so.1 ELF 744d000- 746a000 Deferred libelf.so.1 ELF 7482000- 74dc000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 74e4000- 74e7000 Deferred libllvmamdgpuutils.so.3.7 ELF 74ef000- 74f2000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7d10000- 7e7f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8392000- 845a000 Deferred libllvmipo.so.3.7 ELF 861a000- 86c2000 Deferred libllvmvectorize.so.3.7 ELF 86c2000- 878e000 Deferred libllvmamdgpudesc.so.3.7 ELF 878e000- 87b8000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 87b8000- 87f4000 Deferred libllvmbitwriter.so.3.7 ELF 87f8000- 8960000 Deferred libllvmx86disassembler.so.3.7 ELF 8960000- 8a03000 Deferred libllvmx86asmparser.so.3.7 ELF 8a17000- 8ae5000 Deferred libllvmasmprinter.so.3.7 ELF 8b05000- 8b08000 Deferred libllvmx86info.so.3.7 ELF 8f57000- 91dd000 Deferred libllvmx86codegen.so.3.7 ELF 91dd000- 921e000 Deferred libllvmprofiledata.so.3.7 ELF 9222000- 92ca000 Deferred libllvminstrumentation.so.3.7 ELF 9b20000- 9b57000 Deferred libllvmipa.so.3.7 ELF 9d1d000- a026000 Deferred libllvmselectiondag.so.3.7 ELF a449000- a452000 Deferred libllvmmcdisassembler.so.3.7 ELF a6c3000- abb1000 Deferred libllvmcodegen.so.3.7 ELF acb1000- af73000 Deferred libllvmscalaropts.so.3.7 ELF b36d000- b45c000 Deferred libllvminstcombine.so.3.7 ELF b45c000- b468000 Deferred libllvmx86utils.so.3.7 ELF b67a000- b6c5000 Deferred libllvmx86asmprinter.so.3.7 ELF b6c5000- b6d5000 Deferred libllvmmcjit.so.3.7 ELF be5b000- be85000 Deferred libllvmexecutionengine.so.3.7 ELF be85000- be99000 Deferred libllvmtarget.so.3.7 ELF bea1000- bf1f000 Deferred libllvmruntimedyld.so.3.7 ELF c22a000- c390000 Deferred libllvmtransformutils.so.3.7 ELF c59c000- c5b8000 Deferred libgcc_s.so.1 ELF c760000- c8bd000 Deferred libllvmx86desc.so.3.7 ELF c8bd000- cbaa000 Deferred libllvmanalysis.so.3.7 ELF cdaa000- ce51000 Deferred libllvmobject.so.3.7 ELF ce51000- ce8e000 Deferred libllvmmcparser.so.3.7 ELF ce8e000- ce99000 Deferred libpciaccess.so.0 ELF cfb8000- d009000 Deferred libllvmbitreader.so.3.7 ELF d009000- d0c8000 Deferred libllvmmc.so.3.7 ELF d3c8000- d426000 Deferred libncurses.so.6 ELF d88a000- dbf0000 Deferred libllvmcore.so.3.7 ELF dcf0000- de0d000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 0000008a 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 00000093 (D) Z:\home\austin\wine-valgrind\dlls\amstream\tests\amstream_test.exe 00000094 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==25560== 164 bytes in 1 blocks are definitely lost in loss record 1,058 of 1,283 ==25560== at 0x7BC5067C: notify_alloc (heap.c:254) ==25560== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==25560== by 0x4B45D1F: DDRAW_Create (main.c:267) ==25560== by 0x4B45F54: DirectDrawCreate (main.c:309) ==25560== by 0x4825F11: create_directdraw (amstream.c:60) ==25560== by 0x4826B4B: test_media_streams (amstream.c:205) ==25560== by 0x482B25C: func_amstream (amstream.c:864) ==25560== by 0x482C06C: run_test (test.h:589) ==25560== by 0x482C497: main (test.h:671) ==25560== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DDRAW_Create fun:DirectDrawCreate fun:create_directdraw fun:test_media_streams fun:func_amstream fun:run_test fun:main } Makefile:171: recipe for target 'amstream.ok' failed make[1]: *** [amstream.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/amstream/tests' Makefile:1719: recipe for target 'dlls/amstream/tests/test' failed make: *** [dlls/amstream/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/apphelp/tests' ../../../tools/runtest -q -P wine -T ../../.. -M apphelp.dll -p apphelp_test.exe.so apphelp && touch apphelp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/apphelp/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/atl/tests' ../../../tools/runtest -q -P wine -T ../../.. -M atl.dll -p atl_test.exe.so atl_ax && touch atl_ax.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M atl.dll -p atl_test.exe.so module && touch module.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M atl.dll -p atl_test.exe.so registrar && touch registrar.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/atl/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/atl100/tests' ../../../tools/runtest -q -P wine -T ../../.. -M atl100.dll -p atl100_test.exe.so atl && touch atl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==25658== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp25658_4f36767e is empty ==25658== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==25658== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp25658_4f36767e is empty ==25658== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==25658== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp25658_4f36767e is empty ==25658== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==25658== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp25658_4f36767e is empty ==25658== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==25658== 128 bytes in 4 blocks are possibly lost in loss record 1,720 of 2,521 ==25658== at 0x7BC5067C: notify_alloc (heap.c:254) ==25658== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==25658== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==25658== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==25658== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==25658== by 0x6A0D8113: ??? ==25658== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==25658== 256 bytes in 7 blocks are possibly lost in loss record 1,873 of 2,521 ==25658== at 0x7BC5067C: notify_alloc (heap.c:254) ==25658== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==25658== by 0x4B96870: IMalloc_fnAlloc (ifs.c:187) ==25658== by 0x4B9710F: IMalloc_Alloc (objidl.h:1508) ==25658== by 0x4B9710F: CoTaskMemAlloc (???:0) ==25658== by 0x52AD9BE: alloc_bstr (oleaut.c:177) ==25658== by 0x52ADD85: SysAllocStringLen (oleaut.c:355) ==25658== by 0x6846B8B: pre_process_uri (uri.c:786) ==25658== by 0x685407E: CreateUri (uri.c:5738) ==25658== by 0x76FAD32: create_uri (persist.c:185) ==25658== by 0x76EB7CB: nsIOServiceHook_NewURI (nsio.c:3890) ==25658== by 0x69F3AFD9: ??? ==25658== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==25658== 668 bytes in 3 blocks are possibly lost in loss record 2,141 of 2,521 ==25658== at 0x7BC5067C: notify_alloc (heap.c:254) ==25658== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==25658== by 0x7BBAFF2: msvcrt_heap_realloc (heap.c:102) ==25658== by 0x7BBBBA5: MSVCRT_realloc (heap.c:457) ==25658== by 0x69E78C00: ??? ==25658== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/atl100/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/atl80/tests' ../../../tools/runtest -q -P wine -T ../../.. -M atl80.dll -p atl80_test.exe.so atl && touch atl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/atl80/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/avifil32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M avifil32.dll -p avifil32_test.exe.so api && touch api.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/avifil32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/bcrypt/tests' ../../../tools/runtest -q -P wine -T ../../.. -M bcrypt.dll -p bcrypt_test.exe.so bcrypt && touch bcrypt.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/bcrypt/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/browseui/tests' ../../../tools/runtest -q -P wine -T ../../.. -M browseui.dll -p browseui_test.exe.so autocomplete && touch autocomplete.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M browseui.dll -p browseui_test.exe.so progressdlg && touch progressdlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/browseui/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/cabinet/tests' ../../../tools/runtest -q -P wine -T ../../.. -M cabinet.dll -p cabinet_test.exe.so extract && touch extract.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M cabinet.dll -p cabinet_test.exe.so fdi && touch fdi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/cabinet/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/combase/tests' ../../../tools/runtest -q -P wine -T ../../.. -M combase.dll -p combase_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/combase/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/comcat/tests' ../../../tools/runtest -q -P wine -T ../../.. -M comcat.dll -p comcat_test.exe.so comcat && touch comcat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/comcat/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/comctl32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so animate && touch animate.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so button && touch button.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so comboex && touch comboex.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so datetime && touch datetime.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so dpa && touch dpa.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so header && touch header.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so imagelist && touch imagelist.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so ipaddress && touch ipaddress.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so listview && touch listview.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so monthcal && touch monthcal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 monthcal.c:1869: Tests skipped: MCM_GET/SETCALENDARBORDER not supported monthcal.c:1902: Tests skipped: Message MCM_SIZERECTTOMIN unsupported. Skipping. ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so mru && touch mru.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so pager && touch pager.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so progress && touch progress.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so propsheet && touch propsheet.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so rebar && touch rebar.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 rebar.c:1029: Tests skipped: RB_GETCOLORSCHEME not supported ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so status && touch status.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so subclass && touch subclass.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so syslink && touch syslink.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so tab && touch tab.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so toolbar && touch toolbar.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so tooltips && touch tooltips.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so trackbar && touch trackbar.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so treeview && touch treeview.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p comctl32_test.exe.so updown && touch updown.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/comctl32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/comdlg32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M comdlg32.dll -p comdlg32_test.exe.so filedlg && touch filedlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 filedlg.c:932: Tests skipped: some interactive resizable dialog tests (set WINETEST_INTERACTIVE=1) ../../../tools/runtest -q -P wine -T ../../.. -M comdlg32.dll -p comdlg32_test.exe.so finddlg && touch finddlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comdlg32.dll -p comdlg32_test.exe.so fontdlg && touch fontdlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comdlg32.dll -p comdlg32_test.exe.so itemdlg && touch itemdlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M comdlg32.dll -p comdlg32_test.exe.so printdlg && touch printdlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 printdlg.c:535: Tests skipped: interactive PrintDlgEx tests (set WINETEST_INTERACTIVE=1) make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/comdlg32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/credui/tests' ../../../tools/runtest -q -P wine -T ../../.. -M credui.dll -p credui_test.exe.so credui && touch credui.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/credui/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/crypt32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so base64 && touch base64.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so cert && touch cert.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so chain && touch chain.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 chain.c:4540: Tests skipped: ignoredInvalidUsageBasePolicyCheck[0](#0001): error 00000000 doesn't match expected 800b0101, not checking indexes chain.c:4540: Tests skipped: ignoredInvalidUsageBasePolicyCheck[0](#0001): error 00000000 doesn't match expected 800b0101, not checking indexes ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so crl && touch crl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so ctl && touch ctl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so encode && touch encode.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==26268== Invalid free() / delete / delete[] / realloc() ==26268== at 0x7BC50772: notify_realloc (heap.c:270) ==26268== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==26268== by 0x4C1438C: CryptMemRealloc (main.c:128) ==26268== by 0x4A51066: test_cryptAllocate (main.c:204) ==26268== by 0x4A5215B: func_main (main.c:469) ==26268== by 0x4A7E19E: run_test (test.h:589) ==26268== by 0x4A7E5CA: main (test.h:671) ==26268== Address 0x48ec340 is 0 bytes after a block of size 0 alloc'd ==26268== at 0x7BC5067C: notify_alloc (heap.c:254) ==26268== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26268== by 0x4C1434F: CryptMemAlloc (main.c:123) ==26268== by 0x4A51053: test_cryptAllocate (main.c:203) ==26268== by 0x4A5215B: func_main (main.c:469) ==26268== by 0x4A7E19E: run_test (test.h:589) ==26268== by 0x4A7E5CA: main (test.h:671) ==26268== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:CryptMemRealloc fun:test_cryptAllocate fun:func_main fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so message && touch message.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so object && touch object.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so oid && touch oid.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so protectdata && touch protectdata.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so sip && touch sip.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so store && touch store.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 store.c:2209: Tests skipped: Nothing to test without registered store at 00040000 store.c:2209: Tests skipped: Nothing to test without registered store at 00090000 ==26325== 48 bytes in 1 blocks are definitely lost in loss record 241 of 518 ==26325== at 0x7BC5067C: notify_alloc (heap.c:254) ==26325== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26325== by 0x4C1434F: CryptMemAlloc (main.c:123) ==26325== by 0x4BECDDE: Context_CreateDataContext (context.c:32) ==26325== by 0x4BDB2BD: CertCreateCertificateContext (cert.c:334) ==26325== by 0x4A785CA: testEmptyStore (store.c:2945) ==26325== by 0x4A799BC: func_store (store.c:3208) ==26325== by 0x4A7E19E: run_test (test.h:589) ==26325== by 0x4A7E5CA: main (test.h:671) ==26325== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:CryptMemAlloc fun:Context_CreateDataContext fun:CertCreateCertificateContext fun:testEmptyStore fun:func_store fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M crypt32.dll -p crypt32_test.exe.so str && touch str.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/crypt32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/cryptnet/tests' ../../../tools/runtest -q -P wine -T ../../.. -M cryptnet.dll -p cryptnet_test.exe.so cryptnet && touch cryptnet.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/cryptnet/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/cryptui/tests' ../../../tools/runtest -q -P wine -T ../../.. -M cryptui.dll -p cryptui_test.exe.so cryptui && touch cryptui.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/cryptui/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d2d1/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d2d1.dll -p d2d1_test.exe.so d2d1 && touch d2d1.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6d5677c (thread 0155), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06d5677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06d5677c ESP:04b3e320 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07190000 ECX:04753258 EDX:00200000 ESI:046dc5d0 EDI:04753258 Stack dump: 0x04b3e320: 04b3e35c 0474cba4 00000003 00000002 0x04b3e330: 00007f30 00007f44 00000082 00007f4c 0x04b3e340: 00800000 00000000 00007f24 00007f28 0x04b3e350: 00007f2c 00000000 046dbdb0 00007f54 0x04b3e360: 00000000 00000000 00000000 00000000 0x04b3e370: 00000000 00000000 00000000 bbc8fe00 Backtrace: =>0 0x06d5677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06d3cfab in radeonsi_dri.so (+0x670faa) (0x046db148) 2 0x06d3d332 in radeonsi_dri.so (+0x671331) (0x04b3e4b8) 3 0x06dbd6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b3e4b8) 4 0x066fc6fc in radeonsi_dri.so (+0x306fb) (0x046d7b88) 5 0x06b34f00 in radeonsi_dri.so (+0x468eff) (0x046d7b88) 6 0x06b3493d in radeonsi_dri.so (+0x46893c) (0x046d7b88) 7 0x069f581b in radeonsi_dri.so (+0x32981a) (0x046d7b88) 8 0x069f1846 in radeonsi_dri.so (+0x325845) (0x046d7b00) 9 0x060ea722 in libgl.so.1 (+0x43721) (0x04627f18) 10 0x060bfa42 in libgl.so.1 (+0x18a41) (0x046259f0) 11 0x060bb60b in libgl.so.1 (+0x1460a) (0x04b3ef74) 12 0x060bb784 glXChooseVisual+0x63() in libgl.so.1 (0x04b3ef74) 13 0x05aa217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b3f048) 14 0x05aa3bd7 init_opengl+0xfbe(once=0x5b00e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b3f258) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b3f2a8) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b3f2d8) 17 0x05aa4052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b3f308) 18 0x05aac0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b3f328) 19 0x05a96e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48fa988, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b3f358) 20 0x05139459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b3f388) 21 0x04c9fc8b wined3d_adapter_init+0xe0(adapter=0x48f7400, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b3f7b8) 22 0x04ca06bd wined3d_init+0xa5(wined3d=0x48f73f0, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b3f7e8) 23 0x04d26b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b3f848) 24 0x04c1a58a dxgi_factory_init+0x44(factory=0x48f73c0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b3f878) 25 0x04c1a622 dxgi_factory_create+0x51(riid=0x48273d4, factory=0x4b3f948, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b3f8c8) 26 0x04c18c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b3f908) 27 0x04825e12 D3D10CreateDevice1+0x1e1(adapter=(nil), driver_type=, swrast=(nil), flags=, hw_level=, sdk_version=, device=0x4b3fa68) [/home/austin/wine-valgrind/dlls/d3d10_1/d3d10_1_main.c:95] in d3d10_1 (0x04b3fa28) 28 0x04a17769 create_device+0x37() [/home/austin/wine-valgrind/dlls/d2d1/tests/d2d1.c:481] in d2d1_test (0x04b3fa78) 29 0x04a17ce9 test_clip+0x24() [/home/austin/wine-valgrind/dlls/d2d1/tests/d2d1.c:598] in d2d1_test (0x04b3fcb8) 30 0x04a2f2cc func_d2d1+0xa() [/home/austin/wine-valgrind/dlls/d2d1/tests/d2d1.c:3566] in d2d1_test (0x04b3fcc8) 31 0x04a300d5 run_test+0x96(name="d2d1") [/home/austin/wine-valgrind/dlls/d2d1/tests/../../../include/wine/test.h:589] in d2d1_test (0x04b3fd08) 32 0x04a30500 main+0x244(argc=, argv=0x48d1dd8) [/home/austin/wine-valgrind/dlls/d2d1/tests/../../../include/wine/test.h:671] in d2d1_test (0x04b3fdd8) 33 0x04a3058d __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d2d1_test (0x04b3fe18) 34 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b3fe38) 35 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b3fe88) 36 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b3fea8) 37 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b3ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b3ff98) 38 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b3ffb8) 39 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b3ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b40000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea32298) 42 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea32318) 43 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea331c8) 44 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea33208) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea33744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea33258) 46 0x7c000f80 main+0x145(argc=, argv=0xfea33744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea33698) 47 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06d5677c: repe Modules: Module Address Debug info Name (135 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 482a000 Dwarf d3d10_1 \-PE 4820000- 482a000 \ d3d10_1 ELF 482a000- 4840000 Deferred d3d10core \-PE 4830000- 4840000 \ d3d10core ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a3d000 Dwarf d2d1_test \-PE 4a10000- 4a3d000 \ d2d1_test ELF 4b40000- 4b9d000 Deferred d2d1 \-PE 4b50000- 4b9d000 \ d2d1 ELF 4b9d000- 4c04000 Deferred d3d11 \-PE 4ba0000- 4c04000 \ d3d11 ELF 4c04000- 4c2f000 Dwarf dxgi \-PE 4c10000- 4c2f000 \ dxgi ELF 4c2f000- 4d8d000 Dwarf wined3d \-PE 4c40000- 4d8d000 \ wined3d ELF 508d000- 51d1000 Dwarf gdi32 \-PE 50a0000- 51d1000 \ gdi32 ELF 51d5000- 5256000 Deferred advapi32 \-PE 51e0000- 5256000 \ advapi32 ELF 525e000- 53d2000 Deferred user32 \-PE 5270000- 53d2000 \ user32 ELF 54da000- 54f5000 Deferred version \-PE 54e0000- 54f5000 \ version ELF 5501000- 5547000 Deferred d3d10 \-PE 5510000- 5547000 \ d3d10 ELF 5553000- 55d7000 Deferred d3dcompiler_43 \-PE 5560000- 55d7000 \ d3dcompiler_43 ELF 5637000- 56ef000 Deferred libfreetype.so.6 ELF 58f7000- 590e000 Deferred libz.so.1 ELF 5916000- 5928000 Deferred libbz2.so.1 ELF 5930000- 596e000 Deferred libpng16.so.16 ELF 5972000- 59af000 Deferred libfontconfig.so.1 ELF 59b7000- 59e1000 Deferred libexpat.so.1 ELF 59e9000- 59f5000 Deferred libxcursor.so.1 ELF 59f9000- 5a00000 Deferred libxfixes.so.3 ELF 5a3b000- 5a60000 Deferred imm32 \-PE 5a40000- 5a60000 \ imm32 ELF 5a64000- 5b04000 Dwarf winex11 \-PE 5a70000- 5b04000 \ winex11 ELF 5b14000- 5b18000 Deferred libxinerama.so.1 ELF 5b1c000- 5b22000 Deferred libxxf86vm.so.1 ELF 5b26000- 5b32000 Deferred libxrender.so.1 ELF 5b36000- 5b43000 Deferred libxrandr.so.2 ELF 5b4b000- 5b4f000 Deferred libxcomposite.so.1 ELF 5b5c000- 5b6f000 Deferred libxext.so.6 ELF 5b73000- 5cc4000 Deferred libx11.so.6 ELF 5ccc000- 5cf8000 Deferred libxcb.so.1 ELF 5cfc000- 5d00000 Deferred libxau.so.6 ELF 5d00000- 5d07000 Deferred libxdmcp.so.6 ELF 5d0b000- 5d27000 Deferred libbsd.so.0 ELF 5d49000- 5d4d000 Deferred libxcb-dri3.so.0 ELF 5d51000- 5d55000 Deferred libxcb-present.so.0 ELF 5d59000- 5d61000 Deferred libxcb-sync.so.1 ELF 5d65000- 5d68000 Deferred libxshmfence.so.1 ELF 5d6c000- 5d70000 Deferred libxdamage.so.1 ELF 5d70000- 5d73000 Deferred libx11-xcb.so.1 ELF 5d77000- 5d8a000 Deferred libxi.so.6 ELF 5d9a000- 5da0000 Deferred libtxc_dxtn.so ELF 5ddb000- 5e4c000 Deferred dwrite \-PE 5de0000- 5e4c000 \ dwrite ELF 5e4c000- 5fce000 Deferred ole32 \-PE 5e60000- 5fce000 \ ole32 ELF 5fce000- 605b000 Deferred rpcrt4 \-PE 5fe0000- 605b000 \ rpcrt4 ELF 60a7000- 611e000 Dwarf libgl.so.1 ELF 611e000- 6155000 Deferred libglapi.so.0 ELF 6155000- 6172000 Deferred libxcb-glx.so.0 ELF 6172000- 6178000 Deferred libxcb-dri2.so.0 ELF 6178000- 618a000 Deferred libdrm.so.2 ELF 618e000- 61b6000 Deferred libudev.so.1 ELF 61b6000- 61c0000 Deferred libdrm_nouveau.so.2 ELF 61c0000- 61cb000 Deferred libdrm_amdgpu.so.1 ELF 66cc000- 738e000 Dwarf radeonsi_dri.so ELF 76ce000- 770e000 Deferred libnettle.so.6 ELF 770e000- 7733000 Deferred libdrm_intel.so.1 ELF 7733000- 7741000 Deferred libdrm_radeon.so.1 ELF 7745000- 7762000 Deferred libelf.so.1 ELF 7782000- 7785000 Deferred libllvmamdgpuutils.so.3.7 ELF 7fa2000- 8111000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8624000- 86ec000 Deferred libllvmipo.so.3.7 ELF 88ac000- 8954000 Deferred libllvmvectorize.so.3.7 ELF 8954000- 89ae000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89ae000- 8a7a000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a7a000- 8a7d000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a7d000- 8aa7000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8aab000- 8ae7000 Deferred libllvmbitwriter.so.3.7 ELF 8aeb000- 8c53000 Deferred libllvmx86disassembler.so.3.7 ELF 8c57000- 8cfa000 Deferred libllvmx86asmparser.so.3.7 ELF 8d22000- 8d63000 Deferred libllvmprofiledata.so.3.7 ELF 8d8b000- 8d94000 Deferred libllvmmcdisassembler.so.3.7 ELF 91e9000- 946f000 Deferred libllvmx86codegen.so.3.7 ELF 946f000- 953d000 Deferred libllvmasmprinter.so.3.7 ELF 9541000- 9544000 Deferred libllvmx86info.so.3.7 ELF 9550000- 955c000 Deferred libllvmx86utils.so.3.7 ELF 9eb2000- 9ee9000 Deferred libllvmipa.so.3.7 ELF a0af000- a3b8000 Deferred libllvmselectiondag.so.3.7 ELF a6d3000- a6e3000 Deferred libllvmmcjit.so.3.7 ELF a955000- ae43000 Deferred libllvmcodegen.so.3.7 ELF af43000- afeb000 Deferred libllvminstrumentation.so.3.7 ELF afeb000- b015000 Deferred libllvmexecutionengine.so.3.7 ELF b231000- b27c000 Deferred libllvmx86asmprinter.so.3.7 ELF b27c000- b290000 Deferred libllvmtarget.so.3.7 ELF b290000- b30e000 Deferred libllvmruntimedyld.so.3.7 ELF b4ff000- b7c1000 Deferred libllvmscalaropts.so.3.7 ELF b7c1000- b8b0000 Deferred libllvminstcombine.so.3.7 ELF b8b0000- b957000 Deferred libllvmobject.so.3.7 ELF c028000- c065000 Deferred libllvmmcparser.so.3.7 ELF c075000- c091000 Deferred libgcc_s.so.1 ELF c648000- c7ae000 Deferred libllvmtransformutils.so.3.7 ELF c8ae000- ca0b000 Deferred libllvmx86desc.so.3.7 ELF ca0b000- ca5c000 Deferred libllvmbitreader.so.3.7 ELF ca5c000- ca67000 Deferred libpciaccess.so.0 ELF ca6b000- cac9000 Deferred libncurses.so.6 ELF cc7e000- cf6b000 Deferred libllvmanalysis.so.3.7 ELF d479000- d538000 Deferred libllvmmc.so.3.7 ELF dc4b000- dfb1000 Deferred libllvmcore.so.3.7 ELF e0b1000- e1ce000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000154 (D) Z:\home\austin\wine-valgrind\dlls\d2d1\tests\d2d1_test.exe 00000155 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:171: recipe for target 'd2d1.ok' failed make[1]: *** [d2d1.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d2d1/tests' Makefile:6188: recipe for target 'dlls/d2d1/tests/test' failed make: *** [dlls/d2d1/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3d10/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3d10.dll -p d3d10_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M d3d10.dll -p d3d10_test.exe.so effect && touch effect.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6ad677c (thread 015b), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06ad677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06ad677c ESP:04b3e500 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06f10000 ECX:04700870 EDX:00200000 ESI:04689be8 EDI:04700870 Stack dump: 0x04b3e500: 04b3e53c 046fa1bc 00000003 00000002 0x04b3e510: 00007f30 00007f44 00000082 00007f4c 0x04b3e520: 00800000 00000000 00007f24 00007f28 0x04b3e530: 00007f2c 00000000 046893c8 00007f54 0x04b3e540: 00000000 00000000 00000000 00000000 0x04b3e550: 00000000 00000000 00000000 4c097300 Backtrace: =>0 0x06ad677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06abcfab in radeonsi_dri.so (+0x670faa) (0x04688760) 2 0x06abd332 in radeonsi_dri.so (+0x671331) (0x04b3e698) 3 0x06b3d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b3e698) 4 0x0647c6fc in radeonsi_dri.so (+0x306fb) (0x046851a0) 5 0x068b4f00 in radeonsi_dri.so (+0x468eff) (0x046851a0) 6 0x068b493d in radeonsi_dri.so (+0x46893c) (0x046851a0) 7 0x0677581b in radeonsi_dri.so (+0x32981a) (0x046851a0) 8 0x06771846 in radeonsi_dri.so (+0x325845) (0x04685118) 9 0x05f2c722 in libgl.so.1 (+0x43721) (0x045d5530) 10 0x05f01a42 in libgl.so.1 (+0x18a41) (0x045d3008) 11 0x05efd60b in libgl.so.1 (+0x1460a) (0x04b3f154) 12 0x05efd784 glXChooseVisual+0x63() in libgl.so.1 (0x04b3f154) 13 0x05a2217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b3f228) 14 0x05a23bd7 init_opengl+0xfbe(once=0x5a80e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b3f438) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b3f488) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b3f4b8) 17 0x05a24052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b3f4e8) 18 0x05a2c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b3f508) 19 0x05a16e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f7b18, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b3f538) 20 0x05122459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b3f568) 21 0x04c88c8b wined3d_adapter_init+0xe0(adapter=0x48f4590, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b3f998) 22 0x04c896bd wined3d_init+0xa5(wined3d=0x48f4580, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b3f9c8) 23 0x04d0fb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b3fa28) 24 0x04c0358a dxgi_factory_init+0x44(factory=0x48f4550, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b3fa58) 25 0x04c03622 dxgi_factory_create+0x51(riid=0x4b73908, factory=0x4b3fb20, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b3faa8) 26 0x04c01c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b3fae8) 27 0x04b533f3 D3D10CreateDevice+0x1a0(adapter=(nil), driver_type=, swrast=(nil), flags=, sdk_version=, device=0x4b3fc38) [/home/austin/wine-valgrind/dlls/d3d10/d3d10_main.c:51] in d3d10 (0x04b3fbf8) 28 0x04a16f58 create_device+0x32() [/home/austin/wine-valgrind/dlls/d3d10/tests/effect.c:30] in d3d10_test (0x04b3fc48) 29 0x04a17020 test_effect_constant_buffer_type+0x22() [/home/austin/wine-valgrind/dlls/d3d10/tests/effect.c:95] in d3d10_test (0x04b3fcb8) 30 0x04a32be8 func_effect+0xa() [/home/austin/wine-valgrind/dlls/d3d10/tests/effect.c:4278] in d3d10_test (0x04b3fcc8) 31 0x04a339bb run_test+0x96(name="effect") [/home/austin/wine-valgrind/dlls/d3d10/tests/../../../include/wine/test.h:589] in d3d10_test (0x04b3fd08) 32 0x04a33de7 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d10/tests/../../../include/wine/test.h:671] in d3d10_test (0x04b3fdd8) 33 0x04a33e78 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d10_test (0x04b3fe18) 34 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b3fe38) 35 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b3fe88) 36 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b3fea8) 37 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b3ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b3ff98) 38 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b3ffb8) 39 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b3ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b40000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe977298) 42 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe977318) 43 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9781c8) 44 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe978208) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe978744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe978258) 46 0x7c000f80 main+0x145(argc=, argv=0xfe978744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe978698) 47 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06ad677c: repe Modules: Module Address Debug info Name (125 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 482a000 Deferred d3d10core \-PE 4820000- 482a000 \ d3d10core ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a3e000 Dwarf d3d10_test \-PE 4a10000- 4a3e000 \ d3d10_test ELF 4b40000- 4b86000 Dwarf d3d10 \-PE 4b50000- 4b86000 \ d3d10 ELF 4b86000- 4bed000 Deferred d3d11 \-PE 4b90000- 4bed000 \ d3d11 ELF 4bed000- 4c18000 Dwarf dxgi \-PE 4bf0000- 4c18000 \ dxgi ELF 4c18000- 4d76000 Dwarf wined3d \-PE 4c30000- 4d76000 \ wined3d ELF 5076000- 51ba000 Dwarf gdi32 \-PE 5080000- 51ba000 \ gdi32 ELF 51ba000- 523b000 Deferred advapi32 \-PE 51d0000- 523b000 \ advapi32 ELF 523b000- 53af000 Deferred user32 \-PE 5250000- 53af000 \ user32 ELF 54b7000- 54d2000 Deferred version \-PE 54c0000- 54d2000 \ version ELF 54de000- 5562000 Deferred d3dcompiler_43 \-PE 54f0000- 5562000 \ d3dcompiler_43 ELF 55be000- 5676000 Deferred libfreetype.so.6 ELF 587a000- 5891000 Deferred libz.so.1 ELF 5899000- 58ab000 Deferred libbz2.so.1 ELF 58af000- 58ed000 Deferred libpng16.so.16 ELF 58f1000- 592e000 Deferred libfontconfig.so.1 ELF 5936000- 5960000 Deferred libexpat.so.1 ELF 5964000- 5970000 Deferred libxcursor.so.1 ELF 5974000- 597b000 Deferred libxfixes.so.3 ELF 5991000- 5994000 Deferred libxshmfence.so.1 ELF 59b3000- 59d8000 Deferred imm32 \-PE 59c0000- 59d8000 \ imm32 ELF 59e4000- 5a84000 Dwarf winex11 \-PE 59f0000- 5a84000 \ winex11 ELF 5a94000- 5a98000 Deferred libxinerama.so.1 ELF 5a9c000- 5aa2000 Deferred libxxf86vm.so.1 ELF 5aa6000- 5ab2000 Deferred libxrender.so.1 ELF 5ab6000- 5ac3000 Deferred libxrandr.so.2 ELF 5ac7000- 5acb000 Deferred libxcomposite.so.1 ELF 5adc000- 5aef000 Deferred libxext.so.6 ELF 5af3000- 5c44000 Deferred libx11.so.6 ELF 5c4c000- 5c78000 Deferred libxcb.so.1 ELF 5c7c000- 5c80000 Deferred libxau.so.6 ELF 5c80000- 5c87000 Deferred libxdmcp.so.6 ELF 5c8b000- 5ca7000 Deferred libbsd.so.0 ELF 5cb1000- 5cb5000 Deferred libxcb-dri3.so.0 ELF 5cb5000- 5cb9000 Deferred libxcb-present.so.0 ELF 5cb9000- 5cc1000 Deferred libxcb-sync.so.1 ELF 5cc9000- 5ccd000 Deferred libxdamage.so.1 ELF 5ccd000- 5cd0000 Deferred libx11-xcb.so.1 ELF 5cd0000- 5ced000 Deferred libxcb-glx.so.0 ELF 5cf1000- 5cf7000 Deferred libxcb-dri2.so.0 ELF 5cf7000- 5d0a000 Deferred libxi.so.6 ELF 5d0a000- 5d41000 Deferred libglapi.so.0 ELF 5d49000- 5d4c000 Deferred libllvmamdgpuutils.so.3.7 ELF 5e58000- 5e5e000 Deferred libtxc_dxtn.so ELF 5eb9000- 5ee1000 Deferred libudev.so.1 ELF 5ee9000- 5f60000 Dwarf libgl.so.1 ELF 5f60000- 5f72000 Deferred libdrm.so.2 ELF 60da000- 611a000 Deferred libnettle.so.6 ELF 611e000- 6143000 Deferred libdrm_intel.so.1 ELF 644c000- 710e000 Dwarf radeonsi_dri.so ELF 7302000- 730c000 Deferred libdrm_nouveau.so.2 ELF 7b22000- 7b30000 Deferred libdrm_radeon.so.1 ELF 7b34000- 7b3f000 Deferred libdrm_amdgpu.so.1 ELF 7b43000- 7b60000 Deferred libelf.so.1 ELF 7b64000- 7cd3000 Deferred libllvmamdgpucodegen.so.3.7 ELF 80ee000- 81b6000 Deferred libllvmipo.so.3.7 ELF 837e000- 8426000 Deferred libllvmvectorize.so.3.7 ELF 842e000- 8488000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 848c000- 8558000 Deferred libllvmamdgpudesc.so.3.7 ELF 855c000- 855f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 855f000- 8589000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 858d000- 85c9000 Deferred libllvmbitwriter.so.3.7 ELF 85cd000- 8735000 Deferred libllvmx86disassembler.so.3.7 ELF 8739000- 87dc000 Deferred libllvmx86asmparser.so.3.7 ELF 8d69000- 8fef000 Deferred libllvmx86codegen.so.3.7 ELF 8fef000- 90bd000 Deferred libllvmasmprinter.so.3.7 ELF 90d1000- 90da000 Deferred libllvmmcdisassembler.so.3.7 ELF 90de000- 90e1000 Deferred libllvmx86info.so.3.7 ELF 9932000- 9969000 Deferred libllvmipa.so.3.7 ELF 9b2f000- 9e38000 Deferred libllvmselectiondag.so.3.7 ELF a153000- a15f000 Deferred libllvmx86utils.so.3.7 ELF a3d5000- a8c3000 Deferred libllvmcodegen.so.3.7 ELF a9c3000- ac85000 Deferred libllvmscalaropts.so.3.7 ELF ad85000- ad95000 Deferred libllvmmcjit.so.3.7 ELF b07f000- b0c0000 Deferred libllvmprofiledata.so.3.7 ELF b0c0000- b168000 Deferred libllvminstrumentation.so.3.7 ELF b28c000- b37b000 Deferred libllvminstcombine.so.3.7 ELF b37b000- b3c6000 Deferred libllvmx86asmprinter.so.3.7 ELF b3c6000- b3f0000 Deferred libllvmexecutionengine.so.3.7 ELF bb94000- bba8000 Deferred libllvmtarget.so.3.7 ELF bba8000- bc26000 Deferred libllvmruntimedyld.so.3.7 ELF c015000- c17b000 Deferred libllvmtransformutils.so.3.7 ELF c27b000- c3d8000 Deferred libllvmx86desc.so.3.7 ELF c3d8000- c47f000 Deferred libllvmobject.so.3.7 ELF c47f000- c49b000 Deferred libgcc_s.so.1 ELF c49b000- c4a6000 Deferred libpciaccess.so.0 ELF c64b000- c938000 Deferred libllvmanalysis.so.3.7 ELF ce46000- ce83000 Deferred libllvmmcparser.so.3.7 ELF ce83000- ced4000 Deferred libllvmbitreader.so.3.7 ELF ced4000- cf93000 Deferred libllvmmc.so.3.7 ELF d618000- d97e000 Deferred libllvmcore.so.3.7 ELF da7e000- db9b000 Deferred libllvmsupport.so.3.7 ELF db9b000- dbf9000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000015a (D) Z:\home\austin\wine-valgrind\dlls\d3d10\tests\d3d10_test.exe 0000015b 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:206: recipe for target 'effect.ok' failed make[1]: *** [effect.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d10/tests' Makefile:6235: recipe for target 'dlls/d3d10/tests/test' failed make: *** [dlls/d3d10/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3d10_1/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3d10_1.dll -p d3d10_1_test.exe.so d3d10_1 && touch d3d10_1.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x69f577c (thread 015f), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x069f577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:069f577c ESP:04b0e4b0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e2f000 ECX:046f0260 EDX:00200000 ESI:046795d8 EDI:046f0260 Stack dump: 0x04b0e4b0: 04b0e4ec 046e9bac 00000003 00000002 0x04b0e4c0: 00007f30 00007f44 00000082 00007f4c 0x04b0e4d0: 00800000 00000000 00007f24 00007f28 0x04b0e4e0: 00007f2c 00000000 04678db8 00007f54 0x04b0e4f0: 00000000 00000000 00000000 00000000 0x04b0e500: 00000000 00000000 00000000 a7109300 Backtrace: =>0 0x069f577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x069dbfab in radeonsi_dri.so (+0x670faa) (0x04678150) 2 0x069dc332 in radeonsi_dri.so (+0x671331) (0x04b0e648) 3 0x06a5c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e648) 4 0x0639b6fc in radeonsi_dri.so (+0x306fb) (0x04674b90) 5 0x067d3f00 in radeonsi_dri.so (+0x468eff) (0x04674b90) 6 0x067d393d in radeonsi_dri.so (+0x46893c) (0x04674b90) 7 0x0669481b in radeonsi_dri.so (+0x32981a) (0x04674b90) 8 0x06690846 in radeonsi_dri.so (+0x325845) (0x04674b08) 9 0x05d09722 in libgl.so.1 (+0x43721) (0x045c4f20) 10 0x05cdea42 in libgl.so.1 (+0x18a41) (0x045c29f8) 11 0x05cda60b in libgl.so.1 (+0x1460a) (0x04b0f104) 12 0x05cda784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0f104) 13 0x0594117f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0f1d8) 14 0x05942bd7 init_opengl+0xfbe(once=0x599fe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f3e8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f438) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f468) 17 0x05943052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f498) 18 0x0594b0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f4b8) 19 0x05935e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f73b8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f4e8) 20 0x050c2459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f518) 21 0x04c28c8b wined3d_adapter_init+0xe0(adapter=0x48f3e30, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0f948) 22 0x04c296bd wined3d_init+0xa5(wined3d=0x48f3e20, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0f978) 23 0x04cafb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0f9d8) 24 0x04ba358a dxgi_factory_init+0x44(factory=0x48f3df0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b0fa08) 25 0x04ba3622 dxgi_factory_create+0x51(riid=0x48573d4, factory=0x4b0fad8, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b0fa58) 26 0x04ba1c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b0fa98) 27 0x04855e12 D3D10CreateDevice1+0x1e1(adapter=(nil), driver_type=, swrast=(nil), flags=, hw_level=, sdk_version=, device=0x4b0fbf4) [/home/austin/wine-valgrind/dlls/d3d10_1/d3d10_1_main.c:95] in d3d10_1 (0x04b0fbb8) 28 0x04825ec2 test_create_device+0x52() [/home/austin/wine-valgrind/dlls/d3d10_1/tests/d3d10_1.c:84] in d3d10_1_test (0x04b0fcb8) 29 0x04829c4e func_d3d10_1+0xa() [/home/austin/wine-valgrind/dlls/d3d10_1/tests/d3d10_1.c:749] in d3d10_1_test (0x04b0fcc8) 30 0x0482aa08 run_test+0x96(name="d3d10_1") [/home/austin/wine-valgrind/dlls/d3d10_1/tests/../../../include/wine/test.h:589] in d3d10_1_test (0x04b0fd08) 31 0x0482ae33 main+0x244(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/d3d10_1/tests/../../../include/wine/test.h:671] in d3d10_1_test (0x04b0fdd8) 32 0x0482aec4 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d10_1_test (0x04b0fe18) 33 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 34 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 35 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 36 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 37 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 38 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 39 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 40 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe931288) 41 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe931308) 42 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9321b8) 43 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9321f8) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe932734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe932248) 45 0x7c000f80 main+0x145(argc=, argv=0xfe932734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe932688) 46 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069f577c: repe Modules: Module Address Debug info Name (123 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4831000 Dwarf d3d10_1_test \-PE 4820000- 4831000 \ d3d10_1_test ELF 4844000- 485a000 Dwarf d3d10_1 \-PE 4850000- 485a000 \ d3d10_1 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4b26000 Deferred d3d10core \-PE 4b20000- 4b26000 \ d3d10core ELF 4b26000- 4b8d000 Deferred d3d11 \-PE 4b30000- 4b8d000 \ d3d11 ELF 4b8d000- 4bb8000 Dwarf dxgi \-PE 4b90000- 4bb8000 \ dxgi ELF 4bb8000- 4d16000 Dwarf wined3d \-PE 4bd0000- 4d16000 \ wined3d ELF 5016000- 515a000 Dwarf gdi32 \-PE 5020000- 515a000 \ gdi32 ELF 515a000- 51db000 Deferred advapi32 \-PE 5170000- 51db000 \ advapi32 ELF 51e3000- 5357000 Deferred user32 \-PE 5200000- 5357000 \ user32 ELF 5463000- 547e000 Deferred version \-PE 5470000- 547e000 \ version ELF 54e2000- 559a000 Deferred libfreetype.so.6 ELF 57a2000- 57b9000 Deferred libz.so.1 ELF 57c1000- 57d3000 Deferred libbz2.so.1 ELF 57db000- 5819000 Deferred libpng16.so.16 ELF 581d000- 585a000 Deferred libfontconfig.so.1 ELF 585e000- 5888000 Deferred libexpat.so.1 ELF 588c000- 5898000 Deferred libxcursor.so.1 ELF 589c000- 58a3000 Deferred libxfixes.so.3 ELF 58b9000- 58bc000 Deferred libxshmfence.so.1 ELF 58d6000- 58fb000 Deferred imm32 \-PE 58e0000- 58fb000 \ imm32 ELF 5903000- 59a3000 Dwarf winex11 \-PE 5910000- 59a3000 \ winex11 ELF 59b3000- 59b7000 Deferred libxinerama.so.1 ELF 59bb000- 59c1000 Deferred libxxf86vm.so.1 ELF 59c5000- 59d1000 Deferred libxrender.so.1 ELF 59d5000- 59e2000 Deferred libxrandr.so.2 ELF 59e6000- 59ea000 Deferred libxcomposite.so.1 ELF 59ff000- 5a12000 Deferred libxext.so.6 ELF 5a16000- 5b67000 Deferred libx11.so.6 ELF 5b6b000- 5b97000 Deferred libxcb.so.1 ELF 5b9b000- 5b9f000 Deferred libxau.so.6 ELF 5b9f000- 5ba6000 Deferred libxdmcp.so.6 ELF 5baa000- 5bc6000 Deferred libbsd.so.0 ELF 5bd5000- 5bd9000 Deferred libxcb-dri3.so.0 ELF 5bd9000- 5bdd000 Deferred libxcb-present.so.0 ELF 5bdd000- 5be5000 Deferred libxcb-sync.so.1 ELF 5bed000- 5bf1000 Deferred libxdamage.so.1 ELF 5bf5000- 5bf8000 Deferred libx11-xcb.so.1 ELF 5bf8000- 5c15000 Deferred libxcb-glx.so.0 ELF 5c16000- 5c29000 Deferred libxi.so.6 ELF 5c35000- 5c3b000 Deferred libtxc_dxtn.so ELF 5c96000- 5cbe000 Deferred libudev.so.1 ELF 5cc6000- 5d3d000 Dwarf libgl.so.1 ELF 5d3d000- 5d74000 Deferred libglapi.so.0 ELF 5d74000- 5d7a000 Deferred libxcb-dri2.so.0 ELF 5d7a000- 5d8c000 Deferred libdrm.so.2 ELF 5f00000- 5f40000 Deferred libnettle.so.6 ELF 5f40000- 5f65000 Deferred libdrm_intel.so.1 ELF 616b000- 6175000 Deferred libdrm_nouveau.so.2 ELF 617d000- 618b000 Deferred libdrm_radeon.so.1 ELF 618f000- 619a000 Deferred libdrm_amdgpu.so.1 ELF 619e000- 61bb000 Deferred libelf.so.1 ELF 61cf000- 6229000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 6231000- 6234000 Deferred libllvmamdgpuutils.so.3.7 ELF 623c000- 623f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 623f000- 6269000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 636b000- 702d000 Dwarf radeonsi_dri.so ELF 7941000- 7ab0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7db0000- 7e78000 Deferred libllvmipo.so.3.7 ELF 8283000- 832b000 Deferred libllvmvectorize.so.3.7 ELF 832b000- 83f7000 Deferred libllvmamdgpudesc.so.3.7 ELF 83f7000- 8433000 Deferred libllvmbitwriter.so.3.7 ELF 8433000- 859b000 Deferred libllvmx86disassembler.so.3.7 ELF 859b000- 863e000 Deferred libllvmx86asmparser.so.3.7 ELF 863e000- 870c000 Deferred libllvmasmprinter.so.3.7 ELF 871c000- 8725000 Deferred libllvmmcdisassembler.so.3.7 ELF 872d000- 8730000 Deferred libllvmx86info.so.3.7 ELF 8b88000- 8e0e000 Deferred libllvmx86codegen.so.3.7 ELF 8e0e000- 8e4f000 Deferred libllvmprofiledata.so.3.7 ELF 8e4f000- 8ef7000 Deferred libllvminstrumentation.so.3.7 ELF 8ef7000- 8f03000 Deferred libllvmx86utils.so.3.7 ELF 9851000- 9888000 Deferred libllvmipa.so.3.7 ELF 9a4e000- 9d57000 Deferred libllvmselectiondag.so.3.7 ELF a172000- a182000 Deferred libllvmmcjit.so.3.7 ELF a3f4000- a8e2000 Deferred libllvmcodegen.so.3.7 ELF a9e2000- aa2d000 Deferred libllvmx86asmprinter.so.3.7 ELF aa35000- aa5f000 Deferred libllvmexecutionengine.so.3.7 ELF aa67000- aa7b000 Deferred libllvmtarget.so.3.7 ELF acd0000- ad4e000 Deferred libllvmruntimedyld.so.3.7 ELF ad4e000- ad8b000 Deferred libllvmmcparser.so.3.7 ELF ad8b000- ada7000 Deferred libgcc_s.so.1 ELF ada7000- adb2000 Deferred libpciaccess.so.0 ELF af9e000- b260000 Deferred libllvmscalaropts.so.3.7 ELF b260000- b34f000 Deferred libllvminstcombine.so.3.7 ELF b34f000- b3f6000 Deferred libllvmobject.so.3.7 ELF bcb3000- bd04000 Deferred libllvmbitreader.so.3.7 ELF bd04000- bd62000 Deferred libncurses.so.6 ELF c134000- c29a000 Deferred libllvmtransformutils.so.3.7 ELF c39a000- c4f7000 Deferred libllvmx86desc.so.3.7 ELF c4f7000- c5b6000 Deferred libllvmmc.so.3.7 ELF c76a000- ca57000 Deferred libllvmanalysis.so.3.7 ELF d20b000- d328000 Deferred libllvmsupport.so.3.7 ELF d691000- d9f7000 Deferred libllvmcore.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000015e (D) Z:\home\austin\wine-valgrind\dlls\d3d10_1\tests\d3d10_1_test.exe 0000015f 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26444== 28 bytes in 1 blocks are possibly lost in loss record 399 of 1,271 ==26444== at 0x7BC5067C: notify_alloc (heap.c:254) ==26444== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26444== by 0x4BA35FD: dxgi_factory_create (factory.c:327) ==26444== by 0x4BA1C10: CreateDXGIFactory (dxgi_main.c:70) ==26444== by 0x4855E11: D3D10CreateDevice1 (d3d10_1_main.c:95) ==26444== by 0x4825EC1: test_create_device (d3d10_1.c:84) ==26444== by 0x4829C4D: func_d3d10_1 (d3d10_1.c:749) ==26444== by 0x482AA07: run_test (test.h:589) ==26444== by 0x482AE32: main (test.h:671) ==26444== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:dxgi_factory_create fun:CreateDXGIFactory fun:D3D10CreateDevice1 fun:test_create_device fun:func_d3d10_1 fun:run_test fun:main } Makefile:171: recipe for target 'd3d10_1.ok' failed make[1]: *** [d3d10_1.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d10_1/tests' Makefile:6282: recipe for target 'dlls/d3d10_1/tests/test' failed make: *** [dlls/d3d10_1/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3d10core/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3d10core.dll -p d3d10core_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x69d677c (thread 0163), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x069d677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:069d677c ESP:04b5e530 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e10000 ECX:04700888 EDX:00200000 ESI:04689c00 EDI:04700888 Stack dump: 0x04b5e530: 04b5e56c 046fa1d4 00000003 00000002 0x04b5e540: 00007f30 00007f44 00000082 00007f4c 0x04b5e550: 00800000 00000000 00007f24 00007f28 0x04b5e560: 00007f2c 00000000 046893e0 00007f54 0x04b5e570: 00000000 00000000 00000000 00000000 0x04b5e580: 00000000 00000000 00000000 ef9bcd00 Backtrace: =>0 0x069d677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x069bcfab in radeonsi_dri.so (+0x670faa) (0x04688778) 2 0x069bd332 in radeonsi_dri.so (+0x671331) (0x04b5e6c8) 3 0x06a3d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b5e6c8) 4 0x0637c6fc in radeonsi_dri.so (+0x306fb) (0x046851b8) 5 0x067b4f00 in radeonsi_dri.so (+0x468eff) (0x046851b8) 6 0x067b493d in radeonsi_dri.so (+0x46893c) (0x046851b8) 7 0x0667581b in radeonsi_dri.so (+0x32981a) (0x046851b8) 8 0x06671846 in radeonsi_dri.so (+0x325845) (0x04685130) 9 0x05dea722 in libgl.so.1 (+0x43721) (0x045d5548) 10 0x05dbfa42 in libgl.so.1 (+0x18a41) (0x045d3020) 11 0x05dbb60b in libgl.so.1 (+0x1460a) (0x04b5f184) 12 0x05dbb784 glXChooseVisual+0x63() in libgl.so.1 (0x04b5f184) 13 0x05a2217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b5f258) 14 0x05a23bd7 init_opengl+0xfbe(once=0x5a80e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b5f468) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b5f4b8) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b5f4e8) 17 0x05a24052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b5f518) 18 0x05a2c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b5f538) 19 0x05a16e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f7ef0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b5f568) 20 0x05142459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b5f598) 21 0x04ca8c8b wined3d_adapter_init+0xe0(adapter=0x48f4968, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b5f9c8) 22 0x04ca96bd wined3d_init+0xa5(wined3d=0x48f4958, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b5f9f8) 23 0x04d2fb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b5fa58) 24 0x04c2358a dxgi_factory_init+0x44(factory=0x48f4928, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b5fa88) 25 0x04c23622 dxgi_factory_create+0x51(riid=0x4b93908, factory=0x4b5fb50, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b5fad8) 26 0x04c21c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b5fb18) 27 0x04b733f3 D3D10CreateDevice+0x1a0(adapter=(nil), driver_type=, swrast=(nil), flags=, sdk_version=, device=0x4b5fc68) [/home/austin/wine-valgrind/dlls/d3d10/d3d10_main.c:51] in d3d10 (0x04b5fc28) 28 0x04a18c1f create_device+0x32() [/home/austin/wine-valgrind/dlls/d3d10core/tests/device.c:801] in d3d10core_test (0x04b5fc78) 29 0x04a19ad2 test_feature_level+0x21() [/home/austin/wine-valgrind/dlls/d3d10core/tests/device.c:1090] in d3d10core_test (0x04b5fcb8) 30 0x04a4239e func_device+0xa() [/home/austin/wine-valgrind/dlls/d3d10core/tests/device.c:10059] in d3d10core_test (0x04b5fcc8) 31 0x04a43252 run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/d3d10core/tests/../../../include/wine/test.h:589] in d3d10core_test (0x04b5fd08) 32 0x04a4367d main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3d10core/tests/../../../include/wine/test.h:671] in d3d10core_test (0x04b5fdd8) 33 0x04a4370e __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d10core_test (0x04b5fe18) 34 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b5fe38) 35 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b5fe88) 36 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b5fea8) 37 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b5ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b5ff98) 38 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b5ffb8) 39 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b5ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b60000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec1f288) 42 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec1f308) 43 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec201b8) 44 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec201f8) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec20734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec20248) 46 0x7c000f80 main+0x145(argc=, argv=0xfec20734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec20688) 47 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069d677c: repe Modules: Module Address Debug info Name (125 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 482a000 Deferred d3d10core \-PE 4820000- 482a000 \ d3d10core ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a57000 Dwarf d3d10core_test \-PE 4a10000- 4a57000 \ d3d10core_test ELF 4b60000- 4ba6000 Dwarf d3d10 \-PE 4b70000- 4ba6000 \ d3d10 ELF 4ba6000- 4c0d000 Deferred d3d11 \-PE 4bb0000- 4c0d000 \ d3d11 ELF 4c0d000- 4c38000 Dwarf dxgi \-PE 4c10000- 4c38000 \ dxgi ELF 4c38000- 4d96000 Dwarf wined3d \-PE 4c50000- 4d96000 \ wined3d ELF 5096000- 51da000 Dwarf gdi32 \-PE 50a0000- 51da000 \ gdi32 ELF 51da000- 525b000 Deferred advapi32 \-PE 51f0000- 525b000 \ advapi32 ELF 525b000- 53cf000 Deferred user32 \-PE 5270000- 53cf000 \ user32 ELF 54cf000- 54ea000 Deferred version \-PE 54d0000- 54ea000 \ version ELF 54ea000- 556e000 Deferred d3dcompiler_43 \-PE 54f0000- 556e000 \ d3dcompiler_43 ELF 55be000- 5676000 Deferred libfreetype.so.6 ELF 587a000- 5891000 Deferred libz.so.1 ELF 5899000- 58ab000 Deferred libbz2.so.1 ELF 58af000- 58ed000 Deferred libpng16.so.16 ELF 58f1000- 592e000 Deferred libfontconfig.so.1 ELF 5936000- 5960000 Deferred libexpat.so.1 ELF 5964000- 5970000 Deferred libxcursor.so.1 ELF 5974000- 597b000 Deferred libxfixes.so.3 ELF 5991000- 5994000 Deferred libxshmfence.so.1 ELF 59b3000- 59d8000 Deferred imm32 \-PE 59c0000- 59d8000 \ imm32 ELF 59e4000- 5a84000 Dwarf winex11 \-PE 59f0000- 5a84000 \ winex11 ELF 5a94000- 5a98000 Deferred libxinerama.so.1 ELF 5a9c000- 5aa2000 Deferred libxxf86vm.so.1 ELF 5aa6000- 5ab2000 Deferred libxrender.so.1 ELF 5ab6000- 5ac3000 Deferred libxrandr.so.2 ELF 5ac7000- 5acb000 Deferred libxcomposite.so.1 ELF 5adc000- 5aef000 Deferred libxext.so.6 ELF 5af3000- 5c44000 Deferred libx11.so.6 ELF 5c4c000- 5c78000 Deferred libxcb.so.1 ELF 5c7c000- 5c80000 Deferred libxau.so.6 ELF 5c80000- 5c87000 Deferred libxdmcp.so.6 ELF 5c8b000- 5ca7000 Deferred libbsd.so.0 ELF 5cb5000- 5cb9000 Deferred libxcb-dri3.so.0 ELF 5cb9000- 5cbd000 Deferred libxcb-present.so.0 ELF 5cbd000- 5cc5000 Deferred libxcb-sync.so.1 ELF 5cd1000- 5cd5000 Deferred libxdamage.so.1 ELF 5cd9000- 5cdc000 Deferred libx11-xcb.so.1 ELF 5ce0000- 5ce6000 Deferred libxcb-dri2.so.0 ELF 5cf7000- 5d0a000 Deferred libxi.so.6 ELF 5d16000- 5d1c000 Deferred libtxc_dxtn.so ELF 5d6f000- 5d97000 Deferred libudev.so.1 ELF 5da7000- 5e1e000 Dwarf libgl.so.1 ELF 5e82000- 5ec2000 Deferred libnettle.so.6 ELF 5eca000- 5eef000 Deferred libdrm_intel.so.1 ELF 5ef3000- 5efd000 Deferred libdrm_nouveau.so.2 ELF 5f01000- 5f0f000 Deferred libdrm_radeon.so.1 ELF 5f13000- 5f1e000 Deferred libdrm_amdgpu.so.1 ELF 5f1e000- 5f55000 Deferred libglapi.so.0 ELF 5f55000- 5f72000 Deferred libxcb-glx.so.0 ELF 5f72000- 5f84000 Deferred libdrm.so.2 ELF 6084000- 60a1000 Deferred libelf.so.1 ELF 60c1000- 611b000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 6123000- 6126000 Deferred libllvmamdgpuutils.so.3.7 ELF 612e000- 6131000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6149000- 614c000 Deferred libllvmx86info.so.3.7 ELF 634c000- 700e000 Dwarf radeonsi_dri.so ELF 7202000- 7371000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7371000- 739b000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 739b000- 73d7000 Deferred libllvmbitwriter.so.3.7 ELF 8022000- 80ea000 Deferred libllvmipo.so.3.7 ELF 8102000- 810b000 Deferred libllvmmcdisassembler.so.3.7 ELF 84f5000- 859d000 Deferred libllvmvectorize.so.3.7 ELF 859d000- 8669000 Deferred libllvmamdgpudesc.so.3.7 ELF 8669000- 87d1000 Deferred libllvmx86disassembler.so.3.7 ELF 87d1000- 8874000 Deferred libllvmx86asmparser.so.3.7 ELF 8974000- 89b5000 Deferred libllvmprofiledata.so.3.7 ELF 89b5000- 89ec000 Deferred libllvmipa.so.3.7 ELF 89ec000- 89f8000 Deferred libllvmx86utils.so.3.7 ELF 89f8000- 8a08000 Deferred libllvmmcjit.so.3.7 ELF 8e69000- 90ef000 Deferred libllvmx86codegen.so.3.7 ELF 90ef000- 91bd000 Deferred libllvmasmprinter.so.3.7 ELF 91bd000- 91e7000 Deferred libllvmexecutionengine.so.3.7 ELF 9932000- 9946000 Deferred libllvmtarget.so.3.7 ELF 9b2f000- 9e38000 Deferred libllvmselectiondag.so.3.7 ELF a4d5000- a9c3000 Deferred libllvmcodegen.so.3.7 ELF aac3000- ab6b000 Deferred libllvminstrumentation.so.3.7 ELF ab6f000- ab8b000 Deferred libgcc_s.so.1 ELF ab8f000- ab9a000 Deferred libpciaccess.so.0 ELF aca4000- ad93000 Deferred libllvminstcombine.so.3.7 ELF b07f000- b341000 Deferred libllvmscalaropts.so.3.7 ELF b441000- b48c000 Deferred libllvmx86asmprinter.so.3.7 ELF b48c000- b4c9000 Deferred libllvmmcparser.so.3.7 ELF bd7a000- bdf8000 Deferred libllvmruntimedyld.so.3.7 ELF c0f8000- c25e000 Deferred libllvmtransformutils.so.3.7 ELF c72e000- c88b000 Deferred libllvmx86desc.so.3.7 ELF c88b000- cb78000 Deferred libllvmanalysis.so.3.7 ELF ce86000- cf2d000 Deferred libllvmobject.so.3.7 ELF d02d000- d07e000 Deferred libllvmbitreader.so.3.7 ELF d07e000- d13d000 Deferred libllvmmc.so.3.7 ELF d23d000- d29b000 Deferred libncurses.so.6 ELF d758000- dabe000 Deferred libllvmcore.so.3.7 ELF dbbe000- dcdb000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000162 (D) Z:\home\austin\wine-valgrind\dlls\d3d10core\tests\d3d10core_test.exe 00000163 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:171: recipe for target 'device.ok' failed make[1]: *** [device.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d10core/tests' Makefile:6329: recipe for target 'dlls/d3d10core/tests/test' failed make: *** [dlls/d3d10core/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3d11/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3d11.dll -p d3d11_test.exe.so d3d11 && touch d3d11.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6a0577c (thread 0167), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06a0577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06a0577c ESP:04b5e460 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e3f000 ECX:046cf6f0 EDX:00200000 ESI:04658a68 EDI:046cf6f0 Stack dump: 0x04b5e460: 04b5e49c 046c903c 00000003 00000002 0x04b5e470: 00007f30 00007f44 00000082 00007f4c 0x04b5e480: 00800000 00000000 00007f24 00007f28 0x04b5e490: 00007f2c 00000000 04658248 00007f54 0x04b5e4a0: 00000000 00000000 00000000 00000000 0x04b5e4b0: 00000000 00000000 00000000 01e95c00 Backtrace: =>0 0x06a0577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x069ebfab in radeonsi_dri.so (+0x670faa) (0x046575e0) 2 0x069ec332 in radeonsi_dri.so (+0x671331) (0x04b5e5f8) 3 0x06a6c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b5e5f8) 4 0x063ab6fc in radeonsi_dri.so (+0x306fb) (0x04654020) 5 0x067e3f00 in radeonsi_dri.so (+0x468eff) (0x04654020) 6 0x067e393d in radeonsi_dri.so (+0x46893c) (0x04654020) 7 0x066a481b in radeonsi_dri.so (+0x32981a) (0x04654020) 8 0x066a0846 in radeonsi_dri.so (+0x325845) (0x04653f98) 9 0x05d1d722 in libgl.so.1 (+0x43721) (0x045a43b0) 10 0x05cf2a42 in libgl.so.1 (+0x18a41) (0x045a1e88) 11 0x05cee60b in libgl.so.1 (+0x1460a) (0x04b5f0b4) 12 0x05cee784 glXChooseVisual+0x63() in libgl.so.1 (0x04b5f0b4) 13 0x0594d17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b5f188) 14 0x0594ebd7 init_opengl+0xfbe(once=0x59abe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b5f398) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b5f3e8) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b5f418) 17 0x0594f052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b5f448) 18 0x059570e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b5f468) 19 0x05941e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5dd8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b5f498) 20 0x04fd1459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b5f4c8) 21 0x04c37c8b wined3d_adapter_init+0xe0(adapter=0x48f2850, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b5f8f8) 22 0x04c386bd wined3d_init+0xa5(wined3d=0x48f2840, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b5f928) 23 0x04cbeb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b5f988) 24 0x0482a58a dxgi_factory_init+0x44(factory=0x48f2810, extended=0x1) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b5f9b8) 25 0x0482a622 dxgi_factory_create+0x51(riid=0x4baf17c, factory=0x4b5fa9c, extended=0x1) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b5fa08) 26 0x04828b7f CreateDXGIFactory1+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:63] in dxgi (0x04b5fa48) 27 0x04b772d3 D3D11CreateDevice+0x20f(adapter=(nil), driver_type=, swrast=(nil), flags=, feature_levels=(nil), levels=, sdk_version=, device_out=0x4b5fbdc, obtained_feature_level=(nil), immediate_context=(nil)) [/home/austin/wine-valgrind/dlls/d3d11/d3d11_main.c:196] in d3d11 (0x04b5fb88) 28 0x04a1a4aa test_create_device+0x40() [/home/austin/wine-valgrind/dlls/d3d11/tests/d3d11.c:1258] in d3d11_test (0x04b5fcb8) 29 0x04a467cf func_d3d11+0x16() [/home/austin/wine-valgrind/dlls/d3d11/tests/d3d11.c:11941] in d3d11_test (0x04b5fcc8) 30 0x04a476f4 run_test+0x96(name="d3d11") [/home/austin/wine-valgrind/dlls/d3d11/tests/../../../include/wine/test.h:589] in d3d11_test (0x04b5fd08) 31 0x04a47b1f main+0x244(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d11/tests/../../../include/wine/test.h:671] in d3d11_test (0x04b5fdd8) 32 0x04a47bb0 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d11_test (0x04b5fe18) 33 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b5fe38) 34 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b5fe88) 35 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b5fea8) 36 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b5ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b5ff98) 37 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b5ffb8) 38 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b5ffe8) 39 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 40 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b60000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfedd6298) 41 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfedd6318) 42 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfedd71c8) 43 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfedd7208) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfedd7744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfedd7258) 45 0x7c000f80 main+0x145(argc=, argv=0xfedd7744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfedd7698) 46 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06a0577c: repe Modules: Module Address Debug info Name (119 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483f000 Dwarf dxgi \-PE 4820000- 483f000 \ dxgi ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a60000 Dwarf d3d11_test \-PE 4a10000- 4a60000 \ d3d11_test ELF 4b60000- 4bc7000 Dwarf d3d11 \-PE 4b70000- 4bc7000 \ d3d11 ELF 4bc7000- 4d25000 Dwarf wined3d \-PE 4be0000- 4d25000 \ wined3d ELF 4f25000- 5069000 Dwarf gdi32 \-PE 4f30000- 5069000 \ gdi32 ELF 5069000- 50ea000 Deferred advapi32 \-PE 5080000- 50ea000 \ advapi32 ELF 50ea000- 525e000 Deferred user32 \-PE 5100000- 525e000 \ user32 ELF 5466000- 5481000 Deferred version \-PE 5470000- 5481000 \ version ELF 54e5000- 559d000 Deferred libfreetype.so.6 ELF 57a5000- 57bc000 Deferred libz.so.1 ELF 57c4000- 57d6000 Deferred libbz2.so.1 ELF 57de000- 581c000 Deferred libpng16.so.16 ELF 5820000- 585d000 Deferred libfontconfig.so.1 ELF 5861000- 588b000 Deferred libexpat.so.1 ELF 5893000- 589f000 Deferred libxcursor.so.1 ELF 58a3000- 58aa000 Deferred libxfixes.so.3 ELF 58e2000- 5907000 Deferred imm32 \-PE 58f0000- 5907000 \ imm32 ELF 590f000- 59af000 Dwarf winex11 \-PE 5920000- 59af000 \ winex11 ELF 59bb000- 59bf000 Deferred libxinerama.so.1 ELF 59bf000- 59c5000 Deferred libxxf86vm.so.1 ELF 59c9000- 59d5000 Deferred libxrender.so.1 ELF 59d9000- 59e6000 Deferred libxrandr.so.2 ELF 59ea000- 59ee000 Deferred libxcomposite.so.1 ELF 5a07000- 5a1a000 Deferred libxext.so.6 ELF 5a22000- 5b73000 Deferred libx11.so.6 ELF 5b7b000- 5ba7000 Deferred libxcb.so.1 ELF 5bab000- 5baf000 Deferred libxau.so.6 ELF 5bb3000- 5bba000 Deferred libxdmcp.so.6 ELF 5bbe000- 5bda000 Deferred libbsd.so.0 ELF 5be1000- 5be5000 Deferred libxcb-dri3.so.0 ELF 5be5000- 5be9000 Deferred libxcb-present.so.0 ELF 5be9000- 5bf1000 Deferred libxcb-sync.so.1 ELF 5bf5000- 5bf8000 Deferred libxshmfence.so.1 ELF 5c00000- 5c04000 Deferred libxdamage.so.1 ELF 5c08000- 5c0b000 Deferred libx11-xcb.so.1 ELF 5c0b000- 5c28000 Deferred libxcb-glx.so.0 ELF 5c2a000- 5c3d000 Deferred libxi.so.6 ELF 5c49000- 5c4f000 Deferred libtxc_dxtn.so ELF 5caa000- 5cd2000 Deferred libudev.so.1 ELF 5cda000- 5d51000 Dwarf libgl.so.1 ELF 5d51000- 5d88000 Deferred libglapi.so.0 ELF 5d88000- 5d8e000 Deferred libxcb-dri2.so.0 ELF 5d8e000- 5da0000 Deferred libdrm.so.2 ELF 5f0c000- 5f4c000 Deferred libnettle.so.6 ELF 5f50000- 5f75000 Deferred libdrm_intel.so.1 ELF 617b000- 6185000 Deferred libdrm_nouveau.so.2 ELF 618d000- 619b000 Deferred libdrm_radeon.so.1 ELF 619f000- 61aa000 Deferred libdrm_amdgpu.so.1 ELF 61ae000- 61cb000 Deferred libelf.so.1 ELF 61e3000- 623d000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 6245000- 6248000 Deferred libllvmamdgpuutils.so.3.7 ELF 6250000- 6253000 Deferred libllvmamdgpuinfo.so.3.7 ELF 637b000- 703d000 Dwarf radeonsi_dri.so ELF 7951000- 7ac0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7fd3000- 809b000 Deferred libllvmipo.so.3.7 ELF 825b000- 8303000 Deferred libllvmvectorize.so.3.7 ELF 8303000- 83cf000 Deferred libllvmamdgpudesc.so.3.7 ELF 83cf000- 83f9000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 83f9000- 8435000 Deferred libllvmbitwriter.so.3.7 ELF 8435000- 859d000 Deferred libllvmx86disassembler.so.3.7 ELF 859d000- 8640000 Deferred libllvmx86asmparser.so.3.7 ELF 8b98000- 8e1e000 Deferred libllvmx86codegen.so.3.7 ELF 8e1e000- 8eec000 Deferred libllvmasmprinter.so.3.7 ELF 8f08000- 8f11000 Deferred libllvmmcdisassembler.so.3.7 ELF 9761000- 9798000 Deferred libllvmipa.so.3.7 ELF 995e000- 9c67000 Deferred libllvmselectiondag.so.3.7 ELF a082000- a085000 Deferred libllvmx86info.so.3.7 ELF a304000- a7f2000 Deferred libllvmcodegen.so.3.7 ELF a8f2000- a933000 Deferred libllvmprofiledata.so.3.7 ELF a933000- a97e000 Deferred libllvmx86asmprinter.so.3.7 ELF a97e000- a98a000 Deferred libllvmx86utils.so.3.7 ELF a98a000- a99a000 Deferred libllvmmcjit.so.3.7 ELF a99a000- a9c4000 Deferred libllvmexecutionengine.so.3.7 ELF aad3000- abc2000 Deferred libllvminstcombine.so.3.7 ELF adae000- b070000 Deferred libllvmscalaropts.so.3.7 ELF b270000- b318000 Deferred libllvminstrumentation.so.3.7 ELF b318000- b32c000 Deferred libllvmtarget.so.3.7 ELF bbe2000- bc60000 Deferred libllvmruntimedyld.so.3.7 ELF bc64000- bc6f000 Deferred libpciaccess.so.0 ELF bf60000- c0c6000 Deferred libllvmtransformutils.so.3.7 ELF c1c6000- c323000 Deferred libllvmx86desc.so.3.7 ELF c323000- c3ca000 Deferred libllvmobject.so.3.7 ELF c3ca000- c3e6000 Deferred libgcc_s.so.1 ELF c596000- c883000 Deferred libllvmanalysis.so.3.7 ELF cd91000- cdce000 Deferred libllvmmcparser.so.3.7 ELF cdce000- ce1f000 Deferred libllvmbitreader.so.3.7 ELF ce1f000- cede000 Deferred libllvmmc.so.3.7 ELF d563000- d8c9000 Deferred libllvmcore.so.3.7 ELF d9c9000- dae6000 Deferred libllvmsupport.so.3.7 ELF dbe6000- dc44000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000166 (D) Z:\home\austin\wine-valgrind\dlls\d3d11\tests\d3d11_test.exe 00000167 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26494== 28 bytes in 1 blocks are possibly lost in loss record 398 of 1,261 ==26494== at 0x7BC5067C: notify_alloc (heap.c:254) ==26494== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26494== by 0x482A5FD: dxgi_factory_create (factory.c:327) ==26494== by 0x4828B7E: CreateDXGIFactory1 (dxgi_main.c:63) ==26494== by 0x4B772D2: D3D11CreateDevice (d3d11_main.c:196) ==26494== by 0x4A1A4A9: test_create_device (d3d11.c:1258) ==26494== by 0x4A467CE: func_d3d11 (d3d11.c:11941) ==26494== by 0x4A476F3: run_test (test.h:589) ==26494== by 0x4A47B1E: main (test.h:671) ==26494== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:dxgi_factory_create fun:CreateDXGIFactory1 fun:D3D11CreateDevice fun:test_create_device fun:func_d3d11 fun:run_test fun:main } Makefile:171: recipe for target 'd3d11.ok' failed make[1]: *** [d3d11.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d11/tests' Makefile:6376: recipe for target 'dlls/d3d11/tests/test' failed make: *** [dlls/d3d11/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3d8/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3d8.dll -p d3d8_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x68b677c (thread 016b), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x068b677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:068b677c ESP:04b9e5d0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06cf0000 ECX:046bfab8 EDX:00200000 ESI:04648e30 EDI:046bfab8 Stack dump: 0x04b9e5d0: 04b9e60c 046b9404 00000003 00000002 0x04b9e5e0: 00007f30 00007f44 00000082 00007f4c 0x04b9e5f0: 00800000 00000000 00007f24 00007f28 0x04b9e600: 00007f2c 00000000 04648610 00007f54 0x04b9e610: 00000000 00000000 00000000 00000000 0x04b9e620: 00000000 00000000 00000000 65d76800 Backtrace: =>0 0x068b677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0689cfab in radeonsi_dri.so (+0x670faa) (0x046479a8) 2 0x0689d332 in radeonsi_dri.so (+0x671331) (0x04b9e768) 3 0x0691d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b9e768) 4 0x0625c6fc in radeonsi_dri.so (+0x306fb) (0x046443e8) 5 0x06694f00 in radeonsi_dri.so (+0x468eff) (0x046443e8) 6 0x0669493d in radeonsi_dri.so (+0x46893c) (0x046443e8) 7 0x0655581b in radeonsi_dri.so (+0x32981a) (0x046443e8) 8 0x06551846 in radeonsi_dri.so (+0x325845) (0x04644360) 9 0x05d39722 in libgl.so.1 (+0x43721) (0x04594778) 10 0x05d0ea42 in libgl.so.1 (+0x18a41) (0x04592250) 11 0x05d0a60b in libgl.so.1 (+0x1460a) (0x04b9f224) 12 0x05d0a784 glXChooseVisual+0x63() in libgl.so.1 (0x04b9f224) 13 0x0590217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b9f2f8) 14 0x05903bd7 init_opengl+0xfbe(once=0x5960e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b9f508) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b9f558) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b9f588) 17 0x05904052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b9f5b8) 18 0x0590c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b9f5d8) 19 0x058f6e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f61b0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b9f608) 20 0x04fe1459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b9f638) 21 0x04c47c8b wined3d_adapter_init+0xe0(adapter=0x48f2c28, ordinal=0, wined3d_creation_flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b9fa68) 22 0x04c486bd wined3d_init+0xa5(wined3d=0x48f2c18, flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b9fa98) 23 0x04cceb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b9faf8) 24 0x04bbf928 d3d8_init+0x3d(d3d8=0x48f2bf8) [/home/austin/wine-valgrind/dlls/d3d8/directx.c:441] in d3d8 (0x04b9fb38) 25 0x04bb4794 Direct3DCreate8+0xa0(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d8/d3d8_main.c:47] in d3d8 (0x04b9fb88) 26 0x04a4220f func_device+0x1ed() [/home/austin/wine-valgrind/dlls/d3d8/tests/device.c:8118] in d3d8_test (0x04b9fcc8) 27 0x04a7861b run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:589] in d3d8_test (0x04b9fd08) 28 0x04a78a47 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:671] in d3d8_test (0x04b9fdd8) 29 0x04a78ad4 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d8_test (0x04b9fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b9fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b9fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b9fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b9ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b9ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b9ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b9ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4ba0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec61298) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec61318) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec621c8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec62208) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec62744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec62258) 42 0x7c000f80 main+0x145(argc=, argv=0xfec62744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec62698) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x068b677c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a93000 Dwarf d3d8_test \-PE 4a10000- 4a93000 \ d3d8_test ELF 4ba0000- 4bd7000 Dwarf d3d8 \-PE 4bb0000- 4bd7000 \ d3d8 ELF 4bd7000- 4d35000 Dwarf wined3d \-PE 4bf0000- 4d35000 \ wined3d ELF 4f35000- 5079000 Dwarf gdi32 \-PE 4f40000- 5079000 \ gdi32 ELF 5079000- 50fa000 Deferred advapi32 \-PE 5090000- 50fa000 \ advapi32 ELF 50fa000- 526e000 Deferred user32 \-PE 5110000- 526e000 \ user32 ELF 54ba000- 5572000 Deferred libfreetype.so.6 ELF 5772000- 5789000 Deferred libz.so.1 ELF 5789000- 579b000 Deferred libbz2.so.1 ELF 579b000- 57d9000 Deferred libpng16.so.16 ELF 57dd000- 581a000 Deferred libfontconfig.so.1 ELF 581e000- 5848000 Deferred libexpat.so.1 ELF 5854000- 5860000 Deferred libxcursor.so.1 ELF 5864000- 586b000 Deferred libxfixes.so.3 ELF 5897000- 58bc000 Deferred imm32 \-PE 58a0000- 58bc000 \ imm32 ELF 58c4000- 5964000 Dwarf winex11 \-PE 58d0000- 5964000 \ winex11 ELF 5978000- 597c000 Deferred libxinerama.so.1 ELF 5980000- 5986000 Deferred libxxf86vm.so.1 ELF 598a000- 5996000 Deferred libxrender.so.1 ELF 599a000- 59a7000 Deferred libxrandr.so.2 ELF 59ab000- 59af000 Deferred libxcomposite.so.1 ELF 59bc000- 59cf000 Deferred libxext.so.6 ELF 59d3000- 5b24000 Deferred libx11.so.6 ELF 5b3c000- 5b42000 Deferred libtxc_dxtn.so ELF 5b7d000- 5b80000 Deferred libxshmfence.so.1 ELF 5b9d000- 5bc5000 Deferred libudev.so.1 ELF 5bcd000- 5bd1000 Deferred libxcb-dri3.so.0 ELF 5bd5000- 5bd9000 Deferred libxcb-present.so.0 ELF 5bd9000- 5be1000 Deferred libxcb-sync.so.1 ELF 5be9000- 5c20000 Deferred libglapi.so.0 ELF 5c20000- 5c24000 Deferred libxdamage.so.1 ELF 5c24000- 5c27000 Deferred libx11-xcb.so.1 ELF 5c2c000- 5c58000 Deferred libxcb.so.1 ELF 5c60000- 5c64000 Deferred libxau.so.6 ELF 5c68000- 5c6f000 Deferred libxdmcp.so.6 ELF 5c73000- 5c8f000 Deferred libbsd.so.0 ELF 5c9b000- 5cb8000 Deferred libxcb-glx.so.0 ELF 5cb8000- 5cbe000 Deferred libxcb-dri2.so.0 ELF 5cbe000- 5cd0000 Deferred libdrm.so.2 ELF 5ce0000- 5ce3000 Deferred libllvmamdgpuutils.so.3.7 ELF 5ce3000- 5cf6000 Deferred libxi.so.6 ELF 5cf6000- 5d6d000 Dwarf libgl.so.1 ELF 5dc5000- 5e05000 Deferred libnettle.so.6 ELF 5e09000- 5e2e000 Deferred libdrm_intel.so.1 ELF 5e32000- 5e3c000 Deferred libdrm_nouveau.so.2 ELF 5e40000- 5e4e000 Deferred libdrm_radeon.so.1 ELF 5e52000- 5e5d000 Deferred libdrm_amdgpu.so.1 ELF 5e61000- 5e7e000 Deferred libelf.so.1 ELF 5e9e000- 5ef8000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 5f04000- 5f07000 Deferred libllvmamdgpuinfo.so.3.7 ELF 622c000- 6eee000 Dwarf radeonsi_dri.so ELF 75ee000- 76b6000 Deferred libllvmipo.so.3.7 ELF 76b6000- 76e0000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 7902000- 7a71000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8084000- 812c000 Deferred libllvmvectorize.so.3.7 ELF 812c000- 8168000 Deferred libllvmbitwriter.so.3.7 ELF 8244000- 8310000 Deferred libllvmamdgpudesc.so.3.7 ELF 8310000- 8478000 Deferred libllvmx86disassembler.so.3.7 ELF 8478000- 851b000 Deferred libllvmx86asmparser.so.3.7 ELF 861b000- 86e9000 Deferred libllvmasmprinter.so.3.7 ELF 86e9000- 86f2000 Deferred libllvmmcdisassembler.so.3.7 ELF 86f6000- 86f9000 Deferred libllvmx86info.so.3.7 ELF 8b49000- 8dcf000 Deferred libllvmx86codegen.so.3.7 ELF 8dcf000- 8e10000 Deferred libllvmprofiledata.so.3.7 ELF 8e10000- 8eb8000 Deferred libllvminstrumentation.so.3.7 ELF 9812000- 9849000 Deferred libllvmipa.so.3.7 ELF 9a0f000- 9d18000 Deferred libllvmselectiondag.so.3.7 ELF a133000- a13f000 Deferred libllvmx86utils.so.3.7 ELF a3b5000- a8a3000 Deferred libllvmcodegen.so.3.7 ELF a8a3000- ab65000 Deferred libllvmscalaropts.so.3.7 ELF ac65000- ac75000 Deferred libllvmmcjit.so.3.7 ELF af5f000- b04e000 Deferred libllvminstcombine.so.3.7 ELF b26c000- b2b7000 Deferred libllvmx86asmprinter.so.3.7 ELF b2b7000- b2cb000 Deferred libllvmtarget.so.3.7 ELF ba4d000- ba77000 Deferred libllvmexecutionengine.so.3.7 ELF ba77000- baf5000 Deferred libllvmruntimedyld.so.3.7 ELF baf5000- bb32000 Deferred libllvmmcparser.so.3.7 ELF be1c000- bf82000 Deferred libllvmtransformutils.so.3.7 ELF c082000- c1df000 Deferred libllvmx86desc.so.3.7 ELF c1df000- c286000 Deferred libllvmobject.so.3.7 ELF c452000- c73f000 Deferred libllvmanalysis.so.3.7 ELF cd4d000- cd9e000 Deferred libllvmbitreader.so.3.7 ELF cd9e000- ce5d000 Deferred libllvmmc.so.3.7 ELF d05d000- d079000 Deferred libgcc_s.so.1 ELF d079000- d084000 Deferred libpciaccess.so.0 ELF d41f000- d785000 Deferred libllvmcore.so.3.7 ELF d785000- d7e3000 Deferred libncurses.so.6 ELF d985000- daa2000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000016a (D) Z:\home\austin\wine-valgrind\dlls\d3d8\tests\d3d8_test.exe 0000016b 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26510== 12 bytes in 1 blocks are definitely lost in loss record 76 of 1,257 ==26510== at 0x7BC5067C: notify_alloc (heap.c:254) ==26510== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26510== by 0x4BB4772: Direct3DCreate8 (d3d8_main.c:44) ==26510== by 0x4A4220E: func_device (device.c:8118) ==26510== by 0x4A7861A: run_test (test.h:589) ==26510== by 0x4A78A46: main (test.h:671) ==26510== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate8 fun:func_device fun:run_test fun:main } ==26510== 13,240 bytes in 1 blocks are definitely lost in loss record 1,245 of 1,257 ==26510== at 0x7BC5067C: notify_alloc (heap.c:254) ==26510== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26510== by 0x4CCEAF8: wined3d_create (wined3d_main.c:101) ==26510== by 0x4BBF927: d3d8_init (directx.c:441) ==26510== by 0x4BB4793: Direct3DCreate8 (d3d8_main.c:47) ==26510== by 0x4A4220E: func_device (device.c:8118) ==26510== by 0x4A7861A: run_test (test.h:589) ==26510== by 0x4A78A46: main (test.h:671) ==26510== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d8_init fun:Direct3DCreate8 fun:func_device fun:run_test fun:main } Makefile:173: recipe for target 'device.ok' failed make[1]: *** [device.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3d8.dll -p d3d8_test.exe.so stateblock && touch stateblock.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x68b677c (thread 016f), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x068b677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:068b677c ESP:04b9e440 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06cf0000 ECX:0473f890 EDX:00200000 ESI:046c8c08 EDI:0473f890 Stack dump: 0x04b9e440: 04b9e47c 047391dc 00000003 00000002 0x04b9e450: 00007f30 00007f44 00000082 00007f4c 0x04b9e460: 00800000 00000000 00007f24 00007f28 0x04b9e470: 00007f2c 00000000 046c83e8 00007f54 0x04b9e480: 00000000 00000000 00000000 00000000 0x04b9e490: 00000000 00000000 00000000 4b7e1400 Backtrace: =>0 0x068b677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0689cfab in radeonsi_dri.so (+0x670faa) (0x046c7780) 2 0x0689d332 in radeonsi_dri.so (+0x671331) (0x04b9e5d8) 3 0x0691d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b9e5d8) 4 0x0625c6fc in radeonsi_dri.so (+0x306fb) (0x046c41c0) 5 0x06694f00 in radeonsi_dri.so (+0x468eff) (0x046c41c0) 6 0x0669493d in radeonsi_dri.so (+0x46893c) (0x046c41c0) 7 0x0655581b in radeonsi_dri.so (+0x32981a) (0x046c41c0) 8 0x06551846 in radeonsi_dri.so (+0x325845) (0x046c4138) 9 0x05db2722 in libgl.so.1 (+0x43721) (0x04614550) 10 0x05d87a42 in libgl.so.1 (+0x18a41) (0x04612028) 11 0x05d8360b in libgl.so.1 (+0x1460a) (0x04b9f094) 12 0x05d83784 glXChooseVisual+0x63() in libgl.so.1 (0x04b9f094) 13 0x0590e17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b9f168) 14 0x0590fbd7 init_opengl+0xfbe(once=0x596ce38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b9f378) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b9f3c8) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b9f3f8) 17 0x05910052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b9f428) 18 0x059180e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b9f448) 19 0x05902e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48fe500, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b9f478) 20 0x04fe1459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b9f4a8) 21 0x04c47c8b wined3d_adapter_init+0xe0(adapter=0x48faf78, ordinal=0, wined3d_creation_flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b9f8d8) 22 0x04c486bd wined3d_init+0xa5(wined3d=0x48faf68, flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b9f908) 23 0x04cceb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b9f968) 24 0x04bbf928 d3d8_init+0x3d(d3d8=0x48faf48) [/home/austin/wine-valgrind/dlls/d3d8/directx.c:441] in d3d8 (0x04b9f9a8) 25 0x04bb4794 Direct3DCreate8+0xa0(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d8/d3d8_main.c:47] in d3d8 (0x04b9f9f8) 26 0x04a47334 test_state_management+0x6c() [/home/austin/wine-valgrind/dlls/d3d8/tests/stateblock.c:1801] in d3d8_test (0x04b9fcb8) 27 0x04a47746 func_stateblock+0xa() [/home/austin/wine-valgrind/dlls/d3d8/tests/stateblock.c:1868] in d3d8_test (0x04b9fcc8) 28 0x04a7861b run_test+0x96(name="stateblock") [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:589] in d3d8_test (0x04b9fd08) 29 0x04a78a47 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:671] in d3d8_test (0x04b9fdd8) 30 0x04a78ad4 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d8_test (0x04b9fe18) 31 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b9fe38) 32 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b9fe88) 33 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b9fea8) 34 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b9ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b9ff98) 35 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b9ffb8) 36 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b9ffe8) 37 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 38 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4ba0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeca5298) 39 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeca5318) 40 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeca61c8) 41 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeca6208) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeca6744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeca6258) 43 0x7c000f80 main+0x145(argc=, argv=0xfeca6744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeca6698) 44 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x068b677c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a93000 Dwarf d3d8_test \-PE 4a10000- 4a93000 \ d3d8_test ELF 4ba0000- 4bd7000 Dwarf d3d8 \-PE 4bb0000- 4bd7000 \ d3d8 ELF 4bd7000- 4d35000 Dwarf wined3d \-PE 4bf0000- 4d35000 \ wined3d ELF 4f35000- 5079000 Dwarf gdi32 \-PE 4f40000- 5079000 \ gdi32 ELF 5079000- 50fa000 Deferred advapi32 \-PE 5090000- 50fa000 \ advapi32 ELF 50fa000- 526e000 Deferred user32 \-PE 5110000- 526e000 \ user32 ELF 54ba000- 5572000 Deferred libfreetype.so.6 ELF 5772000- 5789000 Deferred libz.so.1 ELF 5789000- 579b000 Deferred libbz2.so.1 ELF 579f000- 57dd000 Deferred libpng16.so.16 ELF 57e1000- 581e000 Deferred libfontconfig.so.1 ELF 5826000- 5850000 Deferred libexpat.so.1 ELF 585c000- 5868000 Deferred libxcursor.so.1 ELF 5870000- 5877000 Deferred libxfixes.so.3 ELF 5887000- 588a000 Deferred libxshmfence.so.1 ELF 58a3000- 58c8000 Deferred imm32 \-PE 58b0000- 58c8000 \ imm32 ELF 58d0000- 5970000 Dwarf winex11 \-PE 58e0000- 5970000 \ winex11 ELF 597c000- 5980000 Deferred libxinerama.so.1 ELF 5984000- 598a000 Deferred libxxf86vm.so.1 ELF 598e000- 599a000 Deferred libxrender.so.1 ELF 599e000- 59ab000 Deferred libxrandr.so.2 ELF 59af000- 59b3000 Deferred libxcomposite.so.1 ELF 59c0000- 59d3000 Deferred libxext.so.6 ELF 59d7000- 5b28000 Deferred libx11.so.6 ELF 5b4c000- 5b74000 Deferred libudev.so.1 ELF 5b8d000- 5b90000 Deferred libx11-xcb.so.1 ELF 5c03000- 5c07000 Deferred libxcb-dri3.so.0 ELF 5c0b000- 5c0f000 Deferred libxcb-present.so.0 ELF 5c0f000- 5c17000 Deferred libxcb-sync.so.1 ELF 5c23000- 5c27000 Deferred libxdamage.so.1 ELF 5c2c000- 5c58000 Deferred libxcb.so.1 ELF 5c60000- 5c64000 Deferred libxau.so.6 ELF 5c68000- 5c6f000 Deferred libxdmcp.so.6 ELF 5c73000- 5c8f000 Deferred libbsd.so.0 ELF 5c9b000- 5cd2000 Deferred libglapi.so.0 ELF 5cd2000- 5cd8000 Deferred libxcb-dri2.so.0 ELF 5ce0000- 5ce3000 Deferred libllvmamdgpuutils.so.3.7 ELF 5ce3000- 5cf6000 Deferred libxi.so.6 ELF 5d6f000- 5de6000 Dwarf libgl.so.1 ELF 5de6000- 5e03000 Deferred libxcb-glx.so.0 ELF 5e03000- 5e15000 Deferred libdrm.so.2 ELF 5e25000- 5e2b000 Deferred libtxc_dxtn.so ELF 5e65000- 5ea5000 Deferred libnettle.so.6 ELF 5ea9000- 5ece000 Deferred libdrm_intel.so.1 ELF 5ed2000- 5edc000 Deferred libdrm_nouveau.so.2 ELF 5ee0000- 5eee000 Deferred libdrm_radeon.so.1 ELF 5ef2000- 5efd000 Deferred libdrm_amdgpu.so.1 ELF 5f01000- 5f1e000 Deferred libelf.so.1 ELF 622c000- 6eee000 Dwarf radeonsi_dri.so ELF 75ee000- 76b6000 Deferred libllvmipo.so.3.7 ELF 76ca000- 76cd000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7902000- 7a71000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8084000- 812c000 Deferred libllvmvectorize.so.3.7 ELF 812c000- 8156000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8244000- 829e000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 829e000- 836a000 Deferred libllvmamdgpudesc.so.3.7 ELF 836a000- 83a6000 Deferred libllvmbitwriter.so.3.7 ELF 83a6000- 850e000 Deferred libllvmx86disassembler.so.3.7 ELF 850e000- 85b1000 Deferred libllvmx86asmparser.so.3.7 ELF 86b1000- 86f2000 Deferred libllvmprofiledata.so.3.7 ELF 8b49000- 8dcf000 Deferred libllvmx86codegen.so.3.7 ELF 8dcf000- 8e9d000 Deferred libllvmasmprinter.so.3.7 ELF 8ea9000- 8eb2000 Deferred libllvmmcdisassembler.so.3.7 ELF 8eba000- 8ebd000 Deferred libllvmx86info.so.3.7 ELF 9812000- 9849000 Deferred libllvmipa.so.3.7 ELF 9a0f000- 9d18000 Deferred libllvmselectiondag.so.3.7 ELF a133000- a13f000 Deferred libllvmx86utils.so.3.7 ELF a3b5000- a8a3000 Deferred libllvmcodegen.so.3.7 ELF a8a3000- ab65000 Deferred libllvmscalaropts.so.3.7 ELF ac65000- ac75000 Deferred libllvmmcjit.so.3.7 ELF af5f000- b04e000 Deferred libllvminstcombine.so.3.7 ELF b26c000- b2b7000 Deferred libllvmx86asmprinter.so.3.7 ELF b2b7000- b2cb000 Deferred libllvmtarget.so.3.7 ELF b974000- ba1c000 Deferred libllvminstrumentation.so.3.7 ELF bef5000- c05b000 Deferred libllvmtransformutils.so.3.7 ELF c05b000- c1b8000 Deferred libllvmx86desc.so.3.7 ELF c1b8000- c1e2000 Deferred libllvmexecutionengine.so.3.7 ELF c1e2000- c260000 Deferred libllvmruntimedyld.so.3.7 ELF c274000- c290000 Deferred libgcc_s.so.1 ELF c42b000- c718000 Deferred libllvmanalysis.so.3.7 ELF cc26000- cccd000 Deferred libllvmobject.so.3.7 ELF cdcd000- ce0a000 Deferred libllvmmcparser.so.3.7 ELF ce0a000- ce5b000 Deferred libllvmbitreader.so.3.7 ELF ce5b000- cf1a000 Deferred libllvmmc.so.3.7 ELF d01a000- d025000 Deferred libpciaccess.so.0 ELF d02d000- d08b000 Deferred libncurses.so.6 ELF d4f8000- d85e000 Deferred libllvmcore.so.3.7 ELF da5e000- db7b000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000016e (D) Z:\home\austin\wine-valgrind\dlls\d3d8\tests\d3d8_test.exe 0000016f 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26529== 12 bytes in 1 blocks are definitely lost in loss record 122 of 1,441 ==26529== at 0x7BC5067C: notify_alloc (heap.c:254) ==26529== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26529== by 0x4BB4772: Direct3DCreate8 (d3d8_main.c:44) ==26529== by 0x4A47333: test_state_management (stateblock.c:1801) ==26529== by 0x4A47745: func_stateblock (stateblock.c:1868) ==26529== by 0x4A7861A: run_test (test.h:589) ==26529== by 0x4A78A46: main (test.h:671) ==26529== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate8 fun:test_state_management fun:func_stateblock fun:run_test fun:main } ==26529== 13,240 bytes in 1 blocks are definitely lost in loss record 1,425 of 1,441 ==26529== at 0x7BC5067C: notify_alloc (heap.c:254) ==26529== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26529== by 0x4CCEAF8: wined3d_create (wined3d_main.c:101) ==26529== by 0x4BBF927: d3d8_init (directx.c:441) ==26529== by 0x4BB4793: Direct3DCreate8 (d3d8_main.c:47) ==26529== by 0x4A47333: test_state_management (stateblock.c:1801) ==26529== by 0x4A47745: func_stateblock (stateblock.c:1868) ==26529== by 0x4A7861A: run_test (test.h:589) ==26529== by 0x4A78A46: main (test.h:671) ==26529== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d8_init fun:Direct3DCreate8 fun:test_state_management fun:func_stateblock fun:run_test fun:main } Makefile:205: recipe for target 'stateblock.ok' failed make[1]: *** [stateblock.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3d8.dll -p d3d8_test.exe.so visual && touch visual.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x68b677c (thread 0173), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x068b677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:068b677c ESP:04b9e2a0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06cf0000 ECX:046bf160 EDX:00200000 ESI:046484d8 EDI:046bf160 Stack dump: 0x04b9e2a0: 04b9e2dc 046b8aac 00000003 00000002 0x04b9e2b0: 00007f30 00007f44 00000082 00007f4c 0x04b9e2c0: 00800000 00000000 00007f24 00007f28 0x04b9e2d0: 00007f2c 00000000 04647cb8 00007f54 0x04b9e2e0: 00000000 00000000 00000000 00000000 0x04b9e2f0: 00000000 00000000 00000000 b7003200 Backtrace: =>0 0x068b677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0689cfab in radeonsi_dri.so (+0x670faa) (0x04647050) 2 0x0689d332 in radeonsi_dri.so (+0x671331) (0x04b9e438) 3 0x0691d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b9e438) 4 0x0625c6fc in radeonsi_dri.so (+0x306fb) (0x04643a90) 5 0x06694f00 in radeonsi_dri.so (+0x468eff) (0x04643a90) 6 0x0669493d in radeonsi_dri.so (+0x46893c) (0x04643a90) 7 0x0655581b in radeonsi_dri.so (+0x32981a) (0x04643a90) 8 0x06551846 in radeonsi_dri.so (+0x325845) (0x04643a08) 9 0x05d39722 in libgl.so.1 (+0x43721) (0x04593e20) 10 0x05d0ea42 in libgl.so.1 (+0x18a41) (0x045918f8) 11 0x05d0a60b in libgl.so.1 (+0x1460a) (0x04b9eef4) 12 0x05d0a784 glXChooseVisual+0x63() in libgl.so.1 (0x04b9eef4) 13 0x0590e17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b9efc8) 14 0x0590fbd7 init_opengl+0xfbe(once=0x596ce38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b9f1d8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b9f228) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b9f258) 17 0x05910052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b9f288) 18 0x059180e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b9f2a8) 19 0x05902e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f53a8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b9f2d8) 20 0x04fe1459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b9f308) 21 0x04c47c8b wined3d_adapter_init+0xe0(adapter=0x48f1e20, ordinal=0, wined3d_creation_flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b9f738) 22 0x04c486bd wined3d_init+0xa5(wined3d=0x48f1e10, flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b9f768) 23 0x04cceb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b9f7c8) 24 0x04bbf928 d3d8_init+0x3d(d3d8=0x48f1df0) [/home/austin/wine-valgrind/dlls/d3d8/directx.c:441] in d3d8 (0x04b9f808) 25 0x04bb4794 Direct3DCreate8+0xa0(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d8/d3d8_main.c:47] in d3d8 (0x04b9f858) 26 0x04a7758d func_visual+0x2d() [/home/austin/wine-valgrind/dlls/d3d8/tests/visual.c:9689] in d3d8_test (0x04b9fcc8) 27 0x04a7861b run_test+0x96(name="visual") [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:589] in d3d8_test (0x04b9fd08) 28 0x04a78a47 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:671] in d3d8_test (0x04b9fdd8) 29 0x04a78ad4 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d8_test (0x04b9fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b9fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b9fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b9fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b9ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b9ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b9ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b9ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4ba0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfef42298) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfef42318) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfef431c8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfef43208) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfef43744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfef43258) 42 0x7c000f80 main+0x145(argc=, argv=0xfef43744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfef43698) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x068b677c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a93000 Dwarf d3d8_test \-PE 4a10000- 4a93000 \ d3d8_test ELF 4ba0000- 4bd7000 Dwarf d3d8 \-PE 4bb0000- 4bd7000 \ d3d8 ELF 4bd7000- 4d35000 Dwarf wined3d \-PE 4bf0000- 4d35000 \ wined3d ELF 4f35000- 5079000 Dwarf gdi32 \-PE 4f40000- 5079000 \ gdi32 ELF 5079000- 50fa000 Deferred advapi32 \-PE 5090000- 50fa000 \ advapi32 ELF 50fa000- 526e000 Deferred user32 \-PE 5110000- 526e000 \ user32 ELF 54ba000- 5572000 Deferred libfreetype.so.6 ELF 5772000- 5789000 Deferred libz.so.1 ELF 5789000- 579b000 Deferred libbz2.so.1 ELF 579f000- 57dd000 Deferred libpng16.so.16 ELF 57e1000- 581e000 Deferred libfontconfig.so.1 ELF 5826000- 5850000 Deferred libexpat.so.1 ELF 585c000- 5868000 Deferred libxcursor.so.1 ELF 5870000- 5877000 Deferred libxfixes.so.3 ELF 5887000- 588a000 Deferred libxshmfence.so.1 ELF 58a3000- 58c8000 Deferred imm32 \-PE 58b0000- 58c8000 \ imm32 ELF 58d0000- 5970000 Dwarf winex11 \-PE 58e0000- 5970000 \ winex11 ELF 597c000- 5980000 Deferred libxinerama.so.1 ELF 5984000- 598a000 Deferred libxxf86vm.so.1 ELF 598e000- 599a000 Deferred libxrender.so.1 ELF 599e000- 59ab000 Deferred libxrandr.so.2 ELF 59af000- 59b3000 Deferred libxcomposite.so.1 ELF 59c0000- 59d3000 Deferred libxext.so.6 ELF 59d7000- 5b28000 Deferred libx11.so.6 ELF 5b40000- 5b46000 Deferred libtxc_dxtn.so ELF 5b7d000- 5b80000 Deferred libx11-xcb.so.1 ELF 5b85000- 5b89000 Deferred libxcb-dri3.so.0 ELF 5b89000- 5b8d000 Deferred libxcb-present.so.0 ELF 5b8d000- 5b90000 Deferred libllvmamdgpuutils.so.3.7 ELF 5bad000- 5bd5000 Deferred libudev.so.1 ELF 5bdd000- 5be5000 Deferred libxcb-sync.so.1 ELF 5be9000- 5c20000 Deferred libglapi.so.0 ELF 5c20000- 5c24000 Deferred libxdamage.so.1 ELF 5c2c000- 5c58000 Deferred libxcb.so.1 ELF 5c60000- 5c64000 Deferred libxau.so.6 ELF 5c68000- 5c6f000 Deferred libxdmcp.so.6 ELF 5c73000- 5c8f000 Deferred libbsd.so.0 ELF 5c9b000- 5cb8000 Deferred libxcb-glx.so.0 ELF 5cb8000- 5cbe000 Deferred libxcb-dri2.so.0 ELF 5cbe000- 5cd0000 Deferred libdrm.so.2 ELF 5ce0000- 5ce3000 Deferred libllvmamdgpuinfo.so.3.7 ELF 5ce3000- 5cf6000 Deferred libxi.so.6 ELF 5cf6000- 5d6d000 Dwarf libgl.so.1 ELF 5dc5000- 5e05000 Deferred libnettle.so.6 ELF 5e09000- 5e2e000 Deferred libdrm_intel.so.1 ELF 5e32000- 5e3c000 Deferred libdrm_nouveau.so.2 ELF 5e40000- 5e4e000 Deferred libdrm_radeon.so.1 ELF 5e52000- 5e5d000 Deferred libdrm_amdgpu.so.1 ELF 5e61000- 5e7e000 Deferred libelf.so.1 ELF 5e9e000- 5ef8000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 622c000- 6eee000 Dwarf radeonsi_dri.so ELF 75ee000- 76b6000 Deferred libllvmipo.so.3.7 ELF 76b6000- 76e0000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 7902000- 7a71000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8084000- 812c000 Deferred libllvmvectorize.so.3.7 ELF 812c000- 8168000 Deferred libllvmbitwriter.so.3.7 ELF 8180000- 8183000 Deferred libllvmx86info.so.3.7 ELF 8244000- 8310000 Deferred libllvmamdgpudesc.so.3.7 ELF 8310000- 8478000 Deferred libllvmx86disassembler.so.3.7 ELF 8478000- 851b000 Deferred libllvmx86asmparser.so.3.7 ELF 861b000- 86e9000 Deferred libllvmasmprinter.so.3.7 ELF 86e9000- 86f2000 Deferred libllvmmcdisassembler.so.3.7 ELF 8b49000- 8dcf000 Deferred libllvmx86codegen.so.3.7 ELF 8dcf000- 8e10000 Deferred libllvmprofiledata.so.3.7 ELF 8e10000- 8eb8000 Deferred libllvminstrumentation.so.3.7 ELF 8ebc000- 8ec8000 Deferred libllvmx86utils.so.3.7 ELF 9812000- 9849000 Deferred libllvmipa.so.3.7 ELF 9a0f000- 9d18000 Deferred libllvmselectiondag.so.3.7 ELF a3b5000- a8a3000 Deferred libllvmcodegen.so.3.7 ELF a8a3000- ab65000 Deferred libllvmscalaropts.so.3.7 ELF ac65000- ac75000 Deferred libllvmmcjit.so.3.7 ELF af5f000- b04e000 Deferred libllvminstcombine.so.3.7 ELF b26c000- b2b7000 Deferred libllvmx86asmprinter.so.3.7 ELF b2b7000- b2cb000 Deferred libllvmtarget.so.3.7 ELF ba4d000- ba77000 Deferred libllvmexecutionengine.so.3.7 ELF ba77000- baf5000 Deferred libllvmruntimedyld.so.3.7 ELF baf5000- bb32000 Deferred libllvmmcparser.so.3.7 ELF be1c000- bf82000 Deferred libllvmtransformutils.so.3.7 ELF c082000- c1df000 Deferred libllvmx86desc.so.3.7 ELF c1df000- c286000 Deferred libllvmobject.so.3.7 ELF c452000- c73f000 Deferred libllvmanalysis.so.3.7 ELF cd4d000- cd9e000 Deferred libllvmbitreader.so.3.7 ELF cd9e000- ce5d000 Deferred libllvmmc.so.3.7 ELF d05d000- d079000 Deferred libgcc_s.so.1 ELF d079000- d084000 Deferred libpciaccess.so.0 ELF d41f000- d785000 Deferred libllvmcore.so.3.7 ELF d785000- d7e3000 Deferred libncurses.so.6 ELF d985000- daa2000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000172 (D) Z:\home\austin\wine-valgrind\dlls\d3d8\tests\d3d8_test.exe 00000173 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26543== 12 bytes in 1 blocks are definitely lost in loss record 76 of 1,255 ==26543== at 0x7BC5067C: notify_alloc (heap.c:254) ==26543== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26543== by 0x4BB4772: Direct3DCreate8 (d3d8_main.c:44) ==26543== by 0x4A7758C: func_visual (visual.c:9689) ==26543== by 0x4A7861A: run_test (test.h:589) ==26543== by 0x4A78A46: main (test.h:671) ==26543== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate8 fun:func_visual fun:run_test fun:main } ==26543== 13,240 bytes in 1 blocks are definitely lost in loss record 1,243 of 1,255 ==26543== at 0x7BC5067C: notify_alloc (heap.c:254) ==26543== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26543== by 0x4CCEAF8: wined3d_create (wined3d_main.c:101) ==26543== by 0x4BBF927: d3d8_init (directx.c:441) ==26543== by 0x4BB4793: Direct3DCreate8 (d3d8_main.c:47) ==26543== by 0x4A7758C: func_visual (visual.c:9689) ==26543== by 0x4A7861A: run_test (test.h:589) ==26543== by 0x4A78A46: main (test.h:671) ==26543== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d8_init fun:Direct3DCreate8 fun:func_visual fun:run_test fun:main } Makefile:237: recipe for target 'visual.ok' failed make[1]: *** [visual.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d8/tests' Makefile:6423: recipe for target 'dlls/d3d8/tests/test' failed make: *** [dlls/d3d8/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3d9/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3d9.dll -p d3d9_test.exe.so d3d9ex && touch d3d9ex.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x683577c (thread 0177), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0683577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0683577c ESP:04c1e590 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06c6f000 ECX:046bfab8 EDX:00200000 ESI:04648e30 EDI:046bfab8 Stack dump: 0x04c1e590: 04c1e5cc 046b9404 00000003 00000002 0x04c1e5a0: 00007f30 00007f44 00000082 00007f4c 0x04c1e5b0: 00800000 00000000 00007f24 00007f28 0x04c1e5c0: 00007f2c 00000000 04648610 00007f54 0x04c1e5d0: 00000000 00000000 00000000 00000000 0x04c1e5e0: 00000000 00000000 00000000 4b820200 Backtrace: =>0 0x0683577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0681bfab in radeonsi_dri.so (+0x670faa) (0x046479a8) 2 0x0681c332 in radeonsi_dri.so (+0x671331) (0x04c1e728) 3 0x0689c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e728) 4 0x061db6fc in radeonsi_dri.so (+0x306fb) (0x046443e8) 5 0x06613f00 in radeonsi_dri.so (+0x468eff) (0x046443e8) 6 0x0661393d in radeonsi_dri.so (+0x46893c) (0x046443e8) 7 0x064d481b in radeonsi_dri.so (+0x32981a) (0x046443e8) 8 0x064d0846 in radeonsi_dri.so (+0x325845) (0x04644360) 9 0x05d4d722 in libgl.so.1 (+0x43721) (0x04594778) 10 0x05d22a42 in libgl.so.1 (+0x18a41) (0x04592250) 11 0x05d1e60b in libgl.so.1 (+0x1460a) (0x04c1f1e4) 12 0x05d1e784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1f1e4) 13 0x0598517f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1f2b8) 14 0x05986bd7 init_opengl+0xfbe(once=0x59e3e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f4c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f518) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f548) 17 0x05987052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f578) 18 0x0598f0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f598) 19 0x05979e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5f60, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f5c8) 20 0x0506d459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f5f8) 21 0x04cd3c8b wined3d_adapter_init+0xe0(adapter=0x48f29d8, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c1fa28) 22 0x04cd46bd wined3d_init+0xa5(wined3d=0x48f29c8, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c1fa58) 23 0x04d5ab68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c1fab8) 24 0x04c43653 d3d9_init+0x4d(d3d9=0x48f29a8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c1faf8) 25 0x04c34e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c1fb48) 26 0x04a17686 test_qi_base_to_ex+0x26() [/home/austin/wine-valgrind/dlls/d3d9/tests/d3d9ex.c:241] in d3d9_test (0x04c1fbd8) 27 0x04a2a231 func_d3d9ex+0x1bf() [/home/austin/wine-valgrind/dlls/d3d9/tests/d3d9ex.c:3629] in d3d9_test (0x04c1fcc8) 28 0x04adf6d1 run_test+0x96(name="d3d9ex") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 29 0x04adfafd main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 30 0x04adfb8a __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 31 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c1fe38) 32 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 33 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 34 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c1ff98) 35 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 36 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c1ffe8) 37 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 38 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb1b298) 39 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb1b318) 40 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb1c1c8) 41 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb1c208) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb1c744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb1c258) 43 0x7c000f80 main+0x145(argc=, argv=0xfeb1c744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb1c698) 44 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0683577c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b11000 Dwarf d3d9_test \-PE 4a10000- 4b11000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc1000 Dwarf wined3d \-PE 4c70000- 4dc1000 \ wined3d ELF 4fc1000- 5105000 Dwarf gdi32 \-PE 4fd0000- 5105000 \ gdi32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 5546000- 55fe000 Deferred libfreetype.so.6 ELF 57fe000- 5815000 Deferred libz.so.1 ELF 5815000- 5827000 Deferred libbz2.so.1 ELF 5827000- 5865000 Deferred libpng16.so.16 ELF 5865000- 58a2000 Deferred libfontconfig.so.1 ELF 58a6000- 58d0000 Deferred libexpat.so.1 ELF 58d0000- 58dc000 Deferred libxcursor.so.1 ELF 58e0000- 58e7000 Deferred libxfixes.so.3 ELF 58f9000- 58fc000 Deferred libxshmfence.so.1 ELF 591a000- 593f000 Deferred imm32 \-PE 5920000- 593f000 \ imm32 ELF 5947000- 59e7000 Dwarf winex11 \-PE 5950000- 59e7000 \ winex11 ELF 59f7000- 59fb000 Deferred libxinerama.so.1 ELF 59ff000- 5a05000 Deferred libxxf86vm.so.1 ELF 5a09000- 5a15000 Deferred libxrender.so.1 ELF 5a19000- 5a26000 Deferred libxrandr.so.2 ELF 5a2a000- 5a2e000 Deferred libxcomposite.so.1 ELF 5a3f000- 5a52000 Deferred libxext.so.6 ELF 5a56000- 5ba7000 Deferred libx11.so.6 ELF 5bab000- 5bd7000 Deferred libxcb.so.1 ELF 5bdb000- 5bdf000 Deferred libxau.so.6 ELF 5bdf000- 5be6000 Deferred libxdmcp.so.6 ELF 5bee000- 5c0a000 Deferred libbsd.so.0 ELF 5c15000- 5c19000 Deferred libxcb-dri3.so.0 ELF 5c19000- 5c1d000 Deferred libxcb-present.so.0 ELF 5c1d000- 5c25000 Deferred libxcb-sync.so.1 ELF 5c35000- 5c39000 Deferred libxdamage.so.1 ELF 5c3d000- 5c40000 Deferred libx11-xcb.so.1 ELF 5c44000- 5c4a000 Deferred libxcb-dri2.so.0 ELF 5c5a000- 5c6d000 Deferred libxi.so.6 ELF 5c79000- 5c7f000 Deferred libtxc_dxtn.so ELF 5cd2000- 5cfa000 Deferred libudev.so.1 ELF 5d0a000- 5d81000 Dwarf libgl.so.1 ELF 5e81000- 5eb8000 Deferred libglapi.so.0 ELF 5eb8000- 5ed5000 Deferred libxcb-glx.so.0 ELF 5ed5000- 5ee7000 Deferred libdrm.so.2 ELF 5f4b000- 5f8b000 Deferred libnettle.so.6 ELF 5f97000- 5fa1000 Deferred libdrm_nouveau.so.2 ELF 61ab000- 6e6d000 Dwarf radeonsi_dri.so ELF 7161000- 7186000 Deferred libdrm_intel.so.1 ELF 7186000- 7194000 Deferred libdrm_radeon.so.1 ELF 7198000- 71a3000 Deferred libdrm_amdgpu.so.1 ELF 71a7000- 71c4000 Deferred libelf.so.1 ELF 71d8000- 7232000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 723a000- 723d000 Deferred libllvmamdgpuutils.so.3.7 ELF 7241000- 7244000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7981000- 7af0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7df0000- 7eb8000 Deferred libllvmipo.so.3.7 ELF 7eb8000- 7ee2000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 82c3000- 836b000 Deferred libllvmvectorize.so.3.7 ELF 836b000- 8437000 Deferred libllvmamdgpudesc.so.3.7 ELF 8437000- 8473000 Deferred libllvmbitwriter.so.3.7 ELF 8473000- 85db000 Deferred libllvmx86disassembler.so.3.7 ELF 85db000- 867e000 Deferred libllvmx86asmparser.so.3.7 ELF 867e000- 874c000 Deferred libllvmasmprinter.so.3.7 ELF 8770000- 8779000 Deferred libllvmmcdisassembler.so.3.7 ELF 8bc8000- 8e4e000 Deferred libllvmx86codegen.so.3.7 ELF 8e4e000- 8e8f000 Deferred libllvmprofiledata.so.3.7 ELF 8e8f000- 8f37000 Deferred libllvminstrumentation.so.3.7 ELF 8f3b000- 8f3e000 Deferred libllvmx86info.so.3.7 ELF 9891000- 98c8000 Deferred libllvmipa.so.3.7 ELF 9a8e000- 9d97000 Deferred libllvmselectiondag.so.3.7 ELF a1b2000- a1be000 Deferred libllvmx86utils.so.3.7 ELF a434000- a922000 Deferred libllvmcodegen.so.3.7 ELF aa22000- aa6d000 Deferred libllvmx86asmprinter.so.3.7 ELF aa6d000- aa7d000 Deferred libllvmmcjit.so.3.7 ELF aa7d000- aaa7000 Deferred libllvmexecutionengine.so.3.7 ELF aaab000- aabf000 Deferred libllvmtarget.so.3.7 ELF aaf7000- ab02000 Deferred libpciaccess.so.0 ELF ac03000- acf2000 Deferred libllvminstcombine.so.3.7 ELF aede000- b1a0000 Deferred libllvmscalaropts.so.3.7 ELF b3a0000- b41e000 Deferred libllvmruntimedyld.so.3.7 ELF b41e000- b45b000 Deferred libllvmmcparser.so.3.7 ELF b45b000- b477000 Deferred libgcc_s.so.1 ELF bd12000- bd63000 Deferred libllvmbitreader.so.3.7 ELF c090000- c1f6000 Deferred libllvmtransformutils.so.3.7 ELF c5c6000- c723000 Deferred libllvmx86desc.so.3.7 ELF c723000- ca10000 Deferred libllvmanalysis.so.3.7 ELF cb10000- cbb7000 Deferred libllvmobject.so.3.7 ELF cf1e000- cfdd000 Deferred libllvmmc.so.3.7 ELF d1dd000- d23b000 Deferred libncurses.so.6 ELF d6f0000- da56000 Deferred libllvmcore.so.3.7 ELF db56000- dc73000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000176 (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 00000177 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26606== 16 bytes in 1 blocks are definitely lost in loss record 122 of 1,256 ==26606== at 0x7BC5067C: notify_alloc (heap.c:254) ==26606== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26606== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==26606== by 0x4A17685: test_qi_base_to_ex (d3d9ex.c:241) ==26606== by 0x4A2A230: func_d3d9ex (d3d9ex.c:3629) ==26606== by 0x4ADF6D0: run_test (test.h:589) ==26606== by 0x4ADFAFC: main (test.h:671) ==26606== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:test_qi_base_to_ex fun:func_d3d9ex fun:run_test fun:main } ==26606== 13,240 bytes in 1 blocks are definitely lost in loss record 1,244 of 1,256 ==26606== at 0x7BC5067C: notify_alloc (heap.c:254) ==26606== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26606== by 0x4D5AAF8: wined3d_create (wined3d_main.c:101) ==26606== by 0x4C43652: d3d9_init (directx.c:679) ==26606== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==26606== by 0x4A17685: test_qi_base_to_ex (d3d9ex.c:241) ==26606== by 0x4A2A230: func_d3d9ex (d3d9ex.c:3629) ==26606== by 0x4ADF6D0: run_test (test.h:589) ==26606== by 0x4ADFAFC: main (test.h:671) ==26606== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:test_qi_base_to_ex fun:func_d3d9ex fun:run_test fun:main } Makefile:174: recipe for target 'd3d9ex.ok' failed make[1]: *** [d3d9ex.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3d9.dll -p d3d9_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x686577c (thread 017b), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0686577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0686577c ESP:04c1e5d0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06c9f000 ECX:046bfab8 EDX:00200000 ESI:04648e30 EDI:046bfab8 Stack dump: 0x04c1e5d0: 04c1e60c 046b9404 00000003 00000002 0x04c1e5e0: 00007f30 00007f44 00000082 00007f4c 0x04c1e5f0: 00800000 00000000 00007f24 00007f28 0x04c1e600: 00007f2c 00000000 04648610 00007f54 0x04c1e610: 00000000 00000000 00000000 00000000 0x04c1e620: 00000000 00000000 00000000 1ca92100 Backtrace: =>0 0x0686577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0684bfab in radeonsi_dri.so (+0x670faa) (0x046479a8) 2 0x0684c332 in radeonsi_dri.so (+0x671331) (0x04c1e768) 3 0x068cc6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e768) 4 0x0620b6fc in radeonsi_dri.so (+0x306fb) (0x046443e8) 5 0x06643f00 in radeonsi_dri.so (+0x468eff) (0x046443e8) 6 0x0664393d in radeonsi_dri.so (+0x46893c) (0x046443e8) 7 0x0650481b in radeonsi_dri.so (+0x32981a) (0x046443e8) 8 0x06500846 in radeonsi_dri.so (+0x325845) (0x04644360) 9 0x05d7d722 in libgl.so.1 (+0x43721) (0x04594778) 10 0x05d52a42 in libgl.so.1 (+0x18a41) (0x04592250) 11 0x05d4e60b in libgl.so.1 (+0x1460a) (0x04c1f224) 12 0x05d4e784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1f224) 13 0x059b517f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1f2f8) 14 0x059b6bd7 init_opengl+0xfbe(once=0x5a13e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f508) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f558) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f588) 17 0x059b7052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f5b8) 18 0x059bf0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f5d8) 19 0x059a9e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5e20, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f608) 20 0x0506d459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f638) 21 0x04cd3c8b wined3d_adapter_init+0xe0(adapter=0x48f2898, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c1fa68) 22 0x04cd46bd wined3d_init+0xa5(wined3d=0x48f2888, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c1fa98) 23 0x04d5ab68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c1faf8) 24 0x04c43653 d3d9_init+0x4d(d3d9=0x48f2868, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c1fb38) 25 0x04c34e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c1fb88) 26 0x04a66fc2 func_device+0x135() [/home/austin/wine-valgrind/dlls/d3d9/tests/device.c:11331] in d3d9_test (0x04c1fcc8) 27 0x04adf6d1 run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 28 0x04adfafd main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 29 0x04adfb8a __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c1fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c1ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c1ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfee03298) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfee03318) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfee041c8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfee04208) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfee04744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfee04258) 42 0x7c000f80 main+0x145(argc=, argv=0xfee04744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfee04698) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0686577c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b11000 Dwarf d3d9_test \-PE 4a10000- 4b11000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc1000 Dwarf wined3d \-PE 4c70000- 4dc1000 \ wined3d ELF 4fc1000- 5105000 Dwarf gdi32 \-PE 4fd0000- 5105000 \ gdi32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 54fa000- 5515000 Deferred version \-PE 5500000- 5515000 \ version ELF 555e000- 5561000 Deferred libxshmfence.so.1 ELF 5561000- 5619000 Deferred libfreetype.so.6 ELF 5819000- 5830000 Deferred libz.so.1 ELF 5830000- 5842000 Deferred libbz2.so.1 ELF 5846000- 5884000 Deferred libpng16.so.16 ELF 5888000- 58c5000 Deferred libfontconfig.so.1 ELF 58c9000- 58f3000 Deferred libexpat.so.1 ELF 58f7000- 5903000 Deferred libxcursor.so.1 ELF 5907000- 590e000 Deferred libxfixes.so.3 ELF 594e000- 5973000 Deferred imm32 \-PE 5950000- 5973000 \ imm32 ELF 5977000- 5a17000 Dwarf winex11 \-PE 5980000- 5a17000 \ winex11 ELF 5a23000- 5a27000 Deferred libxinerama.so.1 ELF 5a2b000- 5a31000 Deferred libxxf86vm.so.1 ELF 5a35000- 5a41000 Deferred libxrender.so.1 ELF 5a45000- 5a52000 Deferred libxrandr.so.2 ELF 5a56000- 5a5a000 Deferred libxcomposite.so.1 ELF 5a6b000- 5a7e000 Deferred libxext.so.6 ELF 5a82000- 5bd3000 Deferred libx11.so.6 ELF 5bdb000- 5c07000 Deferred libxcb.so.1 ELF 5c0b000- 5c0f000 Deferred libxau.so.6 ELF 5c0f000- 5c16000 Deferred libxdmcp.so.6 ELF 5c1e000- 5c3a000 Deferred libbsd.so.0 ELF 5c41000- 5c45000 Deferred libxcb-dri3.so.0 ELF 5c45000- 5c49000 Deferred libxcb-present.so.0 ELF 5c49000- 5c51000 Deferred libxcb-sync.so.1 ELF 5c61000- 5c65000 Deferred libxdamage.so.1 ELF 5c69000- 5c6c000 Deferred libx11-xcb.so.1 ELF 5c6c000- 5c89000 Deferred libxcb-glx.so.0 ELF 5c8a000- 5c9d000 Deferred libxi.so.6 ELF 5ca9000- 5caf000 Deferred libtxc_dxtn.so ELF 5d3a000- 5db1000 Dwarf libgl.so.1 ELF 5eb1000- 5ee8000 Deferred libglapi.so.0 ELF 5ee8000- 5eee000 Deferred libxcb-dri2.so.0 ELF 5eee000- 5f00000 Deferred libdrm.so.2 ELF 5f4c000- 5f74000 Deferred libudev.so.1 ELF 5f74000- 5fb4000 Deferred libnettle.so.6 ELF 5fb4000- 5fd9000 Deferred libdrm_intel.so.1 ELF 61db000- 6e9d000 Dwarf radeonsi_dri.so ELF 7191000- 719b000 Deferred libdrm_nouveau.so.2 ELF 719b000- 71a9000 Deferred libdrm_radeon.so.1 ELF 71a9000- 71b4000 Deferred libdrm_amdgpu.so.1 ELF 71b8000- 71d5000 Deferred libelf.so.1 ELF 71e1000- 7289000 Deferred libllvmvectorize.so.3.7 ELF 7299000- 729c000 Deferred libllvmamdgpuutils.so.3.7 ELF 79b1000- 7b20000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7e20000- 7ee8000 Deferred libllvmipo.so.3.7 ELF 7ef0000- 7ef3000 Deferred libllvmamdgpuinfo.so.3.7 ELF 82f3000- 834d000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 834d000- 8419000 Deferred libllvmamdgpudesc.so.3.7 ELF 8419000- 8443000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8443000- 847f000 Deferred libllvmbitwriter.so.3.7 ELF 847f000- 85e7000 Deferred libllvmx86disassembler.so.3.7 ELF 85e7000- 868a000 Deferred libllvmx86asmparser.so.3.7 ELF 87a6000- 87a9000 Deferred libllvmx86info.so.3.7 ELF 8bf8000- 8e7e000 Deferred libllvmx86codegen.so.3.7 ELF 8e7e000- 8f4c000 Deferred libllvmasmprinter.so.3.7 ELF 8f60000- 8f69000 Deferred libllvmmcdisassembler.so.3.7 ELF 97c1000- 97f8000 Deferred libllvmipa.so.3.7 ELF 99be000- 9cc7000 Deferred libllvmselectiondag.so.3.7 ELF a0e2000- a0ee000 Deferred libllvmx86utils.so.3.7 ELF a364000- a852000 Deferred libllvmcodegen.so.3.7 ELF a952000- a993000 Deferred libllvmprofiledata.so.3.7 ELF a993000- a9de000 Deferred libllvmx86asmprinter.so.3.7 ELF a9de000- a9ee000 Deferred libllvmmcjit.so.3.7 ELF a9ee000- aa18000 Deferred libllvmexecutionengine.so.3.7 ELF aa1c000- aa30000 Deferred libllvmtarget.so.3.7 ELF ab33000- ac22000 Deferred libllvminstcombine.so.3.7 ELF ae0e000- b0d0000 Deferred libllvmscalaropts.so.3.7 ELF b2d0000- b378000 Deferred libllvminstrumentation.so.3.7 ELF b37c000- b3b9000 Deferred libllvmmcparser.so.3.7 ELF bc42000- bcc0000 Deferred libllvmruntimedyld.so.3.7 ELF bfc0000- c126000 Deferred libllvmtransformutils.so.3.7 ELF c336000- c352000 Deferred libgcc_s.so.1 ELF c4f6000- c653000 Deferred libllvmx86desc.so.3.7 ELF c653000- c940000 Deferred libllvmanalysis.so.3.7 ELF ca40000- cae7000 Deferred libllvmobject.so.3.7 ELF cae7000- cb38000 Deferred libllvmbitreader.so.3.7 ELF ce4e000- cf0d000 Deferred libllvmmc.so.3.7 ELF d10d000- d118000 Deferred libpciaccess.so.0 ELF d118000- d176000 Deferred libncurses.so.6 ELF d620000- d986000 Deferred libllvmcore.so.3.7 ELF da86000- dba3000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000017a (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 0000017b 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26620== 16 bytes in 1 blocks are definitely lost in loss record 122 of 1,256 ==26620== at 0x7BC5067C: notify_alloc (heap.c:254) ==26620== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26620== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==26620== by 0x4A66FC1: func_device (device.c:11331) ==26620== by 0x4ADF6D0: run_test (test.h:589) ==26620== by 0x4ADFAFC: main (test.h:671) ==26620== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_device fun:run_test fun:main } ==26620== 13,240 bytes in 1 blocks are definitely lost in loss record 1,244 of 1,256 ==26620== at 0x7BC5067C: notify_alloc (heap.c:254) ==26620== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26620== by 0x4D5AAF8: wined3d_create (wined3d_main.c:101) ==26620== by 0x4C43652: d3d9_init (directx.c:679) ==26620== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==26620== by 0x4A66FC1: func_device (device.c:11331) ==26620== by 0x4ADF6D0: run_test (test.h:589) ==26620== by 0x4ADFAFC: main (test.h:671) ==26620== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_device fun:run_test fun:main } Makefile:206: recipe for target 'device.ok' failed make[1]: *** [device.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3d9.dll -p d3d9_test.exe.so stateblock && touch stateblock.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x685577c (thread 017f), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0685577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0685577c ESP:04c1e3e0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06c8f000 ECX:0473f888 EDX:00200000 ESI:046c8c00 EDI:0473f888 Stack dump: 0x04c1e3e0: 04c1e41c 047391d4 00000003 00000002 0x04c1e3f0: 00007f30 00007f44 00000082 00007f4c 0x04c1e400: 00800000 00000000 00007f24 00007f28 0x04c1e410: 00007f2c 00000000 046c83e0 00007f54 0x04c1e420: 00000000 00000000 00000000 00000000 0x04c1e430: 00000000 00000000 00000000 22b88b00 Backtrace: =>0 0x0685577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0683bfab in radeonsi_dri.so (+0x670faa) (0x046c7778) 2 0x0683c332 in radeonsi_dri.so (+0x671331) (0x04c1e578) 3 0x068bc6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e578) 4 0x061fb6fc in radeonsi_dri.so (+0x306fb) (0x046c41b8) 5 0x06633f00 in radeonsi_dri.so (+0x468eff) (0x046c41b8) 6 0x0663393d in radeonsi_dri.so (+0x46893c) (0x046c41b8) 7 0x064f481b in radeonsi_dri.so (+0x32981a) (0x046c41b8) 8 0x064f0846 in radeonsi_dri.so (+0x325845) (0x046c4130) 9 0x05dbc722 in libgl.so.1 (+0x43721) (0x04614548) 10 0x05d91a42 in libgl.so.1 (+0x18a41) (0x04612020) 11 0x05d8d60b in libgl.so.1 (+0x1460a) (0x04c1f034) 12 0x05d8d784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1f034) 13 0x0599d17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1f108) 14 0x0599ebd7 init_opengl+0xfbe(once=0x59fbe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f318) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f368) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f398) 17 0x0599f052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f3c8) 18 0x059a70e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f3e8) 19 0x05991e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48fe540, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f418) 20 0x0506d459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f448) 21 0x04cd3c8b wined3d_adapter_init+0xe0(adapter=0x48fafb8, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c1f878) 22 0x04cd46bd wined3d_init+0xa5(wined3d=0x48fafa8, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c1f8a8) 23 0x04d5ab68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c1f908) 24 0x04c43653 d3d9_init+0x4d(d3d9=0x48faf88, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c1f948) 25 0x04c34e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c1f998) 26 0x04a6cdee test_state_management+0x69() [/home/austin/wine-valgrind/dlls/d3d9/tests/stateblock.c:2020] in d3d9_test (0x04c1fcb8) 27 0x04a6d1ea func_stateblock+0xa() [/home/austin/wine-valgrind/dlls/d3d9/tests/stateblock.c:2090] in d3d9_test (0x04c1fcc8) 28 0x04adf6d1 run_test+0x96(name="stateblock") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 29 0x04adfafd main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 30 0x04adfb8a __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 31 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c1fe38) 32 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 33 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 34 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c1ff98) 35 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 36 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c1ffe8) 37 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 38 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfef92298) 39 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfef92318) 40 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfef931c8) 41 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfef93208) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfef93744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfef93258) 43 0x7c000f80 main+0x145(argc=, argv=0xfef93744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfef93698) 44 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0685577c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b11000 Dwarf d3d9_test \-PE 4a10000- 4b11000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc1000 Dwarf wined3d \-PE 4c70000- 4dc1000 \ wined3d ELF 4fc1000- 5105000 Dwarf gdi32 \-PE 4fd0000- 5105000 \ gdi32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 5546000- 55fe000 Deferred libfreetype.so.6 ELF 57fe000- 5815000 Deferred libz.so.1 ELF 5819000- 582b000 Deferred libbz2.so.1 ELF 582f000- 586d000 Deferred libpng16.so.16 ELF 5871000- 58ae000 Deferred libfontconfig.so.1 ELF 58b6000- 58e0000 Deferred libexpat.so.1 ELF 58e4000- 58f0000 Deferred libxcursor.so.1 ELF 58f4000- 58fb000 Deferred libxfixes.so.3 ELF 590d000- 5910000 Deferred libxshmfence.so.1 ELF 5932000- 5957000 Deferred imm32 \-PE 5940000- 5957000 \ imm32 ELF 595f000- 59ff000 Dwarf winex11 \-PE 5970000- 59ff000 \ winex11 ELF 5a0b000- 5a0f000 Deferred libxinerama.so.1 ELF 5a0f000- 5a15000 Deferred libxxf86vm.so.1 ELF 5a19000- 5a25000 Deferred libxrender.so.1 ELF 5a29000- 5a36000 Deferred libxrandr.so.2 ELF 5a3a000- 5a3e000 Deferred libxcomposite.so.1 ELF 5a57000- 5a6a000 Deferred libxext.so.6 ELF 5a72000- 5bc3000 Deferred libx11.so.6 ELF 5bcb000- 5bf7000 Deferred libxcb.so.1 ELF 5bfb000- 5bff000 Deferred libxau.so.6 ELF 5bff000- 5c06000 Deferred libxdmcp.so.6 ELF 5c0e000- 5c2a000 Deferred libbsd.so.0 ELF 5c7a000- 5c8d000 Deferred libxi.so.6 ELF 5cad000- 5cd5000 Deferred libudev.so.1 ELF 5d79000- 5df0000 Dwarf libgl.so.1 ELF 5ef0000- 5ef4000 Deferred libxcb-dri3.so.0 ELF 5ef8000- 5efc000 Deferred libxcb-present.so.0 ELF 5efc000- 5f04000 Deferred libxcb-sync.so.1 ELF 5f0c000- 5f43000 Deferred libglapi.so.0 ELF 5f47000- 5f4b000 Deferred libxdamage.so.1 ELF 5f4b000- 5f4e000 Deferred libx11-xcb.so.1 ELF 5f4e000- 5f6b000 Deferred libxcb-glx.so.0 ELF 5f6f000- 5f75000 Deferred libxcb-dri2.so.0 ELF 5f79000- 5f8b000 Deferred libdrm.so.2 ELF 5f9f000- 5fc4000 Deferred libdrm_intel.so.1 ELF 5fc8000- 5fcb000 Deferred libllvmamdgpuutils.so.3.7 ELF 61cb000- 6e8d000 Dwarf radeonsi_dri.so ELF 7191000- 7197000 Deferred libtxc_dxtn.so ELF 71cd000- 720d000 Deferred libnettle.so.6 ELF 7211000- 721b000 Deferred libdrm_nouveau.so.2 ELF 721f000- 722d000 Deferred libdrm_radeon.so.1 ELF 7231000- 723c000 Deferred libdrm_amdgpu.so.1 ELF 7240000- 725d000 Deferred libelf.so.1 ELF 7279000- 727c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 79a1000- 7b10000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7e10000- 7ed8000 Deferred libllvmipo.so.3.7 ELF 7ed8000- 7f02000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 82e3000- 838b000 Deferred libllvmvectorize.so.3.7 ELF 838b000- 83e5000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 83e5000- 84b1000 Deferred libllvmamdgpudesc.so.3.7 ELF 84b1000- 84ed000 Deferred libllvmbitwriter.so.3.7 ELF 84ed000- 8655000 Deferred libllvmx86disassembler.so.3.7 ELF 8655000- 86f8000 Deferred libllvmx86asmparser.so.3.7 ELF 8710000- 8751000 Deferred libllvmprofiledata.so.3.7 ELF 8779000- 8782000 Deferred libllvmmcdisassembler.so.3.7 ELF 878a000- 878d000 Deferred libllvmx86info.so.3.7 ELF 8be8000- 8e6e000 Deferred libllvmx86codegen.so.3.7 ELF 8e6e000- 8f3c000 Deferred libllvmasmprinter.so.3.7 ELF 8f3c000- 8f48000 Deferred libllvmx86utils.so.3.7 ELF 8f48000- 8f58000 Deferred libllvmmcjit.so.3.7 ELF 98b1000- 98e8000 Deferred libllvmipa.so.3.7 ELF 9aae000- 9db7000 Deferred libllvmselectiondag.so.3.7 ELF a454000- a942000 Deferred libllvmcodegen.so.3.7 ELF aa42000- aaea000 Deferred libllvminstrumentation.so.3.7 ELF aaea000- ab14000 Deferred libllvmexecutionengine.so.3.7 ELF ac23000- ad12000 Deferred libllvminstcombine.so.3.7 ELF aefe000- b1c0000 Deferred libllvmscalaropts.so.3.7 ELF b3c0000- b40b000 Deferred libllvmx86asmprinter.so.3.7 ELF b40b000- b41f000 Deferred libllvmtarget.so.3.7 ELF b41f000- b49d000 Deferred libllvmruntimedyld.so.3.7 ELF bd32000- bd6f000 Deferred libllvmmcparser.so.3.7 ELF bd6f000- bdc0000 Deferred libllvmbitreader.so.3.7 ELF c0b0000- c216000 Deferred libllvmtransformutils.so.3.7 ELF c416000- c432000 Deferred libgcc_s.so.1 ELF c432000- c43d000 Deferred libpciaccess.so.0 ELF c5e6000- c743000 Deferred libllvmx86desc.so.3.7 ELF c743000- ca30000 Deferred libllvmanalysis.so.3.7 ELF cb30000- cbd7000 Deferred libllvmobject.so.3.7 ELF cf3e000- cffd000 Deferred libllvmmc.so.3.7 ELF d1fd000- d25b000 Deferred libncurses.so.6 ELF d710000- da76000 Deferred libllvmcore.so.3.7 ELF db76000- dc93000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000017e (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 0000017f 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26639== 16 bytes in 1 blocks are definitely lost in loss record 181 of 1,442 ==26639== at 0x7BC5067C: notify_alloc (heap.c:254) ==26639== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26639== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==26639== by 0x4A6CDED: test_state_management (stateblock.c:2020) ==26639== by 0x4A6D1E9: func_stateblock (stateblock.c:2090) ==26639== by 0x4ADF6D0: run_test (test.h:589) ==26639== by 0x4ADFAFC: main (test.h:671) ==26639== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:test_state_management fun:func_stateblock fun:run_test fun:main } ==26639== 13,240 bytes in 1 blocks are definitely lost in loss record 1,426 of 1,442 ==26639== at 0x7BC5067C: notify_alloc (heap.c:254) ==26639== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26639== by 0x4D5AAF8: wined3d_create (wined3d_main.c:101) ==26639== by 0x4C43652: d3d9_init (directx.c:679) ==26639== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==26639== by 0x4A6CDED: test_state_management (stateblock.c:2020) ==26639== by 0x4A6D1E9: func_stateblock (stateblock.c:2090) ==26639== by 0x4ADF6D0: run_test (test.h:589) ==26639== by 0x4ADFAFC: main (test.h:671) ==26639== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:test_state_management fun:func_stateblock fun:run_test fun:main } Makefile:238: recipe for target 'stateblock.ok' failed make[1]: *** [stateblock.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3d9.dll -p d3d9_test.exe.so visual && touch visual.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x685577c (thread 0183), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0685577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0685577c ESP:04c1e280 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06c8f000 ECX:046bf158 EDX:00200000 ESI:046484d0 EDI:046bf158 Stack dump: 0x04c1e280: 04c1e2bc 046b8aa4 00000003 00000002 0x04c1e290: 00007f30 00007f44 00000082 00007f4c 0x04c1e2a0: 00800000 00000000 00007f24 00007f28 0x04c1e2b0: 00007f2c 00000000 04647cb0 00007f54 0x04c1e2c0: 00000000 00000000 00000000 00000000 0x04c1e2d0: 00000000 00000000 00000000 b5722e00 Backtrace: =>0 0x0685577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0683bfab in radeonsi_dri.so (+0x670faa) (0x04647048) 2 0x0683c332 in radeonsi_dri.so (+0x671331) (0x04c1e418) 3 0x068bc6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e418) 4 0x061fb6fc in radeonsi_dri.so (+0x306fb) (0x04643a88) 5 0x06633f00 in radeonsi_dri.so (+0x468eff) (0x04643a88) 6 0x0663393d in radeonsi_dri.so (+0x46893c) (0x04643a88) 7 0x064f481b in radeonsi_dri.so (+0x32981a) (0x04643a88) 8 0x064f0846 in radeonsi_dri.so (+0x325845) (0x04643a00) 9 0x05d21722 in libgl.so.1 (+0x43721) (0x04593e18) 10 0x05cf6a42 in libgl.so.1 (+0x18a41) (0x045918f0) 11 0x05cf260b in libgl.so.1 (+0x1460a) (0x04c1eed4) 12 0x05cf2784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1eed4) 13 0x059a117f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1efa8) 14 0x059a2bd7 init_opengl+0xfbe(once=0x59ffe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f1b8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f208) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f238) 17 0x059a3052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f268) 18 0x059ab0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f288) 19 0x05995e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f53a8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f2b8) 20 0x0506d459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f2e8) 21 0x04cd3c8b wined3d_adapter_init+0xe0(adapter=0x48f1e20, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c1f718) 22 0x04cd46bd wined3d_init+0xa5(wined3d=0x48f1e10, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c1f748) 23 0x04d5ab68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c1f7a8) 24 0x04c43653 d3d9_init+0x4d(d3d9=0x48f1df0, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c1f7e8) 25 0x04c34e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c1f838) 26 0x04ade4c5 func_visual+0x2a() [/home/austin/wine-valgrind/dlls/d3d9/tests/visual.c:22228] in d3d9_test (0x04c1fcc8) 27 0x04adf6d1 run_test+0x96(name="visual") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 28 0x04adfafd main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 29 0x04adfb8a __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c1fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c1ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c1ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe90d298) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe90d318) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe90e1c8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe90e208) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe90e744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe90e258) 42 0x7c000f80 main+0x145(argc=, argv=0xfe90e744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe90e698) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0685577c: repe Modules: Module Address Debug info Name (117 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b11000 Dwarf d3d9_test \-PE 4a10000- 4b11000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc1000 Dwarf wined3d \-PE 4c70000- 4dc1000 \ wined3d ELF 4fc1000- 5105000 Dwarf gdi32 \-PE 4fd0000- 5105000 \ gdi32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 5546000- 55fe000 Deferred libfreetype.so.6 ELF 57fe000- 5815000 Deferred libz.so.1 ELF 581d000- 582f000 Deferred libbz2.so.1 ELF 5833000- 5871000 Deferred libpng16.so.16 ELF 5879000- 58b6000 Deferred libfontconfig.so.1 ELF 58ba000- 58e4000 Deferred libexpat.so.1 ELF 58e8000- 58f4000 Deferred libxcursor.so.1 ELF 58f8000- 58ff000 Deferred libxfixes.so.3 ELF 590d000- 5910000 Deferred libxshmfence.so.1 ELF 5915000- 5919000 Deferred libxcb-dri3.so.0 ELF 5919000- 591d000 Deferred libxcb-present.so.0 ELF 5936000- 595b000 Deferred imm32 \-PE 5940000- 595b000 \ imm32 ELF 5963000- 5a03000 Dwarf winex11 \-PE 5970000- 5a03000 \ winex11 ELF 5a13000- 5a17000 Deferred libxinerama.so.1 ELF 5a1b000- 5a21000 Deferred libxxf86vm.so.1 ELF 5a25000- 5a31000 Deferred libxrender.so.1 ELF 5a35000- 5a42000 Deferred libxrandr.so.2 ELF 5a46000- 5a4a000 Deferred libxcomposite.so.1 ELF 5a5b000- 5a6e000 Deferred libxext.so.6 ELF 5a72000- 5bc3000 Deferred libx11.so.6 ELF 5bcb000- 5bf7000 Deferred libxcb.so.1 ELF 5bfb000- 5bff000 Deferred libxau.so.6 ELF 5bff000- 5c06000 Deferred libxdmcp.so.6 ELF 5c0e000- 5c2a000 Deferred libbsd.so.0 ELF 5c4a000- 5c72000 Deferred libudev.so.1 ELF 5c7a000- 5c8d000 Deferred libxi.so.6 ELF 5c99000- 5c9f000 Deferred libtxc_dxtn.so ELF 5cde000- 5d55000 Dwarf libgl.so.1 ELF 5e55000- 5e5d000 Deferred libxcb-sync.so.1 ELF 5e61000- 5e98000 Deferred libglapi.so.0 ELF 5ea0000- 5ea4000 Deferred libxdamage.so.1 ELF 5eac000- 5eaf000 Deferred libx11-xcb.so.1 ELF 5eaf000- 5ecc000 Deferred libxcb-glx.so.0 ELF 5ed0000- 5ed6000 Deferred libxcb-dri2.so.0 ELF 5eda000- 5eec000 Deferred libdrm.so.2 ELF 5f58000- 5f98000 Deferred libnettle.so.6 ELF 5f9c000- 5fc1000 Deferred libdrm_intel.so.1 ELF 61cb000- 6e8d000 Dwarf radeonsi_dri.so ELF 7181000- 718b000 Deferred libdrm_nouveau.so.2 ELF 718b000- 7199000 Deferred libdrm_radeon.so.1 ELF 719d000- 71a8000 Deferred libdrm_amdgpu.so.1 ELF 71ac000- 71c9000 Deferred libelf.so.1 ELF 71d5000- 727d000 Deferred libllvmvectorize.so.3.7 ELF 79a1000- 7b10000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7e10000- 7ed8000 Deferred libllvmipo.so.3.7 ELF 7ed8000- 7edb000 Deferred libllvmamdgpuutils.so.3.7 ELF 7edf000- 7ee2000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7ee6000- 7f10000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 82e3000- 833d000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 833d000- 8409000 Deferred libllvmamdgpudesc.so.3.7 ELF 8409000- 8445000 Deferred libllvmbitwriter.so.3.7 ELF 8449000- 85b1000 Deferred libllvmx86disassembler.so.3.7 ELF 85b5000- 8658000 Deferred libllvmx86asmparser.so.3.7 ELF 8be8000- 8e6e000 Deferred libllvmx86codegen.so.3.7 ELF 8e6e000- 8f3c000 Deferred libllvmasmprinter.so.3.7 ELF 8f48000- 8f51000 Deferred libllvmmcdisassembler.so.3.7 ELF 8f59000- 8f5c000 Deferred libllvmx86info.so.3.7 ELF 97b1000- 97e8000 Deferred libllvmipa.so.3.7 ELF 99ae000- 9cb7000 Deferred libllvmselectiondag.so.3.7 ELF a0d2000- a0de000 Deferred libllvmx86utils.so.3.7 ELF a354000- a842000 Deferred libllvmcodegen.so.3.7 ELF a942000- a983000 Deferred libllvmprofiledata.so.3.7 ELF a983000- a9ce000 Deferred libllvmx86asmprinter.so.3.7 ELF a9ce000- a9de000 Deferred libllvmmcjit.so.3.7 ELF a9de000- aa08000 Deferred libllvmexecutionengine.so.3.7 ELF aa08000- aa1c000 Deferred libllvmtarget.so.3.7 ELF ab23000- ac12000 Deferred libllvminstcombine.so.3.7 ELF adfe000- b0c0000 Deferred libllvmscalaropts.so.3.7 ELF b2c0000- b368000 Deferred libllvminstrumentation.so.3.7 ELF b36c000- b3a9000 Deferred libllvmmcparser.so.3.7 ELF bc32000- bcb0000 Deferred libllvmruntimedyld.so.3.7 ELF bfb0000- c116000 Deferred libllvmtransformutils.so.3.7 ELF c326000- c342000 Deferred libgcc_s.so.1 ELF c4e6000- c643000 Deferred libllvmx86desc.so.3.7 ELF c643000- c930000 Deferred libllvmanalysis.so.3.7 ELF ca30000- cad7000 Deferred libllvmobject.so.3.7 ELF cad7000- cb28000 Deferred libllvmbitreader.so.3.7 ELF ce3e000- cefd000 Deferred libllvmmc.so.3.7 ELF d0fd000- d108000 Deferred libpciaccess.so.0 ELF d108000- d166000 Deferred libncurses.so.6 ELF d610000- d976000 Deferred libllvmcore.so.3.7 ELF da76000- db93000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000182 (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 00000183 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26660== 16 bytes in 1 blocks are definitely lost in loss record 122 of 1,255 ==26660== at 0x7BC5067C: notify_alloc (heap.c:254) ==26660== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26660== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==26660== by 0x4ADE4C4: func_visual (visual.c:22228) ==26660== by 0x4ADF6D0: run_test (test.h:589) ==26660== by 0x4ADFAFC: main (test.h:671) ==26660== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_visual fun:run_test fun:main } ==26660== 13,240 bytes in 1 blocks are definitely lost in loss record 1,243 of 1,255 ==26660== at 0x7BC5067C: notify_alloc (heap.c:254) ==26660== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26660== by 0x4D5AAF8: wined3d_create (wined3d_main.c:101) ==26660== by 0x4C43652: d3d9_init (directx.c:679) ==26660== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==26660== by 0x4ADE4C4: func_visual (visual.c:22228) ==26660== by 0x4ADF6D0: run_test (test.h:589) ==26660== by 0x4ADFAFC: main (test.h:671) ==26660== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_visual fun:run_test fun:main } Makefile:270: recipe for target 'visual.ok' failed make[1]: *** [visual.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d9/tests' Makefile:6470: recipe for target 'dlls/d3d9/tests/test' failed make: *** [dlls/d3d9/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3dcompiler_43/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3dcompiler_43.dll -p d3dcompiler_43_test.exe.so asm && touch asm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M d3dcompiler_43.dll -p d3dcompiler_43_test.exe.so blob && touch blob.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M d3dcompiler_43.dll -p d3dcompiler_43_test.exe.so hlsl && touch hlsl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6f0577c (thread 018b), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06f0577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06f0577c ESP:04b3e4f0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:0733f000 ECX:04710eb8 EDX:00200000 ESI:0469a230 EDI:04710eb8 Stack dump: 0x04b3e4f0: 04b3e52c 0470a804 00000003 00000002 0x04b3e500: 00007f30 00007f44 00000082 00007f4c 0x04b3e510: 00800000 00000000 00007f24 00007f28 0x04b3e520: 00007f2c 00000000 04699a10 00007f54 0x04b3e530: 00000000 00000000 00000000 00000000 0x04b3e540: 00000000 00000000 00000000 c2132b00 Backtrace: =>0 0x06f0577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06eebfab in radeonsi_dri.so (+0x670faa) (0x04698da8) 2 0x06eec332 in radeonsi_dri.so (+0x671331) (0x04b3e688) 3 0x06f6c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b3e688) 4 0x068ab6fc in radeonsi_dri.so (+0x306fb) (0x046957e8) 5 0x06ce3f00 in radeonsi_dri.so (+0x468eff) (0x046957e8) 6 0x06ce393d in radeonsi_dri.so (+0x46893c) (0x046957e8) 7 0x06ba481b in radeonsi_dri.so (+0x32981a) (0x046957e8) 8 0x06ba0846 in radeonsi_dri.so (+0x325845) (0x04695760) 9 0x06119722 in libgl.so.1 (+0x43721) (0x045e5b78) 10 0x060eea42 in libgl.so.1 (+0x18a41) (0x045e3650) 11 0x060ea60b in libgl.so.1 (+0x1460a) (0x04b3f144) 12 0x060ea784 glXChooseVisual+0x63() in libgl.so.1 (0x04b3f144) 13 0x05d5117f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b3f218) 14 0x05d52bd7 init_opengl+0xfbe(once=0x5dafe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b3f428) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b3f478) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b3f4a8) 17 0x05d53052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b3f4d8) 18 0x05d5b0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b3f4f8) 19 0x05d45e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f94c8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b3f528) 20 0x05011459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b3f558) 21 0x04c77c8b wined3d_adapter_init+0xe0(adapter=0x48f5f40, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b3f988) 22 0x04c786bd wined3d_init+0xa5(wined3d=0x48f5f30, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b3f9b8) 23 0x04cfeb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b3fa18) 24 0x04be7653 d3d9_init+0x4d(d3d9=0x48f5f10, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04b3fa58) 25 0x04bd8e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04b3faa8) 26 0x04a1e823 init_d3d9+0x52(vdeclaration=0x4b3fb78, quad_geometry=0x4b3fb7c, vshader_passthru=0x4b3fb80) [/home/austin/wine-valgrind/dlls/d3dcompiler_43/tests/hlsl.c:88] in d3dcompiler_43_test (0x04b3fb58) 27 0x04a201bc func_hlsl+0x3c() [/home/austin/wine-valgrind/dlls/d3dcompiler_43/tests/hlsl.c:661] in d3dcompiler_43_test (0x04b3fcc8) 28 0x04a274dc run_test+0x96(name="hlsl") [/home/austin/wine-valgrind/dlls/d3dcompiler_43/tests/../../../include/wine/test.h:589] in d3dcompiler_43_test (0x04b3fd08) 29 0x04a27908 main+0x245(argc=, argv=0x48d1e20) [/home/austin/wine-valgrind/dlls/d3dcompiler_43/tests/../../../include/wine/test.h:671] in d3dcompiler_43_test (0x04b3fdd8) 30 0x04a27999 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dcompiler_43_test (0x04b3fe18) 31 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b3fe38) 32 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b3fe88) 33 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b3fea8) 34 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b3ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b3ff98) 35 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b3ffb8) 36 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b3ffe8) 37 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 38 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b40000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfee1f278) 39 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfee1f2f8) 40 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfee201a8) 41 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfee201e8) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfee20724, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfee20238) 43 0x7c000f80 main+0x145(argc=, argv=0xfee20724) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfee20678) 44 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06f0577c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a36000 Dwarf d3dcompiler_43_test \-PE 4a10000- 4a36000 \ d3dcompiler_43_test ELF 4b40000- 4bc4000 Deferred d3dcompiler_43 \-PE 4b50000- 4bc4000 \ d3dcompiler_43 ELF 4bc4000- 4c07000 Dwarf d3d9 \-PE 4bd0000- 4c07000 \ d3d9 ELF 4c07000- 4d65000 Dwarf wined3d \-PE 4c20000- 4d65000 \ wined3d ELF 4f65000- 50a9000 Dwarf gdi32 \-PE 4f70000- 50a9000 \ gdi32 ELF 50a9000- 512a000 Deferred advapi32 \-PE 50c0000- 512a000 \ advapi32 ELF 512a000- 529e000 Deferred user32 \-PE 5140000- 529e000 \ user32 ELF 549e000- 554d000 Deferred d3dx9_36 \-PE 54b0000- 554d000 \ d3dx9_36 ELF 554d000- 5576000 Deferred d3dxof \-PE 5550000- 5576000 \ d3dxof ELF 5576000- 56f8000 Deferred ole32 \-PE 5590000- 56f8000 \ ole32 ELF 57fc000- 5889000 Deferred rpcrt4 \-PE 5810000- 5889000 \ rpcrt4 ELF 58ed000- 59a5000 Deferred libfreetype.so.6 ELF 5ba9000- 5bc0000 Deferred libz.so.1 ELF 5bc4000- 5bd6000 Deferred libbz2.so.1 ELF 5bde000- 5c1c000 Deferred libpng16.so.16 ELF 5c20000- 5c5d000 Deferred libfontconfig.so.1 ELF 5c61000- 5c8b000 Deferred libexpat.so.1 ELF 5c93000- 5c9f000 Deferred libxcursor.so.1 ELF 5ca3000- 5caa000 Deferred libxfixes.so.3 ELF 5ce6000- 5d0b000 Deferred imm32 \-PE 5cf0000- 5d0b000 \ imm32 ELF 5d13000- 5db3000 Dwarf winex11 \-PE 5d20000- 5db3000 \ winex11 ELF 5dc3000- 5dc7000 Deferred libxinerama.so.1 ELF 5dcb000- 5dd1000 Deferred libxxf86vm.so.1 ELF 5dd5000- 5de1000 Deferred libxrender.so.1 ELF 5de5000- 5df2000 Deferred libxrandr.so.2 ELF 5df6000- 5dfa000 Deferred libxcomposite.so.1 ELF 5e0b000- 5e1e000 Deferred libxext.so.6 ELF 5e22000- 5f73000 Deferred libx11.so.6 ELF 5f7b000- 5fa7000 Deferred libxcb.so.1 ELF 5fab000- 5faf000 Deferred libxau.so.6 ELF 5faf000- 5fb6000 Deferred libxdmcp.so.6 ELF 5fba000- 5fd6000 Deferred libbsd.so.0 ELF 5fe1000- 5fe5000 Deferred libxcb-dri3.so.0 ELF 5fe5000- 5fe9000 Deferred libxcb-present.so.0 ELF 5fe9000- 5ff1000 Deferred libxcb-sync.so.1 ELF 5ff5000- 5ff8000 Deferred libxshmfence.so.1 ELF 5ffc000- 6000000 Deferred libxdamage.so.1 ELF 6000000- 6003000 Deferred libx11-xcb.so.1 ELF 6007000- 6024000 Deferred libxcb-glx.so.0 ELF 6026000- 6039000 Deferred libxi.so.6 ELF 6049000- 604f000 Deferred libtxc_dxtn.so ELF 60aa000- 60d2000 Deferred libudev.so.1 ELF 60d6000- 614d000 Dwarf libgl.so.1 ELF 614d000- 6184000 Deferred libglapi.so.0 ELF 6184000- 618a000 Deferred libxcb-dri2.so.0 ELF 618a000- 619c000 Deferred libdrm.so.2 ELF 6400000- 6440000 Deferred libnettle.so.6 ELF 6440000- 6465000 Deferred libdrm_intel.so.1 ELF 6469000- 6473000 Deferred libdrm_nouveau.so.2 ELF 687b000- 753d000 Dwarf radeonsi_dri.so ELF 753d000- 754b000 Deferred libdrm_radeon.so.1 ELF 754b000- 7556000 Deferred libdrm_amdgpu.so.1 ELF 755a000- 7577000 Deferred libelf.so.1 ELF 757b000- 76ea000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7706000- 7709000 Deferred libllvmamdgpuutils.so.3.7 ELF 7711000- 7714000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e51000- 7f19000 Deferred libllvmipo.so.3.7 ELF 7f19000- 7f43000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8564000- 860c000 Deferred libllvmvectorize.so.3.7 ELF 860c000- 8648000 Deferred libllvmbitwriter.so.3.7 ELF 8824000- 887e000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 887e000- 894a000 Deferred libllvmamdgpudesc.so.3.7 ELF 894a000- 8ab2000 Deferred libllvmx86disassembler.so.3.7 ELF 8ab2000- 8b55000 Deferred libllvmx86asmparser.so.3.7 ELF 8b55000- 8c23000 Deferred libllvmasmprinter.so.3.7 ELF 8c33000- 8c3c000 Deferred libllvmmcdisassembler.so.3.7 ELF 8c40000- 8c43000 Deferred libllvmx86info.so.3.7 ELF 9098000- 931e000 Deferred libllvmx86codegen.so.3.7 ELF 931e000- 935f000 Deferred libllvmprofiledata.so.3.7 ELF 935f000- 9407000 Deferred libllvminstrumentation.so.3.7 ELF 9d61000- 9d98000 Deferred libllvmipa.so.3.7 ELF 9f5e000- a267000 Deferred libllvmselectiondag.so.3.7 ELF a482000- a4cd000 Deferred libllvmx86asmprinter.so.3.7 ELF a4cd000- a4d9000 Deferred libllvmx86utils.so.3.7 ELF a4d9000- a4e9000 Deferred libllvmmcjit.so.3.7 ELF a4e9000- a513000 Deferred libllvmexecutionengine.so.3.7 ELF a517000- a52b000 Deferred libllvmtarget.so.3.7 ELF a7cb000- acb9000 Deferred libllvmcodegen.so.3.7 ELF aeb9000- b17b000 Deferred libllvmscalaropts.so.3.7 ELF b575000- b664000 Deferred libllvminstcombine.so.3.7 ELF b664000- b66f000 Deferred libpciaccess.so.0 ELF b982000- ba00000 Deferred libllvmruntimedyld.so.3.7 ELF ba00000- ba1c000 Deferred libgcc_s.so.1 ELF c09c000- c143000 Deferred libllvmobject.so.3.7 ELF c432000- c598000 Deferred libllvmtransformutils.so.3.7 ELF c698000- c7f5000 Deferred libllvmx86desc.so.3.7 ELF c7f5000- c832000 Deferred libllvmmcparser.so.3.7 ELF c832000- c883000 Deferred libllvmbitreader.so.3.7 ELF ca68000- cd55000 Deferred libllvmanalysis.so.3.7 ELF d263000- d322000 Deferred libllvmmc.so.3.7 ELF d622000- d680000 Deferred libncurses.so.6 ELF da35000- dd9b000 Deferred libllvmcore.so.3.7 ELF de9b000- dfb8000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000018a (D) Z:\home\austin\wine-valgrind\dlls\d3dcompiler_43\tests\d3dcompiler_43_test.exe 0000018b 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26719== 16 bytes in 1 blocks are definitely lost in loss record 124 of 1,279 ==26719== at 0x7BC5067C: notify_alloc (heap.c:254) ==26719== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26719== by 0x4BD8E46: Direct3DCreate9 (d3d9_main.c:42) ==26719== by 0x4A1E822: init_d3d9 (hlsl.c:88) ==26719== by 0x4A201BB: func_hlsl (hlsl.c:661) ==26719== by 0x4A274DB: run_test (test.h:589) ==26719== by 0x4A27907: main (test.h:671) ==26719== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:init_d3d9 fun:func_hlsl fun:run_test fun:main } ==26719== 13,240 bytes in 1 blocks are definitely lost in loss record 1,266 of 1,279 ==26719== at 0x7BC5067C: notify_alloc (heap.c:254) ==26719== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26719== by 0x4CFEAF8: wined3d_create (wined3d_main.c:101) ==26719== by 0x4BE7652: d3d9_init (directx.c:679) ==26719== by 0x4BD8E69: Direct3DCreate9 (d3d9_main.c:45) ==26719== by 0x4A1E822: init_d3d9 (hlsl.c:88) ==26719== by 0x4A201BB: func_hlsl (hlsl.c:661) ==26719== by 0x4A274DB: run_test (test.h:589) ==26719== by 0x4A27907: main (test.h:671) ==26719== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:init_d3d9 fun:func_hlsl fun:run_test fun:main } Makefile:238: recipe for target 'hlsl.ok' failed make[1]: *** [hlsl.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dcompiler_43.dll -p d3dcompiler_43_test.exe.so reflection && touch reflection.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3dcompiler_43/tests' Makefile:6707: recipe for target 'dlls/d3dcompiler_43/tests/test' failed make: *** [dlls/d3dcompiler_43/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3drm/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3drm.dll -p d3drm_test.exe.so d3drm && touch d3drm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6f8a77c (thread 0191), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06f8a77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06f8a77c ESP:04b5e3c0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:073c4000 ECX:04768440 EDX:00200000 ESI:046f17b8 EDI:04768440 Stack dump: 0x04b5e3c0: 04b5e3fc 04761d8c 00000003 00000002 0x04b5e3d0: 00007f30 00007f44 00000082 00007f4c 0x04b5e3e0: 00800000 00000000 00007f24 00007f28 0x04b5e3f0: 00007f2c 00000000 046f0f98 00007f54 0x04b5e400: 00000000 00000000 00000000 00000000 0x04b5e410: 00000000 00000000 00000000 03a14e00 Backtrace: =>0 0x06f8a77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06f70fab in radeonsi_dri.so (+0x670faa) (0x046f0330) 2 0x06f71332 in radeonsi_dri.so (+0x671331) (0x04b5e558) 3 0x06ff16df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b5e558) 4 0x069306fc in radeonsi_dri.so (+0x306fb) (0x046ecd70) 5 0x06d68f00 in radeonsi_dri.so (+0x468eff) (0x046ecd70) 6 0x06d6893d in radeonsi_dri.so (+0x46893c) (0x046ecd70) 7 0x06c2981b in radeonsi_dri.so (+0x32981a) (0x046ecd70) 8 0x06c25846 in radeonsi_dri.so (+0x325845) (0x046ecce8) 9 0x05f3a722 in libgl.so.1 (+0x43721) (0x0463d100) 10 0x05f0fa42 in libgl.so.1 (+0x18a41) (0x0463abd8) 11 0x05f0b60b in libgl.so.1 (+0x1460a) (0x04b5f014) 12 0x05f0b784 glXChooseVisual+0x63() in libgl.so.1 (0x04b5f014) 13 0x059bd17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b5f0e8) 14 0x059bebd7 init_opengl+0xfbe(once=0x5a1be38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b5f2f8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b5f348) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b5f378) 17 0x059bf052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b5f3a8) 18 0x059c70e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b5f3c8) 19 0x059b1e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x646c030, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b5f3f8) 20 0x0514a459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b5f428) 21 0x04cb0c8b wined3d_adapter_init+0xe0(adapter=0x6468aa8, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b5f858) 22 0x04cb16bd wined3d_init+0xa5(wined3d=0x6468a98, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b5f888) 23 0x04d37b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b5f8e8) 24 0x04be372a ddraw_init+0xda(ddraw=0x64689e0, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04b5fac8) 25 0x04bf6d86 DDRAW_Create+0x163(guid=(nil), DD=0x4b5fba8, UnkOuter=(nil), iid=0x4c23db4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b5fb28) 26 0x04bf6f55 DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b5fb68) 27 0x04b750c6 d3drm1_CreateDeviceFromClipper+0xe6(iface=0x6468988, clipper=0x64689b8, guid=0x4b5fc3c, width=, height=, device=0x4b5fc28) [/home/austin/wine-valgrind/dlls/d3drm/d3drm.c:378] in d3drm (0x04b5fbd8) 28 0x04a2d256 test_Device+0x1d4() [/home/austin/wine-valgrind/dlls/d3drm/tests/d3drm.c:2614] in d3drm_test (0x04b5fcb8) 29 0x04a45294 func_d3drm+0x23() [/home/austin/wine-valgrind/dlls/d3drm/tests/d3drm.c:6545] in d3drm_test (0x04b5fcc8) 30 0x04a4811e run_test+0x96(name="d3drm") [/home/austin/wine-valgrind/dlls/d3drm/tests/../../../include/wine/test.h:589] in d3drm_test (0x04b5fd08) 31 0x04a4854a main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3drm/tests/../../../include/wine/test.h:671] in d3drm_test (0x04b5fdd8) 32 0x04a485d7 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3drm_test (0x04b5fe18) 33 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b5fe38) 34 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b5fe88) 35 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b5fea8) 36 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b5ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b5ff98) 37 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b5ffb8) 38 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b5ffe8) 39 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 40 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b60000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeac5298) 41 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeac5318) 42 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeac61c8) 43 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeac6208) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeac6744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeac6258) 45 0x7c000f80 main+0x145(argc=, argv=0xfeac6744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeac6698) 46 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06f8a77c: repe Modules: Module Address Debug info Name (121 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a5c000 Dwarf d3drm_test \-PE 4a10000- 4a5c000 \ d3drm_test ELF 4b60000- 4bc1000 Dwarf d3drm \-PE 4b70000- 4bc1000 \ d3drm ELF 4bc1000- 4c40000 Dwarf ddraw \-PE 4bd0000- 4c40000 \ ddraw ELF 4c40000- 4d9e000 Dwarf wined3d \-PE 4c50000- 4d9e000 \ wined3d ELF 509e000- 51e2000 Dwarf gdi32 \-PE 50b0000- 51e2000 \ gdi32 ELF 51e2000- 5263000 Deferred advapi32 \-PE 51f0000- 5263000 \ advapi32 ELF 5263000- 53d7000 Deferred user32 \-PE 5280000- 53d7000 \ user32 ELF 54d7000- 54f2000 Deferred version \-PE 54e0000- 54f2000 \ version ELF 5556000- 560e000 Deferred libfreetype.so.6 ELF 5816000- 582d000 Deferred libz.so.1 ELF 5835000- 5847000 Deferred libbz2.so.1 ELF 584f000- 588d000 Deferred libpng16.so.16 ELF 5891000- 58ce000 Deferred libfontconfig.so.1 ELF 58d6000- 5900000 Deferred libexpat.so.1 ELF 5904000- 5910000 Deferred libxcursor.so.1 ELF 5914000- 591b000 Deferred libxfixes.so.3 ELF 5931000- 5934000 Deferred libxshmfence.so.1 ELF 5952000- 5977000 Deferred imm32 \-PE 5960000- 5977000 \ imm32 ELF 597f000- 5a1f000 Dwarf winex11 \-PE 5990000- 5a1f000 \ winex11 ELF 5a2b000- 5a2f000 Deferred libxinerama.so.1 ELF 5a2f000- 5a35000 Deferred libxxf86vm.so.1 ELF 5a39000- 5a45000 Deferred libxrender.so.1 ELF 5a49000- 5a56000 Deferred libxrandr.so.2 ELF 5a5a000- 5a5e000 Deferred libxcomposite.so.1 ELF 5a77000- 5a8a000 Deferred libxext.so.6 ELF 5a92000- 5be3000 Deferred libx11.so.6 ELF 5cef000- 5d1b000 Deferred libxcb.so.1 ELF 5d23000- 5d27000 Deferred libxau.so.6 ELF 5d2b000- 5d32000 Deferred libxdmcp.so.6 ELF 5d36000- 5d52000 Deferred libbsd.so.0 ELF 5da2000- 5db5000 Deferred libxi.so.6 ELF 5e03000- 5e06000 Deferred libx11-xcb.so.1 ELF 5e8a000- 5e90000 Deferred libtxc_dxtn.so ELF 5ec3000- 5eeb000 Deferred libudev.so.1 ELF 5ef7000- 5f6e000 Dwarf libgl.so.1 ELF 5f6e000- 5f72000 Deferred libxcb-dri3.so.0 ELF 5f76000- 5f7a000 Deferred libxcb-present.so.0 ELF 5f7a000- 5f82000 Deferred libxcb-sync.so.1 ELF 5f86000- 5fbd000 Deferred libglapi.so.0 ELF 5fc1000- 5fc5000 Deferred libxdamage.so.1 ELF 5fc9000- 5fe6000 Deferred libxcb-glx.so.0 ELF 5fea000- 5ff0000 Deferred libxcb-dri2.so.0 ELF 5ff0000- 6002000 Deferred libdrm.so.2 ELF 607a000- 60ba000 Deferred libnettle.so.6 ELF 60ba000- 60df000 Deferred libdrm_intel.so.1 ELF 60df000- 60e9000 Deferred libdrm_nouveau.so.2 ELF 6900000- 75c2000 Dwarf radeonsi_dri.so ELF 77b6000- 77c4000 Deferred libdrm_radeon.so.1 ELF 77c4000- 77cf000 Deferred libdrm_amdgpu.so.1 ELF 77cf000- 77ec000 Deferred libelf.so.1 ELF 77f4000- 78bc000 Deferred libllvmipo.so.3.7 ELF 80d6000- 8245000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8549000- 85f1000 Deferred libllvmvectorize.so.3.7 ELF 8601000- 8604000 Deferred libllvmamdgpuutils.so.3.7 ELF 860c000- 860f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 860f000- 8639000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8918000- 8972000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8972000- 8a3e000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a3e000- 8a7a000 Deferred libllvmbitwriter.so.3.7 ELF 8a7a000- 8be2000 Deferred libllvmx86disassembler.so.3.7 ELF 8be2000- 8c85000 Deferred libllvmx86asmparser.so.3.7 ELF 931d000- 95a3000 Deferred libllvmx86codegen.so.3.7 ELF 95a3000- 9671000 Deferred libllvmasmprinter.so.3.7 ELF 9679000- 9682000 Deferred libllvmmcdisassembler.so.3.7 ELF 9686000- 9689000 Deferred libllvmx86info.so.3.7 ELF 968d000- 9699000 Deferred libllvmx86utils.so.3.7 ELF 9de6000- 9e1d000 Deferred libllvmipa.so.3.7 ELF 9fe3000- a2ec000 Deferred libllvmselectiondag.so.3.7 ELF a807000- a817000 Deferred libllvmmcjit.so.3.7 ELF aa89000- af77000 Deferred libllvmcodegen.so.3.7 ELF af77000- b239000 Deferred libllvmscalaropts.so.3.7 ELF b633000- b674000 Deferred libllvmprofiledata.so.3.7 ELF b674000- b71c000 Deferred libllvminstrumentation.so.3.7 ELF b71c000- b730000 Deferred libllvmtarget.so.3.7 ELF b840000- b92f000 Deferred libllvminstcombine.so.3.7 ELF b92f000- b97a000 Deferred libllvmx86asmprinter.so.3.7 ELF b97a000- b9a4000 Deferred libllvmexecutionengine.so.3.7 ELF c148000- c1c6000 Deferred libllvmruntimedyld.so.3.7 ELF c5c9000- c72f000 Deferred libllvmtransformutils.so.3.7 ELF c92f000- c94b000 Deferred libgcc_s.so.1 ELF c94b000- c956000 Deferred libpciaccess.so.0 ELF caff000- cc5c000 Deferred libllvmx86desc.so.3.7 ELF cc5c000- cf49000 Deferred libllvmanalysis.so.3.7 ELF d257000- d2fe000 Deferred libllvmobject.so.3.7 ELF d3fe000- d43b000 Deferred libllvmmcparser.so.3.7 ELF d43b000- d48c000 Deferred libllvmbitreader.so.3.7 ELF d48c000- d54b000 Deferred libllvmmc.so.3.7 ELF d64b000- d6a9000 Deferred libncurses.so.6 ELF dc29000- df8f000 Deferred libllvmcore.so.3.7 ELF e08f000- e1ac000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000190 (D) Z:\home\austin\wine-valgrind\dlls\d3drm\tests\d3drm_test.exe 00000191 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26748== 20 bytes in 1 blocks are definitely lost in loss record 236 of 1,455 ==26748== at 0x7BC5067C: notify_alloc (heap.c:254) ==26748== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26748== by 0x4BDF679: DirectDrawCreateClipper (ddraw.c:3259) ==26748== by 0x4A2D15D: test_Device (d3drm.c:2607) ==26748== by 0x4A45293: func_d3drm (d3drm.c:6545) ==26748== by 0x4A4811D: run_test (test.h:589) ==26748== by 0x4A48549: main (test.h:671) ==26748== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DirectDrawCreateClipper fun:test_Device fun:func_d3drm fun:run_test fun:main } ==26748== 28 bytes in 1 blocks are definitely lost in loss record 481 of 1,455 ==26748== at 0x7BC5067C: notify_alloc (heap.c:254) ==26748== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26748== by 0x4B7AAEE: Direct3DRMCreate (d3drm.c:2039) ==26748== by 0x4A2D10D: test_Device (d3drm.c:2604) ==26748== by 0x4A45293: func_d3drm (d3drm.c:6545) ==26748== by 0x4A4811D: run_test (test.h:589) ==26748== by 0x4A48549: main (test.h:671) ==26748== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DRMCreate fun:test_Device fun:func_d3drm fun:run_test fun:main } ==26748== 164 bytes in 1 blocks are definitely lost in loss record 1,181 of 1,455 ==26748== at 0x7BC5067C: notify_alloc (heap.c:254) ==26748== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26748== by 0x4BF6D1F: DDRAW_Create (main.c:267) ==26748== by 0x4BF6F54: DirectDrawCreate (main.c:309) ==26748== by 0x4B750C5: d3drm1_CreateDeviceFromClipper (d3drm.c:378) ==26748== by 0x4A2D255: test_Device (d3drm.c:2614) ==26748== by 0x4A45293: func_d3drm (d3drm.c:6545) ==26748== by 0x4A4811D: run_test (test.h:589) ==26748== by 0x4A48549: main (test.h:671) ==26748== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DDRAW_Create fun:DirectDrawCreate fun:d3drm1_CreateDeviceFromClipper fun:test_Device fun:func_d3drm fun:run_test fun:main } Makefile:172: recipe for target 'd3drm.ok' failed make[1]: *** [d3drm.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3drm.dll -p d3drm_test.exe.so vector && touch vector.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3drm/tests' Makefile:6811: recipe for target 'dlls/d3drm/tests/test' failed make: *** [dlls/d3drm/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3dx10_43/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3dx10_43.dll -p d3dx10_43_test.exe.so d3dx10 && touch d3dx10.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x69c577c (thread 0197), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x069c577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:069c577c ESP:04b0d6c0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06dff000 ECX:047213e0 EDX:00200000 ESI:046aa758 EDI:047213e0 Stack dump: 0x04b0d6c0: 04b0d6fc 0471ad2c 00000003 00000002 0x04b0d6d0: 00007f30 00007f44 00000082 00007f4c 0x04b0d6e0: 00800000 00000000 00007f24 00007f28 0x04b0d6f0: 00007f2c 00000000 046a9f38 00007f54 0x04b0d700: 00000000 00000000 00000000 00000000 0x04b0d710: 00000000 00000000 00000000 f612bc00 Backtrace: =>0 0x069c577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x069abfab in radeonsi_dri.so (+0x670faa) (0x046a92d0) 2 0x069ac332 in radeonsi_dri.so (+0x671331) (0x04b0d858) 3 0x06a2c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0d858) 4 0x0636b6fc in radeonsi_dri.so (+0x306fb) (0x046a5d10) 5 0x067a3f00 in radeonsi_dri.so (+0x468eff) (0x046a5d10) 6 0x067a393d in radeonsi_dri.so (+0x46893c) (0x046a5d10) 7 0x0666481b in radeonsi_dri.so (+0x32981a) (0x046a5d10) 8 0x06660846 in radeonsi_dri.so (+0x325845) (0x046a5c88) 9 0x05d0f722 in libgl.so.1 (+0x43721) (0x045f60a0) 10 0x05ce4a42 in libgl.so.1 (+0x18a41) (0x045f3b78) 11 0x05ce060b in libgl.so.1 (+0x1460a) (0x04b0e314) 12 0x05ce0784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0e314) 13 0x0598817f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0e3e8) 14 0x05989bd7 init_opengl+0xfbe(once=0x59e6e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0e5f8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0e648) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0e678) 17 0x0598a052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0e6a8) 18 0x059920e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0e6c8) 19 0x0597ce47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f93d8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0e6f8) 20 0x050e4459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0e728) 21 0x04c46c8b wined3d_adapter_init+0xe0(adapter=0x48f5e50, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0eb58) 22 0x04c476bd wined3d_init+0xa5(wined3d=0x48f5e40, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0eb88) 23 0x04ccdb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0ebe8) 24 0x04bc158a dxgi_factory_init+0x44(factory=0x48f5e10, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b0ec18) 25 0x04bc1622 dxgi_factory_create+0x51(riid=0x5c6d908, factory=0x4b0ece0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b0ec68) 26 0x04bbfc11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b0eca8) 27 0x05c4d3f3 D3D10CreateDevice+0x1a0(adapter=(nil), driver_type=, swrast=(nil), flags=, sdk_version=, device=0x4b0edf0) [/home/austin/wine-valgrind/dlls/d3d10/d3d10_main.c:51] in d3d10 (0x04b0edb8) 28 0x04825f90 create_device+0x95() [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/d3dx10.c:54] in d3dx10_43_test (0x04b0ee08) 29 0x04826022 test_D3DX10UnsetAllDeviceObjects+0x26() [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/d3dx10.c:192] in d3dx10_43_test (0x04b0fcb8) 30 0x0482a793 func_d3dx10+0xa() [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/d3dx10.c:793] in d3dx10_43_test (0x04b0fcc8) 31 0x0482b548 run_test+0x96(name="d3dx10") [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/../../../include/wine/test.h:589] in d3dx10_43_test (0x04b0fd08) 32 0x0482b973 main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/../../../include/wine/test.h:671] in d3dx10_43_test (0x04b0fdd8) 33 0x0482ba04 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx10_43_test (0x04b0fe18) 34 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 35 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 36 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 37 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 38 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 39 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfebce288) 42 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfebce308) 43 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfebcf1b8) 44 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfebcf1f8) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfebcf734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfebcf248) 46 0x7c000f80 main+0x145(argc=, argv=0xfebcf734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfebcf688) 47 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069c577c: repe Modules: Module Address Debug info Name (129 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4831000 Dwarf d3dx10_43_test \-PE 4820000- 4831000 \ d3dx10_43_test ELF 4844000- 485a000 Deferred d3d10_1 \-PE 4850000- 485a000 \ d3d10_1 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4b2e000 Deferred d3dx10_43 \-PE 4b20000- 4b2e000 \ d3dx10_43 ELF 4b2e000- 4b44000 Deferred d3d10core \-PE 4b30000- 4b44000 \ d3d10core ELF 4b44000- 4bab000 Deferred d3d11 \-PE 4b50000- 4bab000 \ d3d11 ELF 4bab000- 4bd6000 Dwarf dxgi \-PE 4bb0000- 4bd6000 \ dxgi ELF 4bd6000- 4d34000 Dwarf wined3d \-PE 4bf0000- 4d34000 \ wined3d ELF 5038000- 517c000 Dwarf gdi32 \-PE 5040000- 517c000 \ gdi32 ELF 5188000- 5209000 Deferred advapi32 \-PE 51a0000- 5209000 \ advapi32 ELF 5215000- 5389000 Deferred user32 \-PE 5230000- 5389000 \ user32 ELF 5495000- 54b0000 Deferred version \-PE 54a0000- 54b0000 \ version ELF 54b8000- 553c000 Deferred d3dcompiler_43 \-PE 54c0000- 553c000 \ d3dcompiler_43 ELF 55a0000- 5658000 Deferred libfreetype.so.6 ELF 565c000- 5668000 Deferred libxcursor.so.1 ELF 566c000- 5673000 Deferred libxfixes.so.3 ELF 56aa000- 56cf000 Deferred imm32 \-PE 56b0000- 56cf000 \ imm32 ELF 56e3000- 56e7000 Deferred libxinerama.so.1 ELF 56eb000- 56f1000 Deferred libxxf86vm.so.1 ELF 56f5000- 5701000 Deferred libxrender.so.1 ELF 5705000- 5712000 Deferred libxrandr.so.2 ELF 5716000- 571a000 Deferred libxcomposite.so.1 ELF 572f000- 5742000 Deferred libxext.so.6 ELF 574e000- 5752000 Deferred libxau.so.6 ELF 585c000- 5873000 Deferred libz.so.1 ELF 587b000- 588d000 Deferred libbz2.so.1 ELF 5891000- 58cf000 Deferred libpng16.so.16 ELF 58d7000- 5914000 Deferred libfontconfig.so.1 ELF 591c000- 5946000 Deferred libexpat.so.1 ELF 594a000- 59ea000 Dwarf winex11 \-PE 5950000- 59ea000 \ winex11 ELF 59ea000- 5b3b000 Deferred libx11.so.6 ELF 5b3b000- 5b67000 Deferred libxcb.so.1 ELF 5b67000- 5b6e000 Deferred libxdmcp.so.6 ELF 5b6e000- 5b8a000 Deferred libbsd.so.0 ELF 5b95000- 5b99000 Deferred libxcb-dri3.so.0 ELF 5b99000- 5b9d000 Deferred libxcb-present.so.0 ELF 5b9d000- 5ba5000 Deferred libxcb-sync.so.1 ELF 5ba9000- 5bac000 Deferred libxshmfence.so.1 ELF 5bb4000- 5bb8000 Deferred libxdamage.so.1 ELF 5bbc000- 5bbf000 Deferred libx11-xcb.so.1 ELF 5bc3000- 5bc9000 Deferred libxcb-dri2.so.0 ELF 5bd6000- 5be9000 Deferred libxi.so.6 ELF 5bf5000- 5bfb000 Deferred libtxc_dxtn.so ELF 5c3a000- 5c80000 Dwarf d3d10 \-PE 5c40000- 5c80000 \ d3d10 ELF 5c9c000- 5cc4000 Deferred libudev.so.1 ELF 5ccc000- 5d43000 Dwarf libgl.so.1 ELF 5e43000- 5e7a000 Deferred libglapi.so.0 ELF 5e7a000- 5e97000 Deferred libxcb-glx.so.0 ELF 5e97000- 5ea9000 Deferred libdrm.so.2 ELF 5f0d000- 5f4d000 Deferred libnettle.so.6 ELF 5f51000- 5f76000 Deferred libdrm_intel.so.1 ELF 5f7e000- 5f88000 Deferred libdrm_nouveau.so.2 ELF 5f8c000- 5f9a000 Deferred libdrm_radeon.so.1 ELF 5f9e000- 5fa9000 Deferred libdrm_amdgpu.so.1 ELF 5fad000- 5fca000 Deferred libelf.so.1 ELF 5fde000- 6038000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 6038000- 603b000 Deferred libllvmamdgpuutils.so.3.7 ELF 633b000- 6ffd000 Dwarf radeonsi_dri.so ELF 7b11000- 7c80000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7f80000- 8048000 Deferred libllvmipo.so.3.7 ELF 8048000- 804b000 Deferred libllvmamdgpuinfo.so.3.7 ELF 804b000- 8075000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 807d000- 8080000 Deferred libllvmx86info.so.3.7 ELF 8453000- 84fb000 Deferred libllvmvectorize.so.3.7 ELF 84fb000- 85c7000 Deferred libllvmamdgpudesc.so.3.7 ELF 85c7000- 8603000 Deferred libllvmbitwriter.so.3.7 ELF 8603000- 876b000 Deferred libllvmx86disassembler.so.3.7 ELF 876f000- 8812000 Deferred libllvmx86asmparser.so.3.7 ELF 8826000- 88f4000 Deferred libllvmasmprinter.so.3.7 ELF 8d58000- 8fde000 Deferred libllvmx86codegen.so.3.7 ELF 8fe2000- 9023000 Deferred libllvmprofiledata.so.3.7 ELF 9043000- 907a000 Deferred libllvmipa.so.3.7 ELF 9086000- 908f000 Deferred libllvmmcdisassembler.so.3.7 ELF 909b000- 90a7000 Deferred libllvmx86utils.so.3.7 ELF 90af000- 90bf000 Deferred libllvmmcjit.so.3.7 ELF 9921000- 994b000 Deferred libllvmexecutionengine.so.3.7 ELF 9b1e000- 9e27000 Deferred libllvmselectiondag.so.3.7 ELF a4c4000- a9b2000 Deferred libllvmcodegen.so.3.7 ELF aab2000- ad74000 Deferred libllvmscalaropts.so.3.7 ELF ae74000- ae88000 Deferred libllvmtarget.so.3.7 ELF b16e000- b25d000 Deferred libllvminstcombine.so.3.7 ELF b47b000- b4c6000 Deferred libllvmx86asmprinter.so.3.7 ELF b4d6000- b4e1000 Deferred libpciaccess.so.0 ELF ba83000- bb2b000 Deferred libllvminstrumentation.so.3.7 ELF c104000- c26a000 Deferred libllvmtransformutils.so.3.7 ELF c26a000- c3c7000 Deferred libllvmx86desc.so.3.7 ELF c3c7000- c445000 Deferred libllvmruntimedyld.so.3.7 ELF c445000- c482000 Deferred libllvmmcparser.so.3.7 ELF c482000- c49e000 Deferred libgcc_s.so.1 ELF c63a000- c927000 Deferred libllvmanalysis.so.3.7 ELF cc27000- ccce000 Deferred libllvmobject.so.3.7 ELF ccce000- cd1f000 Deferred libllvmbitreader.so.3.7 ELF cf35000- cff4000 Deferred libllvmmc.so.3.7 ELF d1f4000- d252000 Deferred libncurses.so.6 ELF d707000- da6d000 Deferred libllvmcore.so.3.7 ELF db6d000- dc8a000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000196 (D) Z:\home\austin\wine-valgrind\dlls\d3dx10_43\tests\d3dx10_43_test.exe 00000197 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:171: recipe for target 'd3dx10.ok' failed make[1]: *** [d3dx10.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3dx10_43/tests' Makefile:7048: recipe for target 'dlls/d3dx10_43/tests/test' failed make: *** [dlls/d3dx10_43/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3dx11_43/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3dx11_43.dll -p d3dx11_43_test.exe.so d3dx11 && touch d3dx11.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3dx11_43/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3dx9_36/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so asm && touch asm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so core && touch core.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x702477c (thread 019f), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0702477c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0702477c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:0745e000 ECX:047915d0 EDX:00200000 ESI:0471a948 EDI:047915d0 Stack dump: 0x04c4e690: 04c4e6cc 0478af1c 00000003 00000002 0x04c4e6a0: 00007f30 00007f44 00000082 00007f4c 0x04c4e6b0: 00800000 00000000 00007f24 00007f28 0x04c4e6c0: 00007f2c 00000000 0471a128 00007f54 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 0b53d100 Backtrace: =>0 0x0702477c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0700afab in radeonsi_dri.so (+0x670faa) (0x047194c0) 2 0x0700b332 in radeonsi_dri.so (+0x671331) (0x04c4e828) 3 0x0708b6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069ca6fc in radeonsi_dri.so (+0x306fb) (0x04715f00) 5 0x06e02f00 in radeonsi_dri.so (+0x468eff) (0x04715f00) 6 0x06e0293d in radeonsi_dri.so (+0x46893c) (0x04715f00) 7 0x06cc381b in radeonsi_dri.so (+0x32981a) (0x04715f00) 8 0x06cbf846 in radeonsi_dri.so (+0x325845) (0x04715e78) 9 0x064eb722 in libgl.so.1 (+0x43721) (0x04666290) 10 0x064c0a42 in libgl.so.1 (+0x18a41) (0x04663d68) 11 0x064bc60b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x064bc784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f7417f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f75bd7 init_opengl+0xfbe(once=0x5fd2e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f76052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f7e0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f68e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019a0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054cf459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056c2c8b wined3d_adapter_init+0xe0(adapter=0x48fe418, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb28) 22 0x056c36bd wined3d_init+0xa5(wined3d=0x48fe408, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb58) 23 0x05749b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fbb8) 24 0x05632653 d3d9_init+0x4d(d3d9=0x48fe3e8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05623e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04a22556 func_core+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/core.c:1235] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8c1a run_test+0x96(name="core") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab9046 main+0x245(argc=, argv=0x48d1df8) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfee2f288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfee2f308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfee301b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfee301f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfee30734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfee30248) 42 0x7c000f80 main+0x145(argc=, argv=0xfee30734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfee30688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0702477c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4dac000 Deferred d3dxof \-PE 4d90000- 4dac000 \ d3dxof ELF 4dac000- 4f2e000 Deferred ole32 \-PE 4dc0000- 4f2e000 \ ole32 ELF 512e000- 51af000 Deferred advapi32 \-PE 5140000- 51af000 \ advapi32 ELF 51af000- 5323000 Deferred user32 \-PE 51c0000- 5323000 \ user32 ELF 5423000- 5567000 Dwarf gdi32 \-PE 5430000- 5567000 \ gdi32 ELF 5567000- 5582000 Deferred version \-PE 5570000- 5582000 \ version ELF 5582000- 560f000 Deferred rpcrt4 \-PE 5590000- 560f000 \ rpcrt4 ELF 560f000- 5652000 Dwarf d3d9 \-PE 5620000- 5652000 \ d3d9 ELF 5652000- 57b0000 Dwarf wined3d \-PE 5660000- 57b0000 \ wined3d ELF 5b10000- 5bc8000 Deferred libfreetype.so.6 ELF 5dcc000- 5de3000 Deferred libz.so.1 ELF 5deb000- 5dfd000 Deferred libbz2.so.1 ELF 5e01000- 5e3f000 Deferred libpng16.so.16 ELF 5e47000- 5e84000 Deferred libfontconfig.so.1 ELF 5e8c000- 5eb6000 Deferred libexpat.so.1 ELF 5eba000- 5ec6000 Deferred libxcursor.so.1 ELF 5eca000- 5ed1000 Deferred libxfixes.so.3 ELF 5edd000- 5ee0000 Deferred libxshmfence.so.1 ELF 5eed000- 5ef0000 Deferred libx11-xcb.so.1 ELF 5f09000- 5f2e000 Deferred imm32 \-PE 5f10000- 5f2e000 \ imm32 ELF 5f36000- 5fd6000 Dwarf winex11 \-PE 5f40000- 5fd6000 \ winex11 ELF 5fe6000- 5fea000 Deferred libxinerama.so.1 ELF 5fee000- 5ff4000 Deferred libxxf86vm.so.1 ELF 5ff8000- 6004000 Deferred libxrender.so.1 ELF 6008000- 6015000 Deferred libxrandr.so.2 ELF 6019000- 601d000 Deferred libxcomposite.so.1 ELF 602e000- 6041000 Deferred libxext.so.6 ELF 6045000- 6196000 Deferred libx11.so.6 ELF 629a000- 62c6000 Deferred libxcb.so.1 ELF 62ce000- 62d2000 Deferred libxau.so.6 ELF 62d6000- 62dd000 Deferred libxdmcp.so.6 ELF 62dd000- 62f9000 Deferred libbsd.so.0 ELF 630d000- 6310000 Deferred libllvmamdgpuutils.so.3.7 ELF 6349000- 635c000 Deferred libxi.so.6 ELF 6370000- 6374000 Deferred libxcb-dri3.so.0 ELF 6378000- 637c000 Deferred libxcb-present.so.0 ELF 637c000- 6384000 Deferred libxcb-sync.so.1 ELF 638c000- 6390000 Deferred libxdamage.so.1 ELF 6390000- 63ad000 Deferred libxcb-glx.so.0 ELF 6480000- 64a8000 Deferred libudev.so.1 ELF 64a8000- 651f000 Dwarf libgl.so.1 ELF 651f000- 6556000 Deferred libglapi.so.0 ELF 6556000- 655c000 Deferred libxcb-dri2.so.0 ELF 655c000- 656e000 Deferred libdrm.so.2 ELF 6586000- 6590000 Deferred libdrm_nouveau.so.2 ELF 699a000- 765c000 Dwarf radeonsi_dri.so ELF 7850000- 785b000 Deferred libdrm_amdgpu.so.1 ELF 7f84000- 7f8a000 Deferred libtxc_dxtn.so ELF 7fbc000- 7ffc000 Deferred libnettle.so.6 ELF 7ffc000- 8021000 Deferred libdrm_intel.so.1 ELF 8021000- 802f000 Deferred libdrm_radeon.so.1 ELF 802f000- 804c000 Deferred libelf.so.1 ELF 8050000- 81bf000 Deferred libllvmamdgpucodegen.so.3.7 ELF 85d6000- 869e000 Deferred libllvmipo.so.3.7 ELF 8866000- 890e000 Deferred libllvmvectorize.so.3.7 ELF 8916000- 8970000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8974000- 8a40000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a44000- 8a47000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a4b000- 8a75000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8a79000- 8ab5000 Deferred libllvmbitwriter.so.3.7 ELF 8ab9000- 8c21000 Deferred libllvmx86disassembler.so.3.7 ELF 8c25000- 8cc8000 Deferred libllvmx86asmparser.so.3.7 ELF 8dec000- 8e2d000 Deferred libllvmprofiledata.so.3.7 ELF 8e59000- 8e62000 Deferred libllvmmcdisassembler.so.3.7 ELF 92b7000- 953d000 Deferred libllvmx86codegen.so.3.7 ELF 953d000- 960b000 Deferred libllvmasmprinter.so.3.7 ELF 960f000- 9612000 Deferred libllvmx86info.so.3.7 ELF 961a000- 9626000 Deferred libllvmx86utils.so.3.7 ELF 9e80000- 9eb7000 Deferred libllvmipa.so.3.7 ELF a07d000- a386000 Deferred libllvmselectiondag.so.3.7 ELF a7a1000- a7b1000 Deferred libllvmmcjit.so.3.7 ELF aa23000- af11000 Deferred libllvmcodegen.so.3.7 ELF af11000- b1d3000 Deferred libllvmscalaropts.so.3.7 ELF b2d3000- b2e7000 Deferred libllvmtarget.so.3.7 ELF b5cd000- b6bc000 Deferred libllvminstcombine.so.3.7 ELF b8da000- b982000 Deferred libllvminstrumentation.so.3.7 ELF b982000- b9cd000 Deferred libllvmx86asmprinter.so.3.7 ELF b9cd000- b9f7000 Deferred libllvmexecutionengine.so.3.7 ELF b9f7000- ba75000 Deferred libllvmruntimedyld.so.3.7 ELF c11f000- c15c000 Deferred libllvmmcparser.so.3.7 ELF c18c000- c197000 Deferred libpciaccess.so.0 ELF c563000- c6c9000 Deferred libllvmtransformutils.so.3.7 ELF c7c9000- c926000 Deferred libllvmx86desc.so.3.7 ELF c926000- c9cd000 Deferred libllvmobject.so.3.7 ELF c9cd000- c9e9000 Deferred libgcc_s.so.1 ELF cb99000- ce86000 Deferred libllvmanalysis.so.3.7 ELF d494000- d4e5000 Deferred libllvmbitreader.so.3.7 ELF d4e5000- d5a4000 Deferred libllvmmc.so.3.7 ELF d7a4000- d802000 Deferred libncurses.so.6 ELF db66000- decc000 Deferred libllvmcore.so.3.7 ELF dfcc000- e0e9000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000019e (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 0000019f 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26840== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,462 ==26840== at 0x7BC5067C: notify_alloc (heap.c:254) ==26840== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26840== by 0x5623E46: Direct3DCreate9 (d3d9_main.c:42) ==26840== by 0x4A22555: func_core (core.c:1235) ==26840== by 0x4AB8C19: run_test (test.h:589) ==26840== by 0x4AB9045: main (test.h:671) ==26840== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_core fun:run_test fun:main } ==26840== 13,240 bytes in 1 blocks are possibly lost in loss record 1,446 of 1,462 ==26840== at 0x7BC5067C: notify_alloc (heap.c:254) ==26840== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26840== by 0x5749AF8: wined3d_create (wined3d_main.c:101) ==26840== by 0x5632652: d3d9_init (directx.c:679) ==26840== by 0x5623E69: Direct3DCreate9 (d3d9_main.c:45) ==26840== by 0x4A22555: func_core (core.c:1235) ==26840== by 0x4AB8C19: run_test (test.h:589) ==26840== by 0x4AB9045: main (test.h:671) ==26840== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_core fun:run_test fun:main } Makefile:218: recipe for target 'core.ok' failed make[1]: *** [core.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so effect && touch effect.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x703f77c (thread 01a3), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0703f77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0703f77c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07479000 ECX:047915d8 EDX:00200000 ESI:0471a950 EDI:047915d8 Stack dump: 0x04c4e690: 04c4e6cc 0478af24 00000003 00000002 0x04c4e6a0: 00007f30 00007f44 00000082 00007f4c 0x04c4e6b0: 00800000 00000000 00007f24 00007f28 0x04c4e6c0: 00007f2c 00000000 0471a130 00007f54 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 09856a00 Backtrace: =>0 0x0703f77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x07025fab in radeonsi_dri.so (+0x670faa) (0x047194c8) 2 0x07026332 in radeonsi_dri.so (+0x671331) (0x04c4e828) 3 0x070a66df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069e56fc in radeonsi_dri.so (+0x306fb) (0x04715f08) 5 0x06e1df00 in radeonsi_dri.so (+0x468eff) (0x04715f08) 6 0x06e1d93d in radeonsi_dri.so (+0x46893c) (0x04715f08) 7 0x06cde81b in radeonsi_dri.so (+0x32981a) (0x04715f08) 8 0x06cda846 in radeonsi_dri.so (+0x325845) (0x04715e80) 9 0x064fa722 in libgl.so.1 (+0x43721) (0x04666298) 10 0x064cfa42 in libgl.so.1 (+0x18a41) (0x04663d70) 11 0x064cb60b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x064cb784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f8f17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f90bd7 init_opengl+0xfbe(once=0x5fede38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f91052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f990e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f83e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019b0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056c1c8b wined3d_adapter_init+0xe0(adapter=0x48fe428, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb28) 22 0x056c26bd wined3d_init+0xa5(wined3d=0x48fe418, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb58) 23 0x05748b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fbb8) 24 0x05625653 d3d9_init+0x4d(d3d9=0x48fe3f8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05616e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04a31e1e func_effect+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/effect.c:4302] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8c1a run_test+0x96(name="effect") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab9046 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec33288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec33308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec341b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec341f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec34734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec34248) 42 0x7c000f80 main+0x145(argc=, argv=0xfec34734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec34688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0703f77c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 5542000- 555d000 Deferred version \-PE 5550000- 555d000 \ version ELF 5569000- 55f6000 Deferred rpcrt4 \-PE 5570000- 55f6000 \ rpcrt4 ELF 5602000- 5645000 Dwarf d3d9 \-PE 5610000- 5645000 \ d3d9 ELF 5651000- 57af000 Dwarf wined3d \-PE 5660000- 57af000 \ wined3d ELF 5b10000- 5b13000 Deferred libxshmfence.so.1 ELF 5b1b000- 5bd3000 Deferred libfreetype.so.6 ELF 5dd7000- 5dee000 Deferred libz.so.1 ELF 5df6000- 5e08000 Deferred libbz2.so.1 ELF 5e10000- 5e4e000 Deferred libpng16.so.16 ELF 5e52000- 5e8f000 Deferred libfontconfig.so.1 ELF 5e97000- 5ec1000 Deferred libexpat.so.1 ELF 5ec9000- 5ed5000 Deferred libxcursor.so.1 ELF 5ed9000- 5ee0000 Deferred libxfixes.so.3 ELF 5f24000- 5f49000 Deferred imm32 \-PE 5f30000- 5f49000 \ imm32 ELF 5f51000- 5ff1000 Dwarf winex11 \-PE 5f60000- 5ff1000 \ winex11 ELF 6001000- 6005000 Deferred libxinerama.so.1 ELF 6009000- 600f000 Deferred libxxf86vm.so.1 ELF 600f000- 601b000 Deferred libxrender.so.1 ELF 601f000- 602c000 Deferred libxrandr.so.2 ELF 6030000- 6034000 Deferred libxcomposite.so.1 ELF 6049000- 605c000 Deferred libxext.so.6 ELF 6060000- 61b1000 Deferred libx11.so.6 ELF 62b5000- 62e1000 Deferred libxcb.so.1 ELF 62e9000- 62ed000 Deferred libxau.so.6 ELF 62ed000- 62f4000 Deferred libxdmcp.so.6 ELF 62f8000- 6314000 Deferred libbsd.so.0 ELF 6361000- 6364000 Deferred libx11-xcb.so.1 ELF 6364000- 6377000 Deferred libxi.so.6 ELF 638b000- 638f000 Deferred libxcb-dri3.so.0 ELF 6393000- 6397000 Deferred libxcb-present.so.0 ELF 639b000- 63a3000 Deferred libxcb-sync.so.1 ELF 63ab000- 63af000 Deferred libxdamage.so.1 ELF 63b3000- 63b9000 Deferred libxcb-dri2.so.0 ELF 63c5000- 63c8000 Deferred libllvmamdgpuutils.so.3.7 ELF 648b000- 64b3000 Deferred libudev.so.1 ELF 64b7000- 652e000 Dwarf libgl.so.1 ELF 652e000- 6565000 Deferred libglapi.so.0 ELF 6565000- 6582000 Deferred libxcb-glx.so.0 ELF 6582000- 6594000 Deferred libdrm.so.2 ELF 69b5000- 7677000 Dwarf radeonsi_dri.so ELF 786b000- 7875000 Deferred libdrm_nouveau.so.2 ELF 7f9f000- 7fa5000 Deferred libtxc_dxtn.so ELF 7fd7000- 8017000 Deferred libnettle.so.6 ELF 8017000- 803c000 Deferred libdrm_intel.so.1 ELF 803c000- 804a000 Deferred libdrm_radeon.so.1 ELF 804e000- 8059000 Deferred libdrm_amdgpu.so.1 ELF 805d000- 807a000 Deferred libelf.so.1 ELF 807e000- 81ed000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8604000- 86cc000 Deferred libllvmipo.so.3.7 ELF 8894000- 893c000 Deferred libllvmvectorize.so.3.7 ELF 8944000- 899e000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a6000- 8a72000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a7a000- 8a7d000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a7d000- 8aa7000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8aab000- 8ae7000 Deferred libllvmbitwriter.so.3.7 ELF 8aeb000- 8c53000 Deferred libllvmx86disassembler.so.3.7 ELF 8c57000- 8cfa000 Deferred libllvmx86asmparser.so.3.7 ELF 8e1e000- 8e5f000 Deferred libllvmprofiledata.so.3.7 ELF 92d2000- 9558000 Deferred libllvmx86codegen.so.3.7 ELF 9558000- 9626000 Deferred libllvmasmprinter.so.3.7 ELF 9632000- 963b000 Deferred libllvmmcdisassembler.so.3.7 ELF 963f000- 9642000 Deferred libllvmx86info.so.3.7 ELF 9e9b000- 9ed2000 Deferred libllvmipa.so.3.7 ELF a098000- a3a1000 Deferred libllvmselectiondag.so.3.7 ELF a7bc000- a7c8000 Deferred libllvmx86utils.so.3.7 ELF aa3e000- af2c000 Deferred libllvmcodegen.so.3.7 ELF af2c000- b1ee000 Deferred libllvmscalaropts.so.3.7 ELF b2ee000- b2fe000 Deferred libllvmmcjit.so.3.7 ELF b5e8000- b6d7000 Deferred libllvminstcombine.so.3.7 ELF b8f5000- b99d000 Deferred libllvminstrumentation.so.3.7 ELF b99d000- b9e8000 Deferred libllvmx86asmprinter.so.3.7 ELF b9e8000- ba12000 Deferred libllvmexecutionengine.so.3.7 ELF ba12000- ba26000 Deferred libllvmtarget.so.3.7 ELF ba32000- ba6f000 Deferred libllvmmcparser.so.3.7 ELF c136000- c1b4000 Deferred libllvmruntimedyld.so.3.7 ELF c57e000- c6e4000 Deferred libllvmtransformutils.so.3.7 ELF c7e4000- c941000 Deferred libllvmx86desc.so.3.7 ELF c941000- c9e8000 Deferred libllvmobject.so.3.7 ELF c9e8000- ca04000 Deferred libgcc_s.so.1 ELF ca04000- ca0f000 Deferred libpciaccess.so.0 ELF cbb4000- cea1000 Deferred libllvmanalysis.so.3.7 ELF d4af000- d500000 Deferred libllvmbitreader.so.3.7 ELF d500000- d5bf000 Deferred libllvmmc.so.3.7 ELF d7bf000- d81d000 Deferred libncurses.so.6 ELF db81000- dee7000 Deferred libllvmcore.so.3.7 ELF dfe7000- e104000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001a2 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001a3 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26857== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,462 ==26857== at 0x7BC5067C: notify_alloc (heap.c:254) ==26857== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26857== by 0x5616E46: Direct3DCreate9 (d3d9_main.c:42) ==26857== by 0x4A31E1D: func_effect (effect.c:4302) ==26857== by 0x4AB8C19: run_test (test.h:589) ==26857== by 0x4AB9045: main (test.h:671) ==26857== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_effect fun:run_test fun:main } ==26857== 13,240 bytes in 1 blocks are possibly lost in loss record 1,446 of 1,462 ==26857== at 0x7BC5067C: notify_alloc (heap.c:254) ==26857== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26857== by 0x5748AF8: wined3d_create (wined3d_main.c:101) ==26857== by 0x5625652: d3d9_init (directx.c:679) ==26857== by 0x5616E69: Direct3DCreate9 (d3d9_main.c:45) ==26857== by 0x4A31E1D: func_effect (effect.c:4302) ==26857== by 0x4AB8C19: run_test (test.h:589) ==26857== by 0x4AB9045: main (test.h:671) ==26857== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_effect fun:run_test fun:main } Makefile:253: recipe for target 'effect.ok' failed make[1]: *** [effect.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so line && touch line.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x703f77c (thread 01a7), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0703f77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0703f77c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07479000 ECX:047915d8 EDX:00200000 ESI:0471a950 EDI:047915d8 Stack dump: 0x04c4e690: 04c4e6cc 0478af24 00000003 00000002 0x04c4e6a0: 00007f30 00007f44 00000082 00007f4c 0x04c4e6b0: 00800000 00000000 00007f24 00007f28 0x04c4e6c0: 00007f2c 00000000 0471a130 00007f54 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 d6c7e400 Backtrace: =>0 0x0703f77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x07025fab in radeonsi_dri.so (+0x670faa) (0x047194c8) 2 0x07026332 in radeonsi_dri.so (+0x671331) (0x04c4e828) 3 0x070a66df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069e56fc in radeonsi_dri.so (+0x306fb) (0x04715f08) 5 0x06e1df00 in radeonsi_dri.so (+0x468eff) (0x04715f08) 6 0x06e1d93d in radeonsi_dri.so (+0x46893c) (0x04715f08) 7 0x06cde81b in radeonsi_dri.so (+0x32981a) (0x04715f08) 8 0x06cda846 in radeonsi_dri.so (+0x325845) (0x04715e80) 9 0x064fa722 in libgl.so.1 (+0x43721) (0x04666298) 10 0x064cfa42 in libgl.so.1 (+0x18a41) (0x04663d70) 11 0x064cb60b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x064cb784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f8f17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f90bd7 init_opengl+0xfbe(once=0x5fede38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f91052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f990e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f83e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019a0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056c1c8b wined3d_adapter_init+0xe0(adapter=0x48fe418, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb28) 22 0x056c26bd wined3d_init+0xa5(wined3d=0x48fe408, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb58) 23 0x05748b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fbb8) 24 0x05625653 d3d9_init+0x4d(d3d9=0x48fe3e8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05616e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04a32f6e func_line+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/line.c:132] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8c1a run_test+0x96(name="line") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab9046 main+0x245(argc=, argv=0x48d1df8) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfed33288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfed33308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfed341b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfed341f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfed34734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfed34248) 42 0x7c000f80 main+0x145(argc=, argv=0xfed34734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfed34688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0703f77c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 5542000- 555d000 Deferred version \-PE 5550000- 555d000 \ version ELF 5569000- 55f6000 Deferred rpcrt4 \-PE 5570000- 55f6000 \ rpcrt4 ELF 5602000- 5645000 Dwarf d3d9 \-PE 5610000- 5645000 \ d3d9 ELF 5651000- 57af000 Dwarf wined3d \-PE 5660000- 57af000 \ wined3d ELF 5b10000- 5b13000 Deferred libxshmfence.so.1 ELF 5b1b000- 5bd3000 Deferred libfreetype.so.6 ELF 5dd7000- 5dee000 Deferred libz.so.1 ELF 5df6000- 5e08000 Deferred libbz2.so.1 ELF 5e10000- 5e4e000 Deferred libpng16.so.16 ELF 5e52000- 5e8f000 Deferred libfontconfig.so.1 ELF 5e97000- 5ec1000 Deferred libexpat.so.1 ELF 5ec9000- 5ed5000 Deferred libxcursor.so.1 ELF 5ed9000- 5ee0000 Deferred libxfixes.so.3 ELF 5f24000- 5f49000 Deferred imm32 \-PE 5f30000- 5f49000 \ imm32 ELF 5f51000- 5ff1000 Dwarf winex11 \-PE 5f60000- 5ff1000 \ winex11 ELF 6001000- 6005000 Deferred libxinerama.so.1 ELF 6009000- 600f000 Deferred libxxf86vm.so.1 ELF 600f000- 601b000 Deferred libxrender.so.1 ELF 601f000- 602c000 Deferred libxrandr.so.2 ELF 6030000- 6034000 Deferred libxcomposite.so.1 ELF 6049000- 605c000 Deferred libxext.so.6 ELF 6060000- 61b1000 Deferred libx11.so.6 ELF 62b5000- 62e1000 Deferred libxcb.so.1 ELF 62e9000- 62ed000 Deferred libxau.so.6 ELF 62ed000- 62f4000 Deferred libxdmcp.so.6 ELF 62f8000- 6314000 Deferred libbsd.so.0 ELF 6361000- 6364000 Deferred libx11-xcb.so.1 ELF 6364000- 6377000 Deferred libxi.so.6 ELF 638b000- 638f000 Deferred libxcb-dri3.so.0 ELF 6393000- 6397000 Deferred libxcb-present.so.0 ELF 639b000- 63a3000 Deferred libxcb-sync.so.1 ELF 63ab000- 63af000 Deferred libxdamage.so.1 ELF 63b3000- 63b9000 Deferred libxcb-dri2.so.0 ELF 63c5000- 63c8000 Deferred libllvmamdgpuutils.so.3.7 ELF 648b000- 64b3000 Deferred libudev.so.1 ELF 64b7000- 652e000 Dwarf libgl.so.1 ELF 652e000- 6565000 Deferred libglapi.so.0 ELF 6565000- 6582000 Deferred libxcb-glx.so.0 ELF 6582000- 6594000 Deferred libdrm.so.2 ELF 69b5000- 7677000 Dwarf radeonsi_dri.so ELF 786b000- 7875000 Deferred libdrm_nouveau.so.2 ELF 7f9f000- 7fa5000 Deferred libtxc_dxtn.so ELF 7fd7000- 8017000 Deferred libnettle.so.6 ELF 8017000- 803c000 Deferred libdrm_intel.so.1 ELF 803c000- 804a000 Deferred libdrm_radeon.so.1 ELF 804e000- 8059000 Deferred libdrm_amdgpu.so.1 ELF 805d000- 807a000 Deferred libelf.so.1 ELF 807e000- 81ed000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8604000- 86cc000 Deferred libllvmipo.so.3.7 ELF 8894000- 893c000 Deferred libllvmvectorize.so.3.7 ELF 8944000- 899e000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a6000- 8a72000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a7a000- 8a7d000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a7d000- 8aa7000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8aab000- 8ae7000 Deferred libllvmbitwriter.so.3.7 ELF 8aeb000- 8c53000 Deferred libllvmx86disassembler.so.3.7 ELF 8c57000- 8cfa000 Deferred libllvmx86asmparser.so.3.7 ELF 8e1e000- 8e5f000 Deferred libllvmprofiledata.so.3.7 ELF 92d2000- 9558000 Deferred libllvmx86codegen.so.3.7 ELF 9558000- 9626000 Deferred libllvmasmprinter.so.3.7 ELF 9632000- 963b000 Deferred libllvmmcdisassembler.so.3.7 ELF 963f000- 9642000 Deferred libllvmx86info.so.3.7 ELF 9e9b000- 9ed2000 Deferred libllvmipa.so.3.7 ELF a098000- a3a1000 Deferred libllvmselectiondag.so.3.7 ELF a7bc000- a7c8000 Deferred libllvmx86utils.so.3.7 ELF aa3e000- af2c000 Deferred libllvmcodegen.so.3.7 ELF af2c000- b1ee000 Deferred libllvmscalaropts.so.3.7 ELF b2ee000- b2fe000 Deferred libllvmmcjit.so.3.7 ELF b5e8000- b6d7000 Deferred libllvminstcombine.so.3.7 ELF b8f5000- b99d000 Deferred libllvminstrumentation.so.3.7 ELF b99d000- b9e8000 Deferred libllvmx86asmprinter.so.3.7 ELF b9e8000- ba12000 Deferred libllvmexecutionengine.so.3.7 ELF ba12000- ba26000 Deferred libllvmtarget.so.3.7 ELF ba32000- ba6f000 Deferred libllvmmcparser.so.3.7 ELF c136000- c1b4000 Deferred libllvmruntimedyld.so.3.7 ELF c57e000- c6e4000 Deferred libllvmtransformutils.so.3.7 ELF c7e4000- c941000 Deferred libllvmx86desc.so.3.7 ELF c941000- c9e8000 Deferred libllvmobject.so.3.7 ELF c9e8000- ca04000 Deferred libgcc_s.so.1 ELF ca04000- ca0f000 Deferred libpciaccess.so.0 ELF cbb4000- cea1000 Deferred libllvmanalysis.so.3.7 ELF d4af000- d500000 Deferred libllvmbitreader.so.3.7 ELF d500000- d5bf000 Deferred libllvmmc.so.3.7 ELF d7bf000- d81d000 Deferred libncurses.so.6 ELF db81000- dee7000 Deferred libllvmcore.so.3.7 ELF dfe7000- e104000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001a6 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001a7 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26874== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,462 ==26874== at 0x7BC5067C: notify_alloc (heap.c:254) ==26874== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26874== by 0x5616E46: Direct3DCreate9 (d3d9_main.c:42) ==26874== by 0x4A32F6D: func_line (line.c:132) ==26874== by 0x4AB8C19: run_test (test.h:589) ==26874== by 0x4AB9045: main (test.h:671) ==26874== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_line fun:run_test fun:main } ==26874== 13,240 bytes in 1 blocks are possibly lost in loss record 1,446 of 1,462 ==26874== at 0x7BC5067C: notify_alloc (heap.c:254) ==26874== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26874== by 0x5748AF8: wined3d_create (wined3d_main.c:101) ==26874== by 0x5625652: d3d9_init (directx.c:679) ==26874== by 0x5616E69: Direct3DCreate9 (d3d9_main.c:45) ==26874== by 0x4A32F6D: func_line (line.c:132) ==26874== by 0x4AB8C19: run_test (test.h:589) ==26874== by 0x4AB9045: main (test.h:671) ==26874== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_line fun:run_test fun:main } Makefile:289: recipe for target 'line.ok' failed make[1]: *** [line.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so math && touch math.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so mesh && touch mesh.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x701677c (thread 01ad), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0701677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0701677c ESP:04c4e400 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07450000 ECX:047915d0 EDX:00200000 ESI:0471a948 EDI:047915d0 Stack dump: 0x04c4e400: 04c4e43c 0478af1c 00000003 00000002 0x04c4e410: 00007f30 00007f44 00000082 00007f4c 0x04c4e420: 00800000 00000000 00007f24 00007f28 0x04c4e430: 00007f2c 00000000 0471a128 00007f54 0x04c4e440: 00000000 00000000 00000000 00000000 0x04c4e450: 00000000 00000000 00000000 2d3f1e00 Backtrace: =>0 0x0701677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06ffcfab in radeonsi_dri.so (+0x670faa) (0x047194c0) 2 0x06ffd332 in radeonsi_dri.so (+0x671331) (0x04c4e598) 3 0x0707d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e598) 4 0x069bc6fc in radeonsi_dri.so (+0x306fb) (0x04715f00) 5 0x06df4f00 in radeonsi_dri.so (+0x468eff) (0x04715f00) 6 0x06df493d in radeonsi_dri.so (+0x46893c) (0x04715f00) 7 0x06cb581b in radeonsi_dri.so (+0x32981a) (0x04715f00) 8 0x06cb1846 in radeonsi_dri.so (+0x325845) (0x04715e78) 9 0x064c9722 in libgl.so.1 (+0x43721) (0x04666290) 10 0x0649ea42 in libgl.so.1 (+0x18a41) (0x04663d68) 11 0x0649a60b in libgl.so.1 (+0x1460a) (0x04c4f054) 12 0x0649a784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f054) 13 0x05f6217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f128) 14 0x05f63bd7 init_opengl+0xfbe(once=0x5fc0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f338) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f388) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f3b8) 17 0x05f64052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f3e8) 18 0x05f6c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f408) 19 0x05f56e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x4902198, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f438) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f468) 21 0x056a9c8b wined3d_adapter_init+0xe0(adapter=0x48fec10, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4f898) 22 0x056aa6bd wined3d_init+0xa5(wined3d=0x48fec00, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4f8c8) 23 0x05730b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4f928) 24 0x05611653 d3d9_init+0x4d(d3d9=0x48febe0, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4f968) 25 0x05602e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4f9b8) 26 0x04a65809 new_test_context+0xb4() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/mesh.c:136] in d3dx9_36_test (0x04c4fa48) 27 0x04a69841 D3DXCreateMeshTest+0xf1() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/mesh.c:1216] in d3dx9_36_test (0x04c4fcb8) 28 0x04a92e7b func_mesh+0x23() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/mesh.c:11198] in d3dx9_36_test (0x04c4fcc8) 29 0x04ab8c1a run_test+0x96(name="mesh") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 30 0x04ab9046 main+0x245(argc=, argv=0x48d1df8) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 31 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 32 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 33 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 34 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 35 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 36 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 37 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea22288) 40 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea22308) 41 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea231b8) 42 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea231f8) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea23734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea23248) 44 0x7c000f80 main+0x145(argc=, argv=0xfea23734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea23688) 45 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0701677c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 553e000- 5559000 Deferred version \-PE 5540000- 5559000 \ version ELF 5559000- 55e6000 Deferred rpcrt4 \-PE 5560000- 55e6000 \ rpcrt4 ELF 55ee000- 5631000 Dwarf d3d9 \-PE 55f0000- 5631000 \ d3d9 ELF 5639000- 5797000 Dwarf wined3d \-PE 5650000- 5797000 \ wined3d ELF 5aff000- 5bb7000 Deferred libfreetype.so.6 ELF 5dbb000- 5dd2000 Deferred libz.so.1 ELF 5dda000- 5dec000 Deferred libbz2.so.1 ELF 5df0000- 5e2e000 Deferred libpng16.so.16 ELF 5e32000- 5e6f000 Deferred libfontconfig.so.1 ELF 5e77000- 5ea1000 Deferred libexpat.so.1 ELF 5ea9000- 5eb5000 Deferred libxcursor.so.1 ELF 5eb9000- 5ec0000 Deferred libxfixes.so.3 ELF 5efb000- 5f20000 Deferred imm32 \-PE 5f00000- 5f20000 \ imm32 ELF 5f24000- 5fc4000 Dwarf winex11 \-PE 5f30000- 5fc4000 \ winex11 ELF 5fd4000- 5fd8000 Deferred libxinerama.so.1 ELF 5fdc000- 5fe2000 Deferred libxxf86vm.so.1 ELF 5fe6000- 5ff2000 Deferred libxrender.so.1 ELF 5ff6000- 6003000 Deferred libxrandr.so.2 ELF 6007000- 600b000 Deferred libxcomposite.so.1 ELF 601c000- 602f000 Deferred libxext.so.6 ELF 6033000- 6184000 Deferred libx11.so.6 ELF 628c000- 62b8000 Deferred libxcb.so.1 ELF 62c0000- 62c4000 Deferred libxau.so.6 ELF 62c8000- 62cf000 Deferred libxdmcp.so.6 ELF 62cf000- 62eb000 Deferred libbsd.so.0 ELF 633b000- 634e000 Deferred libxi.so.6 ELF 636e000- 6372000 Deferred libxcb-dri3.so.0 ELF 637a000- 637e000 Deferred libxcb-present.so.0 ELF 637e000- 6386000 Deferred libxcb-sync.so.1 ELF 638a000- 638d000 Deferred libxshmfence.so.1 ELF 6391000- 6395000 Deferred libxdamage.so.1 ELF 6395000- 6398000 Deferred libx11-xcb.so.1 ELF 639c000- 639f000 Deferred libllvmamdgpuutils.so.3.7 ELF 645e000- 6486000 Deferred libudev.so.1 ELF 6486000- 64fd000 Dwarf libgl.so.1 ELF 64fd000- 6534000 Deferred libglapi.so.0 ELF 6534000- 6551000 Deferred libxcb-glx.so.0 ELF 6551000- 6557000 Deferred libxcb-dri2.so.0 ELF 6557000- 6569000 Deferred libdrm.so.2 ELF 6589000- 658c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 698c000- 764e000 Dwarf radeonsi_dri.so ELF 7842000- 784c000 Deferred libdrm_nouveau.so.2 ELF 7f72000- 7f78000 Deferred libtxc_dxtn.so ELF 7fae000- 7fee000 Deferred libnettle.so.6 ELF 7fee000- 8013000 Deferred libdrm_intel.so.1 ELF 8017000- 8025000 Deferred libdrm_radeon.so.1 ELF 8029000- 8034000 Deferred libdrm_amdgpu.so.1 ELF 8038000- 8055000 Deferred libelf.so.1 ELF 8059000- 81c8000 Deferred libllvmamdgpucodegen.so.3.7 ELF 85df000- 86a7000 Deferred libllvmipo.so.3.7 ELF 886f000- 8917000 Deferred libllvmvectorize.so.3.7 ELF 891f000- 8979000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 897d000- 8a49000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a51000- 8a7b000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8a83000- 8abf000 Deferred libllvmbitwriter.so.3.7 ELF 8ac7000- 8c2f000 Deferred libllvmx86disassembler.so.3.7 ELF 8c37000- 8cda000 Deferred libllvmx86asmparser.so.3.7 ELF 8e02000- 8e43000 Deferred libllvmprofiledata.so.3.7 ELF 8e57000- 8e5a000 Deferred libllvmx86info.so.3.7 ELF 92a9000- 952f000 Deferred libllvmx86codegen.so.3.7 ELF 952f000- 95fd000 Deferred libllvmasmprinter.so.3.7 ELF 9619000- 9622000 Deferred libllvmmcdisassembler.so.3.7 ELF 9e72000- 9ea9000 Deferred libllvmipa.so.3.7 ELF a06f000- a378000 Deferred libllvmselectiondag.so.3.7 ELF aa15000- af03000 Deferred libllvmcodegen.so.3.7 ELF af03000- b1c5000 Deferred libllvmscalaropts.so.3.7 ELF b2c5000- b2d1000 Deferred libllvmx86utils.so.3.7 ELF b5bf000- b6ae000 Deferred libllvminstcombine.so.3.7 ELF b6ae000- b6be000 Deferred libllvmmcjit.so.3.7 ELF b8cc000- b974000 Deferred libllvminstrumentation.so.3.7 ELF b974000- b9bf000 Deferred libllvmx86asmprinter.so.3.7 ELF b9bf000- b9e9000 Deferred libllvmexecutionengine.so.3.7 ELF b9e9000- b9fd000 Deferred libllvmtarget.so.3.7 ELF ba15000- ba52000 Deferred libllvmmcparser.so.3.7 ELF c10d000- c18b000 Deferred libllvmruntimedyld.so.3.7 ELF c555000- c6bb000 Deferred libllvmtransformutils.so.3.7 ELF c7bb000- c918000 Deferred libllvmx86desc.so.3.7 ELF c918000- c9bf000 Deferred libllvmobject.so.3.7 ELF c9cb000- c9e7000 Deferred libgcc_s.so.1 ELF cb8b000- ce78000 Deferred libllvmanalysis.so.3.7 ELF d486000- d4d7000 Deferred libllvmbitreader.so.3.7 ELF d4d7000- d596000 Deferred libllvmmc.so.3.7 ELF d796000- d7a1000 Deferred libpciaccess.so.0 ELF d7a5000- d803000 Deferred libncurses.so.6 ELF db58000- debe000 Deferred libllvmcore.so.3.7 ELF dfbe000- e0db000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001ac (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001ad 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26900== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,463 ==26900== at 0x7BC5067C: notify_alloc (heap.c:254) ==26900== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26900== by 0x5602E46: Direct3DCreate9 (d3d9_main.c:42) ==26900== by 0x4A65808: new_test_context (mesh.c:136) ==26900== by 0x4A69840: D3DXCreateMeshTest (mesh.c:1216) ==26900== by 0x4A92E7A: func_mesh (mesh.c:11198) ==26900== by 0x4AB8C19: run_test (test.h:589) ==26900== by 0x4AB9045: main (test.h:671) ==26900== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:new_test_context fun:D3DXCreateMeshTest fun:func_mesh fun:run_test fun:main } Makefile:359: recipe for target 'mesh.ok' failed make[1]: *** [mesh.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so shader && touch shader.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x701677c (thread 01b1), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0701677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0701677c ESP:04c4e680 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07450000 ECX:047915d0 EDX:00200000 ESI:0471a948 EDI:047915d0 Stack dump: 0x04c4e680: 04c4e6bc 0478af1c 00000003 00000002 0x04c4e690: 00007f30 00007f44 00000082 00007f4c 0x04c4e6a0: 00800000 00000000 00007f24 00007f28 0x04c4e6b0: 00007f2c 00000000 0471a128 00007f54 0x04c4e6c0: 00000000 00000000 00000000 00000000 0x04c4e6d0: 00000000 00000000 00000000 d8231900 Backtrace: =>0 0x0701677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06ffcfab in radeonsi_dri.so (+0x670faa) (0x047194c0) 2 0x06ffd332 in radeonsi_dri.so (+0x671331) (0x04c4e818) 3 0x0707d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e818) 4 0x069bc6fc in radeonsi_dri.so (+0x306fb) (0x04715f00) 5 0x06df4f00 in radeonsi_dri.so (+0x468eff) (0x04715f00) 6 0x06df493d in radeonsi_dri.so (+0x46893c) (0x04715f00) 7 0x06cb581b in radeonsi_dri.so (+0x32981a) (0x04715f00) 8 0x06cb1846 in radeonsi_dri.so (+0x325845) (0x04715e78) 9 0x064c9722 in libgl.so.1 (+0x43721) (0x04666290) 10 0x0649ea42 in libgl.so.1 (+0x18a41) (0x04663d68) 11 0x0649a60b in libgl.so.1 (+0x1460a) (0x04c4f2d4) 12 0x0649a784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2d4) 13 0x05f6217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3a8) 14 0x05f63bd7 init_opengl+0xfbe(once=0x5fc0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5b8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f608) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f638) 17 0x05f64052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f668) 18 0x05f6c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f688) 19 0x05f56e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49035f0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6b8) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6e8) 21 0x056a9c8b wined3d_adapter_init+0xe0(adapter=0x4900068, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb18) 22 0x056aa6bd wined3d_init+0xa5(wined3d=0x4900058, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb48) 23 0x05730b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fba8) 24 0x05611653 d3d9_init+0x4d(d3d9=0x4900038, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbe8) 25 0x05602e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc38) 26 0x04a9db27 test_setting_constants+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/shader.c:1464] in d3dx9_36_test (0x04c4fcb8) 27 0x04aa1597 func_shader+0x23() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/shader.c:6499] in d3dx9_36_test (0x04c4fcc8) 28 0x04ab8c1a run_test+0x96(name="shader") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 29 0x04ab9046 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 30 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 31 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 32 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 33 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 34 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 35 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 36 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 37 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 38 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe80a288) 39 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe80a308) 40 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe80b1b8) 41 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe80b1f8) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe80b734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe80b248) 43 0x7c000f80 main+0x145(argc=, argv=0xfe80b734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe80b688) 44 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0701677c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 553e000- 5559000 Deferred version \-PE 5540000- 5559000 \ version ELF 5559000- 55e6000 Deferred rpcrt4 \-PE 5560000- 55e6000 \ rpcrt4 ELF 55ee000- 5631000 Dwarf d3d9 \-PE 55f0000- 5631000 \ d3d9 ELF 5639000- 5797000 Dwarf wined3d \-PE 5650000- 5797000 \ wined3d ELF 5aff000- 5bb7000 Deferred libfreetype.so.6 ELF 5dbb000- 5dd2000 Deferred libz.so.1 ELF 5dda000- 5dec000 Deferred libbz2.so.1 ELF 5df0000- 5e2e000 Deferred libpng16.so.16 ELF 5e32000- 5e6f000 Deferred libfontconfig.so.1 ELF 5e77000- 5ea1000 Deferred libexpat.so.1 ELF 5ea9000- 5eb5000 Deferred libxcursor.so.1 ELF 5eb9000- 5ec0000 Deferred libxfixes.so.3 ELF 5efb000- 5f20000 Deferred imm32 \-PE 5f00000- 5f20000 \ imm32 ELF 5f24000- 5fc4000 Dwarf winex11 \-PE 5f30000- 5fc4000 \ winex11 ELF 5fd4000- 5fd8000 Deferred libxinerama.so.1 ELF 5fdc000- 5fe2000 Deferred libxxf86vm.so.1 ELF 5fe6000- 5ff2000 Deferred libxrender.so.1 ELF 5ff6000- 6003000 Deferred libxrandr.so.2 ELF 6007000- 600b000 Deferred libxcomposite.so.1 ELF 601c000- 602f000 Deferred libxext.so.6 ELF 6033000- 6184000 Deferred libx11.so.6 ELF 628c000- 62b8000 Deferred libxcb.so.1 ELF 62c0000- 62c4000 Deferred libxau.so.6 ELF 62c8000- 62cf000 Deferred libxdmcp.so.6 ELF 62cf000- 62eb000 Deferred libbsd.so.0 ELF 633b000- 634e000 Deferred libxi.so.6 ELF 636e000- 6372000 Deferred libxcb-dri3.so.0 ELF 637a000- 637e000 Deferred libxcb-present.so.0 ELF 637e000- 6386000 Deferred libxcb-sync.so.1 ELF 638a000- 638d000 Deferred libxshmfence.so.1 ELF 6391000- 6395000 Deferred libxdamage.so.1 ELF 6395000- 6398000 Deferred libx11-xcb.so.1 ELF 639c000- 639f000 Deferred libllvmamdgpuutils.so.3.7 ELF 645e000- 6486000 Deferred libudev.so.1 ELF 6486000- 64fd000 Dwarf libgl.so.1 ELF 64fd000- 6534000 Deferred libglapi.so.0 ELF 6534000- 6551000 Deferred libxcb-glx.so.0 ELF 6551000- 6557000 Deferred libxcb-dri2.so.0 ELF 6557000- 6569000 Deferred libdrm.so.2 ELF 6589000- 658c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 698c000- 764e000 Dwarf radeonsi_dri.so ELF 7842000- 784c000 Deferred libdrm_nouveau.so.2 ELF 7f72000- 7f78000 Deferred libtxc_dxtn.so ELF 7fae000- 7fee000 Deferred libnettle.so.6 ELF 7fee000- 8013000 Deferred libdrm_intel.so.1 ELF 8017000- 8025000 Deferred libdrm_radeon.so.1 ELF 8029000- 8034000 Deferred libdrm_amdgpu.so.1 ELF 8038000- 8055000 Deferred libelf.so.1 ELF 8059000- 81c8000 Deferred libllvmamdgpucodegen.so.3.7 ELF 85df000- 86a7000 Deferred libllvmipo.so.3.7 ELF 886f000- 8917000 Deferred libllvmvectorize.so.3.7 ELF 891f000- 8979000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 897d000- 8a49000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a51000- 8a7b000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8a83000- 8abf000 Deferred libllvmbitwriter.so.3.7 ELF 8ac7000- 8c2f000 Deferred libllvmx86disassembler.so.3.7 ELF 8c37000- 8cda000 Deferred libllvmx86asmparser.so.3.7 ELF 8e02000- 8e43000 Deferred libllvmprofiledata.so.3.7 ELF 8e57000- 8e5a000 Deferred libllvmx86info.so.3.7 ELF 92a9000- 952f000 Deferred libllvmx86codegen.so.3.7 ELF 952f000- 95fd000 Deferred libllvmasmprinter.so.3.7 ELF 9619000- 9622000 Deferred libllvmmcdisassembler.so.3.7 ELF 9e72000- 9ea9000 Deferred libllvmipa.so.3.7 ELF a06f000- a378000 Deferred libllvmselectiondag.so.3.7 ELF aa15000- af03000 Deferred libllvmcodegen.so.3.7 ELF af03000- b1c5000 Deferred libllvmscalaropts.so.3.7 ELF b2c5000- b2d1000 Deferred libllvmx86utils.so.3.7 ELF b5bf000- b6ae000 Deferred libllvminstcombine.so.3.7 ELF b6ae000- b6be000 Deferred libllvmmcjit.so.3.7 ELF b8cc000- b974000 Deferred libllvminstrumentation.so.3.7 ELF b974000- b9bf000 Deferred libllvmx86asmprinter.so.3.7 ELF b9bf000- b9e9000 Deferred libllvmexecutionengine.so.3.7 ELF b9e9000- b9fd000 Deferred libllvmtarget.so.3.7 ELF ba15000- ba52000 Deferred libllvmmcparser.so.3.7 ELF c10d000- c18b000 Deferred libllvmruntimedyld.so.3.7 ELF c555000- c6bb000 Deferred libllvmtransformutils.so.3.7 ELF c7bb000- c918000 Deferred libllvmx86desc.so.3.7 ELF c918000- c9bf000 Deferred libllvmobject.so.3.7 ELF c9cb000- c9e7000 Deferred libgcc_s.so.1 ELF cb8b000- ce78000 Deferred libllvmanalysis.so.3.7 ELF d486000- d4d7000 Deferred libllvmbitreader.so.3.7 ELF d4d7000- d596000 Deferred libllvmmc.so.3.7 ELF d796000- d7a1000 Deferred libpciaccess.so.0 ELF d7a5000- d803000 Deferred libncurses.so.6 ELF db58000- debe000 Deferred libllvmcore.so.3.7 ELF dfbe000- e0db000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001b0 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001b1 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26935== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,463 ==26935== at 0x7BC5067C: notify_alloc (heap.c:254) ==26935== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26935== by 0x5602E46: Direct3DCreate9 (d3d9_main.c:42) ==26935== by 0x4A9DB26: test_setting_constants (shader.c:1464) ==26935== by 0x4AA1596: func_shader (shader.c:6499) ==26935== by 0x4AB8C19: run_test (test.h:589) ==26935== by 0x4AB9045: main (test.h:671) ==26935== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:test_setting_constants fun:func_shader fun:run_test fun:main } ==26935== 13,240 bytes in 1 blocks are possibly lost in loss record 1,447 of 1,463 ==26935== at 0x7BC5067C: notify_alloc (heap.c:254) ==26935== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26935== by 0x5730AF8: wined3d_create (wined3d_main.c:101) ==26935== by 0x5611652: d3d9_init (directx.c:679) ==26935== by 0x5602E69: Direct3DCreate9 (d3d9_main.c:45) ==26935== by 0x4A9DB26: test_setting_constants (shader.c:1464) ==26935== by 0x4AA1596: func_shader (shader.c:6499) ==26935== by 0x4AB8C19: run_test (test.h:589) ==26935== by 0x4AB9045: main (test.h:671) ==26935== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:test_setting_constants fun:func_shader fun:run_test fun:main } Makefile:394: recipe for target 'shader.ok' failed make[1]: *** [shader.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so surface && touch surface.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x702677c (thread 01b5), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0702677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0702677c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07460000 ECX:047915d0 EDX:00200000 ESI:0471a948 EDI:047915d0 Stack dump: 0x04c4e690: 04c4e6cc 0478af1c 00000003 00000002 0x04c4e6a0: 00007f30 00007f44 00000082 00007f4c 0x04c4e6b0: 00800000 00000000 00007f24 00007f28 0x04c4e6c0: 00007f2c 00000000 0471a128 00007f54 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 7e4a7800 Backtrace: =>0 0x0702677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x0700cfab in radeonsi_dri.so (+0x670faa) (0x047194c0) 2 0x0700d332 in radeonsi_dri.so (+0x671331) (0x04c4e828) 3 0x0708d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069cc6fc in radeonsi_dri.so (+0x306fb) (0x04715f00) 5 0x06e04f00 in radeonsi_dri.so (+0x468eff) (0x04715f00) 6 0x06e0493d in radeonsi_dri.so (+0x46893c) (0x04715f00) 7 0x06cc581b in radeonsi_dri.so (+0x32981a) (0x04715f00) 8 0x06cc1846 in radeonsi_dri.so (+0x325845) (0x04715e78) 9 0x064e5722 in libgl.so.1 (+0x43721) (0x04666290) 10 0x064baa42 in libgl.so.1 (+0x18a41) (0x04663d68) 11 0x064b660b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x064b6784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f7217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f73bd7 init_opengl+0xfbe(once=0x5fd0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f74052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f7c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f66e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019b8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056b9c8b wined3d_adapter_init+0xe0(adapter=0x48fe430, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb28) 22 0x056ba6bd wined3d_init+0xa5(wined3d=0x48fe420, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb58) 23 0x05740b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fbb8) 24 0x0561d653 d3d9_init+0x4d(d3d9=0x48fe400, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x0560ee6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04aa8f73 func_surface+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/surface.c:1418] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8c1a run_test+0x96(name="surface") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab9046 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9c5288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe9c5308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9c61b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9c61f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe9c6734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe9c6248) 42 0x7c000f80 main+0x145(argc=, argv=0xfe9c6734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9c6688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0702677c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 553e000- 5559000 Deferred version \-PE 5540000- 5559000 \ version ELF 5561000- 55ee000 Deferred rpcrt4 \-PE 5570000- 55ee000 \ rpcrt4 ELF 55fa000- 563d000 Dwarf d3d9 \-PE 5600000- 563d000 \ d3d9 ELF 5649000- 57a7000 Dwarf wined3d \-PE 5660000- 57a7000 \ wined3d ELF 5b13000- 5bcb000 Deferred libfreetype.so.6 ELF 5dd3000- 5dea000 Deferred libz.so.1 ELF 5df2000- 5e04000 Deferred libbz2.so.1 ELF 5e0c000- 5e4a000 Deferred libpng16.so.16 ELF 5e4e000- 5e8b000 Deferred libfontconfig.so.1 ELF 5e8f000- 5eb9000 Deferred libexpat.so.1 ELF 5ebd000- 5ec9000 Deferred libxcursor.so.1 ELF 5ecd000- 5ed4000 Deferred libxfixes.so.3 ELF 5f0b000- 5f30000 Deferred imm32 \-PE 5f10000- 5f30000 \ imm32 ELF 5f34000- 5fd4000 Dwarf winex11 \-PE 5f40000- 5fd4000 \ winex11 ELF 5fe4000- 5fe8000 Deferred libxinerama.so.1 ELF 5fec000- 5ff2000 Deferred libxxf86vm.so.1 ELF 5ff6000- 6002000 Deferred libxrender.so.1 ELF 6006000- 6013000 Deferred libxrandr.so.2 ELF 6017000- 601b000 Deferred libxcomposite.so.1 ELF 602c000- 603f000 Deferred libxext.so.6 ELF 6043000- 6194000 Deferred libx11.so.6 ELF 629c000- 62c8000 Deferred libxcb.so.1 ELF 62d0000- 62d4000 Deferred libxau.so.6 ELF 62d8000- 62df000 Deferred libxdmcp.so.6 ELF 62df000- 62fb000 Deferred libbsd.so.0 ELF 634b000- 635e000 Deferred libxi.so.6 ELF 6372000- 6376000 Deferred libxcb-dri3.so.0 ELF 637a000- 637e000 Deferred libxcb-present.so.0 ELF 637e000- 6386000 Deferred libxcb-sync.so.1 ELF 638a000- 638d000 Deferred libxshmfence.so.1 ELF 638d000- 6391000 Deferred libxdamage.so.1 ELF 6395000- 6398000 Deferred libx11-xcb.so.1 ELF 639c000- 63a2000 Deferred libxcb-dri2.so.0 ELF 6472000- 649a000 Deferred libudev.so.1 ELF 64a2000- 6519000 Dwarf libgl.so.1 ELF 6519000- 6550000 Deferred libglapi.so.0 ELF 6550000- 656d000 Deferred libxcb-glx.so.0 ELF 656d000- 657f000 Deferred libdrm.so.2 ELF 699c000- 765e000 Dwarf radeonsi_dri.so ELF 7852000- 785c000 Deferred libdrm_nouveau.so.2 ELF 7f82000- 7f88000 Deferred libtxc_dxtn.so ELF 7fbe000- 7ffe000 Deferred libnettle.so.6 ELF 7ffe000- 8023000 Deferred libdrm_intel.so.1 ELF 8023000- 8031000 Deferred libdrm_radeon.so.1 ELF 8035000- 8040000 Deferred libdrm_amdgpu.so.1 ELF 8040000- 805d000 Deferred libelf.so.1 ELF 8061000- 81d0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 85e7000- 86af000 Deferred libllvmipo.so.3.7 ELF 8877000- 891f000 Deferred libllvmvectorize.so.3.7 ELF 8927000- 8981000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8989000- 898c000 Deferred libllvmamdgpuutils.so.3.7 ELF 898c000- 8a58000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a5c000- 8a5f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a5f000- 8a89000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8a8d000- 8ac9000 Deferred libllvmbitwriter.so.3.7 ELF 8acd000- 8c35000 Deferred libllvmx86disassembler.so.3.7 ELF 8c39000- 8cdc000 Deferred libllvmx86asmparser.so.3.7 ELF 8e00000- 8e41000 Deferred libllvmprofiledata.so.3.7 ELF 92b9000- 953f000 Deferred libllvmx86codegen.so.3.7 ELF 953f000- 960d000 Deferred libllvmasmprinter.so.3.7 ELF 9611000- 961a000 Deferred libllvmmcdisassembler.so.3.7 ELF 961e000- 9621000 Deferred libllvmx86info.so.3.7 ELF 9629000- 9635000 Deferred libllvmx86utils.so.3.7 ELF 9e82000- 9eb9000 Deferred libllvmipa.so.3.7 ELF a07f000- a388000 Deferred libllvmselectiondag.so.3.7 ELF a7a3000- a7b3000 Deferred libllvmmcjit.so.3.7 ELF aa25000- af13000 Deferred libllvmcodegen.so.3.7 ELF af13000- b1d5000 Deferred libllvmscalaropts.so.3.7 ELF b5cf000- b6be000 Deferred libllvminstcombine.so.3.7 ELF b8dc000- b984000 Deferred libllvminstrumentation.so.3.7 ELF b984000- b9cf000 Deferred libllvmx86asmprinter.so.3.7 ELF b9cf000- b9f9000 Deferred libllvmexecutionengine.so.3.7 ELF b9f9000- ba0d000 Deferred libllvmtarget.so.3.7 ELF ba0d000- ba4a000 Deferred libllvmmcparser.so.3.7 ELF c11d000- c19b000 Deferred libllvmruntimedyld.so.3.7 ELF c565000- c6cb000 Deferred libllvmtransformutils.so.3.7 ELF c7cb000- c928000 Deferred libllvmx86desc.so.3.7 ELF c928000- c9cf000 Deferred libllvmobject.so.3.7 ELF c9cf000- c9eb000 Deferred libgcc_s.so.1 ELF c9eb000- c9f6000 Deferred libpciaccess.so.0 ELF cb9b000- ce88000 Deferred libllvmanalysis.so.3.7 ELF d496000- d4e7000 Deferred libllvmbitreader.so.3.7 ELF d4e7000- d5a6000 Deferred libllvmmc.so.3.7 ELF d7a6000- d804000 Deferred libncurses.so.6 ELF db68000- dece000 Deferred libllvmcore.so.3.7 ELF dfce000- e0eb000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001b4 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001b5 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26949== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,462 ==26949== at 0x7BC5067C: notify_alloc (heap.c:254) ==26949== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26949== by 0x560EE46: Direct3DCreate9 (d3d9_main.c:42) ==26949== by 0x4AA8F72: func_surface (surface.c:1418) ==26949== by 0x4AB8C19: run_test (test.h:589) ==26949== by 0x4AB9045: main (test.h:671) ==26949== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_surface fun:run_test fun:main } ==26949== 13,240 bytes in 1 blocks are possibly lost in loss record 1,446 of 1,462 ==26949== at 0x7BC5067C: notify_alloc (heap.c:254) ==26949== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26949== by 0x5740AF8: wined3d_create (wined3d_main.c:101) ==26949== by 0x561D652: d3d9_init (directx.c:679) ==26949== by 0x560EE69: Direct3DCreate9 (d3d9_main.c:45) ==26949== by 0x4AA8F72: func_surface (surface.c:1418) ==26949== by 0x4AB8C19: run_test (test.h:589) ==26949== by 0x4AB9045: main (test.h:671) ==26949== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_surface fun:run_test fun:main } Makefile:429: recipe for target 'surface.ok' failed make[1]: *** [surface.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so texture && touch texture.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x702f77c (thread 01b9), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0702f77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0702f77c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07469000 ECX:047915d0 EDX:00200000 ESI:0471a948 EDI:047915d0 Stack dump: 0x04c4e690: 04c4e6cc 0478af1c 00000003 00000002 0x04c4e6a0: 00007f30 00007f44 00000082 00007f4c 0x04c4e6b0: 00800000 00000000 00007f24 00007f28 0x04c4e6c0: 00007f2c 00000000 0471a128 00007f54 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 e2db3800 Backtrace: =>0 0x0702f77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x07015fab in radeonsi_dri.so (+0x670faa) (0x047194c0) 2 0x07016332 in radeonsi_dri.so (+0x671331) (0x04c4e828) 3 0x070966df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069d56fc in radeonsi_dri.so (+0x306fb) (0x04715f00) 5 0x06e0df00 in radeonsi_dri.so (+0x468eff) (0x04715f00) 6 0x06e0d93d in radeonsi_dri.so (+0x46893c) (0x04715f00) 7 0x06cce81b in radeonsi_dri.so (+0x32981a) (0x04715f00) 8 0x06cca846 in radeonsi_dri.so (+0x325845) (0x04715e78) 9 0x064ea722 in libgl.so.1 (+0x43721) (0x04666290) 10 0x064bfa42 in libgl.so.1 (+0x18a41) (0x04663d68) 11 0x064bb60b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x064bb784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f7f17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f80bd7 init_opengl+0xfbe(once=0x5fdde38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f81052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f890e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f73e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x4901978, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056b1c8b wined3d_adapter_init+0xe0(adapter=0x48fe3f0, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb28) 22 0x056b26bd wined3d_init+0xa5(wined3d=0x48fe3e0, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb58) 23 0x05738b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fbb8) 24 0x05615653 d3d9_init+0x4d(d3d9=0x48fe3c0, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05606e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04ab4b26 func_texture+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/texture.c:2248] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8c1a run_test+0x96(name="texture") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab9046 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb88288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb88308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb891b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb891f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb89734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb89248) 42 0x7c000f80 main+0x145(argc=, argv=0xfeb89734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb89688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0702f77c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 553e000- 5559000 Deferred version \-PE 5540000- 5559000 \ version ELF 555d000- 55ea000 Deferred rpcrt4 \-PE 5570000- 55ea000 \ rpcrt4 ELF 55f2000- 5635000 Dwarf d3d9 \-PE 5600000- 5635000 \ d3d9 ELF 5641000- 579f000 Dwarf wined3d \-PE 5650000- 579f000 \ wined3d ELF 5b00000- 5b03000 Deferred libxshmfence.so.1 ELF 5b0b000- 5bc3000 Deferred libfreetype.so.6 ELF 5dc7000- 5dde000 Deferred libz.so.1 ELF 5de6000- 5df8000 Deferred libbz2.so.1 ELF 5e00000- 5e3e000 Deferred libpng16.so.16 ELF 5e42000- 5e7f000 Deferred libfontconfig.so.1 ELF 5e87000- 5eb1000 Deferred libexpat.so.1 ELF 5eb9000- 5ec5000 Deferred libxcursor.so.1 ELF 5ec9000- 5ed0000 Deferred libxfixes.so.3 ELF 5f14000- 5f39000 Deferred imm32 \-PE 5f20000- 5f39000 \ imm32 ELF 5f41000- 5fe1000 Dwarf winex11 \-PE 5f50000- 5fe1000 \ winex11 ELF 5ff1000- 5ff5000 Deferred libxinerama.so.1 ELF 5ff9000- 5fff000 Deferred libxxf86vm.so.1 ELF 5fff000- 600b000 Deferred libxrender.so.1 ELF 600f000- 601c000 Deferred libxrandr.so.2 ELF 6020000- 6024000 Deferred libxcomposite.so.1 ELF 6039000- 604c000 Deferred libxext.so.6 ELF 6050000- 61a1000 Deferred libx11.so.6 ELF 62a5000- 62d1000 Deferred libxcb.so.1 ELF 62d9000- 62dd000 Deferred libxau.so.6 ELF 62dd000- 62e4000 Deferred libxdmcp.so.6 ELF 62e8000- 6304000 Deferred libbsd.so.0 ELF 6351000- 6354000 Deferred libx11-xcb.so.1 ELF 6354000- 6367000 Deferred libxi.so.6 ELF 637b000- 637f000 Deferred libxcb-dri3.so.0 ELF 6383000- 6387000 Deferred libxcb-present.so.0 ELF 638b000- 6393000 Deferred libxcb-sync.so.1 ELF 639b000- 639f000 Deferred libxdamage.so.1 ELF 63a3000- 63a9000 Deferred libxcb-dri2.so.0 ELF 63b5000- 63b8000 Deferred libllvmamdgpuutils.so.3.7 ELF 647b000- 64a3000 Deferred libudev.so.1 ELF 64a7000- 651e000 Dwarf libgl.so.1 ELF 651e000- 6555000 Deferred libglapi.so.0 ELF 6555000- 6572000 Deferred libxcb-glx.so.0 ELF 6572000- 6584000 Deferred libdrm.so.2 ELF 69a5000- 7667000 Dwarf radeonsi_dri.so ELF 785b000- 7865000 Deferred libdrm_nouveau.so.2 ELF 7f8f000- 7f95000 Deferred libtxc_dxtn.so ELF 7fc7000- 8007000 Deferred libnettle.so.6 ELF 8007000- 802c000 Deferred libdrm_intel.so.1 ELF 802c000- 803a000 Deferred libdrm_radeon.so.1 ELF 803e000- 8049000 Deferred libdrm_amdgpu.so.1 ELF 804d000- 806a000 Deferred libelf.so.1 ELF 806e000- 81dd000 Deferred libllvmamdgpucodegen.so.3.7 ELF 85f4000- 86bc000 Deferred libllvmipo.so.3.7 ELF 8884000- 892c000 Deferred libllvmvectorize.so.3.7 ELF 8934000- 898e000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8996000- 8a62000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a6a000- 8a6d000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a6d000- 8a97000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8a9b000- 8ad7000 Deferred libllvmbitwriter.so.3.7 ELF 8adb000- 8c43000 Deferred libllvmx86disassembler.so.3.7 ELF 8c47000- 8cea000 Deferred libllvmx86asmparser.so.3.7 ELF 8e0e000- 8e4f000 Deferred libllvmprofiledata.so.3.7 ELF 92c2000- 9548000 Deferred libllvmx86codegen.so.3.7 ELF 9548000- 9616000 Deferred libllvmasmprinter.so.3.7 ELF 9622000- 962b000 Deferred libllvmmcdisassembler.so.3.7 ELF 962f000- 9632000 Deferred libllvmx86info.so.3.7 ELF 9e8b000- 9ec2000 Deferred libllvmipa.so.3.7 ELF a088000- a391000 Deferred libllvmselectiondag.so.3.7 ELF a7ac000- a7b8000 Deferred libllvmx86utils.so.3.7 ELF aa2e000- af1c000 Deferred libllvmcodegen.so.3.7 ELF af1c000- b1de000 Deferred libllvmscalaropts.so.3.7 ELF b2de000- b2ee000 Deferred libllvmmcjit.so.3.7 ELF b5d8000- b6c7000 Deferred libllvminstcombine.so.3.7 ELF b8e5000- b98d000 Deferred libllvminstrumentation.so.3.7 ELF b98d000- b9d8000 Deferred libllvmx86asmprinter.so.3.7 ELF b9d8000- ba02000 Deferred libllvmexecutionengine.so.3.7 ELF ba02000- ba16000 Deferred libllvmtarget.so.3.7 ELF ba22000- ba5f000 Deferred libllvmmcparser.so.3.7 ELF c126000- c1a4000 Deferred libllvmruntimedyld.so.3.7 ELF c56e000- c6d4000 Deferred libllvmtransformutils.so.3.7 ELF c7d4000- c931000 Deferred libllvmx86desc.so.3.7 ELF c931000- c9d8000 Deferred libllvmobject.so.3.7 ELF c9d8000- c9f4000 Deferred libgcc_s.so.1 ELF c9f4000- c9ff000 Deferred libpciaccess.so.0 ELF cba4000- ce91000 Deferred libllvmanalysis.so.3.7 ELF d49f000- d4f0000 Deferred libllvmbitreader.so.3.7 ELF d4f0000- d5af000 Deferred libllvmmc.so.3.7 ELF d7af000- d80d000 Deferred libncurses.so.6 ELF db71000- ded7000 Deferred libllvmcore.so.3.7 ELF dfd7000- e0f4000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001b8 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001b9 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26969== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,462 ==26969== at 0x7BC5067C: notify_alloc (heap.c:254) ==26969== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26969== by 0x5606E46: Direct3DCreate9 (d3d9_main.c:42) ==26969== by 0x4AB4B25: func_texture (texture.c:2248) ==26969== by 0x4AB8C19: run_test (test.h:589) ==26969== by 0x4AB9045: main (test.h:671) ==26969== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_texture fun:run_test fun:main } ==26969== 13,240 bytes in 1 blocks are possibly lost in loss record 1,446 of 1,462 ==26969== at 0x7BC5067C: notify_alloc (heap.c:254) ==26969== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26969== by 0x5738AF8: wined3d_create (wined3d_main.c:101) ==26969== by 0x5615652: d3d9_init (directx.c:679) ==26969== by 0x5606E69: Direct3DCreate9 (d3d9_main.c:45) ==26969== by 0x4AB4B25: func_texture (texture.c:2248) ==26969== by 0x4AB8C19: run_test (test.h:589) ==26969== by 0x4AB9045: main (test.h:671) ==26969== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_texture fun:run_test fun:main } Makefile:465: recipe for target 'texture.ok' failed make[1]: *** [texture.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so volume && touch volume.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x701677c (thread 01bd), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x0701677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0701677c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07450000 ECX:047915d0 EDX:00200000 ESI:0471a948 EDI:047915d0 Stack dump: 0x04c4e690: 04c4e6cc 0478af1c 00000003 00000002 0x04c4e6a0: 00007f30 00007f44 00000082 00007f4c 0x04c4e6b0: 00800000 00000000 00007f24 00007f28 0x04c4e6c0: 00007f2c 00000000 0471a128 00007f54 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 b5fcae00 Backtrace: =>0 0x0701677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06ffcfab in radeonsi_dri.so (+0x670faa) (0x047194c0) 2 0x06ffd332 in radeonsi_dri.so (+0x671331) (0x04c4e828) 3 0x0707d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069bc6fc in radeonsi_dri.so (+0x306fb) (0x04715f00) 5 0x06df4f00 in radeonsi_dri.so (+0x468eff) (0x04715f00) 6 0x06df493d in radeonsi_dri.so (+0x46893c) (0x04715f00) 7 0x06cb581b in radeonsi_dri.so (+0x32981a) (0x04715f00) 8 0x06cb1846 in radeonsi_dri.so (+0x325845) (0x04715e78) 9 0x064d1722 in libgl.so.1 (+0x43721) (0x04666290) 10 0x064a6a42 in libgl.so.1 (+0x18a41) (0x04663d68) 11 0x064a260b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x064a2784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f6217f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f63bd7 init_opengl+0xfbe(once=0x5fc0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f64052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f6c0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f56e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019b0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a6459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056a9c8b wined3d_adapter_init+0xe0(adapter=0x48fe428, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c4fb28) 22 0x056aa6bd wined3d_init+0xa5(wined3d=0x48fe418, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c4fb58) 23 0x05730b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c4fbb8) 24 0x05611653 d3d9_init+0x4d(d3d9=0x48fe3f8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05602e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04ab64ad func_volume+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/volume.c:280] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8c1a run_test+0x96(name="volume") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab9046 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab90d3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c4ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c4ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec02288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec02308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec031b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec031f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec03734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec03248) 42 0x7c000f80 main+0x145(argc=, argv=0xfec03734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec03688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x0701677c: repe Modules: Module Address Debug info Name (127 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483d000 Deferred d3dxof \-PE 4820000- 483d000 \ d3dxof ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b50000 Dwarf d3dx9_36_test \-PE 4a10000- 4b50000 \ d3dx9_36_test ELF 4c50000- 4cff000 Deferred d3dx9_36 \-PE 4c60000- 4cff000 \ d3dx9_36 ELF 4cff000- 4d83000 Deferred d3dcompiler_43 \-PE 4d10000- 4d83000 \ d3dcompiler_43 ELF 4d83000- 4f05000 Deferred ole32 \-PE 4da0000- 4f05000 \ ole32 ELF 5105000- 5186000 Deferred advapi32 \-PE 5110000- 5186000 \ advapi32 ELF 5186000- 52fa000 Deferred user32 \-PE 51a0000- 52fa000 \ user32 ELF 53fa000- 553e000 Dwarf gdi32 \-PE 5410000- 553e000 \ gdi32 ELF 553e000- 5559000 Deferred version \-PE 5540000- 5559000 \ version ELF 5559000- 55e6000 Deferred rpcrt4 \-PE 5560000- 55e6000 \ rpcrt4 ELF 55ee000- 5631000 Dwarf d3d9 \-PE 55f0000- 5631000 \ d3d9 ELF 5639000- 5797000 Dwarf wined3d \-PE 5650000- 5797000 \ wined3d ELF 5aff000- 5bb7000 Deferred libfreetype.so.6 ELF 5dbb000- 5dd2000 Deferred libz.so.1 ELF 5dda000- 5dec000 Deferred libbz2.so.1 ELF 5df0000- 5e2e000 Deferred libpng16.so.16 ELF 5e32000- 5e6f000 Deferred libfontconfig.so.1 ELF 5e77000- 5ea1000 Deferred libexpat.so.1 ELF 5ea9000- 5eb5000 Deferred libxcursor.so.1 ELF 5eb9000- 5ec0000 Deferred libxfixes.so.3 ELF 5efb000- 5f20000 Deferred imm32 \-PE 5f00000- 5f20000 \ imm32 ELF 5f24000- 5fc4000 Dwarf winex11 \-PE 5f30000- 5fc4000 \ winex11 ELF 5fd4000- 5fd8000 Deferred libxinerama.so.1 ELF 5fdc000- 5fe2000 Deferred libxxf86vm.so.1 ELF 5fe6000- 5ff2000 Deferred libxrender.so.1 ELF 5ff6000- 6003000 Deferred libxrandr.so.2 ELF 6007000- 600b000 Deferred libxcomposite.so.1 ELF 601c000- 602f000 Deferred libxext.so.6 ELF 6033000- 6184000 Deferred libx11.so.6 ELF 628c000- 62b8000 Deferred libxcb.so.1 ELF 62c0000- 62c4000 Deferred libxau.so.6 ELF 62c8000- 62cf000 Deferred libxdmcp.so.6 ELF 62cf000- 62eb000 Deferred libbsd.so.0 ELF 633b000- 634e000 Deferred libxi.so.6 ELF 6362000- 6366000 Deferred libxcb-dri3.so.0 ELF 636a000- 636e000 Deferred libxcb-present.so.0 ELF 636e000- 6376000 Deferred libxcb-sync.so.1 ELF 637a000- 637d000 Deferred libxshmfence.so.1 ELF 6381000- 6385000 Deferred libxdamage.so.1 ELF 6389000- 638c000 Deferred libx11-xcb.so.1 ELF 6390000- 6396000 Deferred libxcb-dri2.so.0 ELF 6462000- 648a000 Deferred libudev.so.1 ELF 648e000- 6505000 Dwarf libgl.so.1 ELF 6505000- 653c000 Deferred libglapi.so.0 ELF 653c000- 6559000 Deferred libxcb-glx.so.0 ELF 6559000- 656b000 Deferred libdrm.so.2 ELF 698c000- 764e000 Dwarf radeonsi_dri.so ELF 7842000- 784c000 Deferred libdrm_nouveau.so.2 ELF 7f72000- 7f78000 Deferred libtxc_dxtn.so ELF 7fae000- 7fee000 Deferred libnettle.so.6 ELF 7fee000- 8013000 Deferred libdrm_intel.so.1 ELF 8013000- 8021000 Deferred libdrm_radeon.so.1 ELF 8021000- 802c000 Deferred libdrm_amdgpu.so.1 ELF 802c000- 8049000 Deferred libelf.so.1 ELF 804d000- 81bc000 Deferred libllvmamdgpucodegen.so.3.7 ELF 85d3000- 869b000 Deferred libllvmipo.so.3.7 ELF 8863000- 890b000 Deferred libllvmvectorize.so.3.7 ELF 8913000- 896d000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8975000- 8978000 Deferred libllvmamdgpuutils.so.3.7 ELF 897c000- 8a48000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a4c000- 8a4f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8a4f000- 8a79000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8a7d000- 8ab9000 Deferred libllvmbitwriter.so.3.7 ELF 8abd000- 8c25000 Deferred libllvmx86disassembler.so.3.7 ELF 8c29000- 8ccc000 Deferred libllvmx86asmparser.so.3.7 ELF 8df0000- 8e31000 Deferred libllvmprofiledata.so.3.7 ELF 92a9000- 952f000 Deferred libllvmx86codegen.so.3.7 ELF 952f000- 95fd000 Deferred libllvmasmprinter.so.3.7 ELF 9601000- 960a000 Deferred libllvmmcdisassembler.so.3.7 ELF 960e000- 9611000 Deferred libllvmx86info.so.3.7 ELF 9619000- 9625000 Deferred libllvmx86utils.so.3.7 ELF 9e72000- 9ea9000 Deferred libllvmipa.so.3.7 ELF a06f000- a378000 Deferred libllvmselectiondag.so.3.7 ELF a793000- a7a3000 Deferred libllvmmcjit.so.3.7 ELF aa15000- af03000 Deferred libllvmcodegen.so.3.7 ELF af03000- b1c5000 Deferred libllvmscalaropts.so.3.7 ELF b5bf000- b6ae000 Deferred libllvminstcombine.so.3.7 ELF b8cc000- b974000 Deferred libllvminstrumentation.so.3.7 ELF b974000- b9bf000 Deferred libllvmx86asmprinter.so.3.7 ELF b9bf000- b9e9000 Deferred libllvmexecutionengine.so.3.7 ELF b9e9000- b9fd000 Deferred libllvmtarget.so.3.7 ELF b9fd000- ba3a000 Deferred libllvmmcparser.so.3.7 ELF c10d000- c18b000 Deferred libllvmruntimedyld.so.3.7 ELF c555000- c6bb000 Deferred libllvmtransformutils.so.3.7 ELF c7bb000- c918000 Deferred libllvmx86desc.so.3.7 ELF c918000- c9bf000 Deferred libllvmobject.so.3.7 ELF c9bf000- c9db000 Deferred libgcc_s.so.1 ELF c9db000- c9e6000 Deferred libpciaccess.so.0 ELF cb8b000- ce78000 Deferred libllvmanalysis.so.3.7 ELF d486000- d4d7000 Deferred libllvmbitreader.so.3.7 ELF d4d7000- d596000 Deferred libllvmmc.so.3.7 ELF d796000- d7f4000 Deferred libncurses.so.6 ELF db58000- debe000 Deferred libllvmcore.so.3.7 ELF dfbe000- e0db000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001bc (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001bd 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==26986== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,462 ==26986== at 0x7BC5067C: notify_alloc (heap.c:254) ==26986== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26986== by 0x5602E46: Direct3DCreate9 (d3d9_main.c:42) ==26986== by 0x4AB64AC: func_volume (volume.c:280) ==26986== by 0x4AB8C19: run_test (test.h:589) ==26986== by 0x4AB9045: main (test.h:671) ==26986== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_volume fun:run_test fun:main } ==26986== 13,240 bytes in 1 blocks are possibly lost in loss record 1,446 of 1,462 ==26986== at 0x7BC5067C: notify_alloc (heap.c:254) ==26986== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==26986== by 0x5730AF8: wined3d_create (wined3d_main.c:101) ==26986== by 0x5611652: d3d9_init (directx.c:679) ==26986== by 0x5602E69: Direct3DCreate9 (d3d9_main.c:45) ==26986== by 0x4AB64AC: func_volume (volume.c:280) ==26986== by 0x4AB8C19: run_test (test.h:589) ==26986== by 0x4AB9045: main (test.h:671) ==26986== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:wined3d_create fun:d3d9_init fun:Direct3DCreate9 fun:func_volume fun:run_test fun:main } Makefile:501: recipe for target 'volume.ok' failed make[1]: *** [volume.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M d3dx9_36.dll -p d3dx9_36_test.exe.so xfile && touch xfile.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3dx9_36/tests' Makefile:7389: recipe for target 'dlls/d3dx9_36/tests/test' failed make: *** [dlls/d3dx9_36/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/d3dxof/tests' ../../../tools/runtest -q -P wine -T ../../.. -M d3dxof.dll -p d3dxof_test.exe.so d3dxof && touch d3dxof.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3dxof/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ddraw/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ddraw.dll -p ddraw_test.exe.so d3d && touch d3d.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6d2577c (thread 01c5), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06d2577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06d2577c ESP:04c7e430 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:0715f000 ECX:046dfcc0 EDX:00200000 ESI:04669038 EDI:046dfcc0 Stack dump: 0x04c7e430: 04c7e46c 046d960c 00000003 00000002 0x04c7e440: 00007f30 00007f44 00000082 00007f4c 0x04c7e450: 00800000 00000000 00007f24 00007f28 0x04c7e460: 00007f2c 00000000 04668818 00007f54 0x04c7e470: 00000000 00000000 00000000 00000000 0x04c7e480: 00000000 00000000 00000000 a20a4e00 Backtrace: =>0 0x06d2577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06d0bfab in radeonsi_dri.so (+0x670faa) (0x04667bb0) 2 0x06d0c332 in radeonsi_dri.so (+0x671331) (0x04c7e5c8) 3 0x06d8c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c7e5c8) 4 0x066cb6fc in radeonsi_dri.so (+0x306fb) (0x046645f0) 5 0x06b03f00 in radeonsi_dri.so (+0x468eff) (0x046645f0) 6 0x06b0393d in radeonsi_dri.so (+0x46893c) (0x046645f0) 7 0x069c481b in radeonsi_dri.so (+0x32981a) (0x046645f0) 8 0x069c0846 in radeonsi_dri.so (+0x325845) (0x04664568) 9 0x0613d722 in libgl.so.1 (+0x43721) (0x045b4980) 10 0x06112a42 in libgl.so.1 (+0x18a41) (0x045b2458) 11 0x0610e60b in libgl.so.1 (+0x1460a) (0x04c7f084) 12 0x0610e784 glXChooseVisual+0x63() in libgl.so.1 (0x04c7f084) 13 0x05d6d17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c7f158) 14 0x05d6ebd7 init_opengl+0xfbe(once=0x5dcbe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c7f368) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c7f3b8) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c7f3e8) 17 0x05d6f052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c7f418) 18 0x05d770e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c7f438) 19 0x05d61e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6a50, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c7f468) 20 0x05109459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c7f498) 21 0x04d6fc8b wined3d_adapter_init+0xe0(adapter=0x48f34c8, ordinal=0, wined3d_creation_flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c7f8c8) 22 0x04d706bd wined3d_init+0xa5(wined3d=0x48f34b8, flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c7f8f8) 23 0x04df6b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c7f958) 24 0x04ca272a ddraw_init+0xda(ddraw=0x48f3400, flags=0xcb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04c7fb38) 25 0x04cb5d86 DDRAW_Create+0x163(guid=(nil), DD=0x4b7a544, UnkOuter=(nil), iid=0x4b41260) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c7fb98) 26 0x04cb6083 DirectDrawCreateEx+0xbc(driver_guid=, ddraw=, interface_iid=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:342] in ddraw (0x04c7fbd8) 27 0x04a18194 CreateDirect3D+0x3a() [/home/austin/wine-valgrind/dlls/ddraw/tests/d3d.c:100] in ddraw_test (0x04c7fc98) 28 0x04a2b75c func_d3d+0x67() [/home/austin/wine-valgrind/dlls/ddraw/tests/d3d.c:3660] in ddraw_test (0x04c7fcc8) 29 0x04b405b6 run_test+0x96(name="d3d") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c7fd08) 30 0x04b409e2 main+0x245(argc=, argv=0x48d1dd8) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c7fdd8) 31 0x04b40a6f __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c7fe18) 32 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c7fe38) 33 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c7fe88) 34 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c7fea8) 35 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c7ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c7ff98) 36 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c7ffb8) 37 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c7ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c80000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe8d1298) 40 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe8d1318) 41 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe8d21c8) 42 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe8d2208) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe8d2744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe8d2258) 44 0x7c000f80 main+0x145(argc=, argv=0xfe8d2744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe8d2698) 45 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06d2577c: repe Modules: Module Address Debug info Name (121 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b7b000 Dwarf ddraw_test \-PE 4a10000- 4b7b000 \ ddraw_test ELF 4c80000- 4cff000 Dwarf ddraw \-PE 4c90000- 4cff000 \ ddraw ELF 4cff000- 4e5d000 Dwarf wined3d \-PE 4d10000- 4e5d000 \ wined3d ELF 505d000- 51a1000 Dwarf gdi32 \-PE 5070000- 51a1000 \ gdi32 ELF 51a1000- 5222000 Deferred advapi32 \-PE 51b0000- 5222000 \ advapi32 ELF 5222000- 5396000 Deferred user32 \-PE 5230000- 5396000 \ user32 ELF 5596000- 5718000 Deferred ole32 \-PE 55b0000- 5718000 \ ole32 ELF 5818000- 58a5000 Deferred rpcrt4 \-PE 5820000- 58a5000 \ rpcrt4 ELF 5905000- 59bd000 Deferred libfreetype.so.6 ELF 5bc5000- 5bdc000 Deferred libz.so.1 ELF 5be4000- 5bf6000 Deferred libbz2.so.1 ELF 5bfe000- 5c3c000 Deferred libpng16.so.16 ELF 5c40000- 5c7d000 Deferred libfontconfig.so.1 ELF 5c81000- 5cab000 Deferred libexpat.so.1 ELF 5cb3000- 5cbf000 Deferred libxcursor.so.1 ELF 5cc3000- 5cca000 Deferred libxfixes.so.3 ELF 5d02000- 5d27000 Deferred imm32 \-PE 5d10000- 5d27000 \ imm32 ELF 5d2f000- 5dcf000 Dwarf winex11 \-PE 5d40000- 5dcf000 \ winex11 ELF 5ddb000- 5ddf000 Deferred libxinerama.so.1 ELF 5ddf000- 5de5000 Deferred libxxf86vm.so.1 ELF 5de9000- 5df5000 Deferred libxrender.so.1 ELF 5df9000- 5e06000 Deferred libxrandr.so.2 ELF 5e0a000- 5e0e000 Deferred libxcomposite.so.1 ELF 5e27000- 5e3a000 Deferred libxext.so.6 ELF 5e42000- 5f93000 Deferred libx11.so.6 ELF 5f9f000- 5fcb000 Deferred libxcb.so.1 ELF 5fcf000- 5fd3000 Deferred libxau.so.6 ELF 5fd7000- 5fde000 Deferred libxdmcp.so.6 ELF 5fde000- 5ffa000 Deferred libbsd.so.0 ELF 6001000- 6005000 Deferred libxcb-dri3.so.0 ELF 6005000- 6009000 Deferred libxcb-present.so.0 ELF 600d000- 6015000 Deferred libxcb-sync.so.1 ELF 6019000- 601c000 Deferred libxshmfence.so.1 ELF 6024000- 6028000 Deferred libxdamage.so.1 ELF 602c000- 602f000 Deferred libx11-xcb.so.1 ELF 6033000- 6039000 Deferred libxcb-dri2.so.0 ELF 604a000- 605d000 Deferred libxi.so.6 ELF 6069000- 606f000 Deferred libtxc_dxtn.so ELF 60c2000- 60ea000 Deferred libudev.so.1 ELF 60fa000- 6171000 Dwarf libgl.so.1 ELF 6271000- 62a8000 Deferred libglapi.so.0 ELF 62a8000- 62c5000 Deferred libxcb-glx.so.0 ELF 62c5000- 62d7000 Deferred libdrm.so.2 ELF 643f000- 647f000 Deferred libnettle.so.6 ELF 648b000- 6495000 Deferred libdrm_nouveau.so.2 ELF 669b000- 735d000 Dwarf radeonsi_dri.so ELF 7551000- 7576000 Deferred libdrm_intel.so.1 ELF 757a000- 7588000 Deferred libdrm_radeon.so.1 ELF 758c000- 7597000 Deferred libdrm_amdgpu.so.1 ELF 759b000- 75b8000 Deferred libelf.so.1 ELF 75cc000- 7626000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 762e000- 7631000 Deferred libllvmamdgpuutils.so.3.7 ELF 7639000- 763c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e71000- 7fe0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 82e0000- 83a8000 Deferred libllvmipo.so.3.7 ELF 83a8000- 83d2000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 87b3000- 885b000 Deferred libllvmvectorize.so.3.7 ELF 885b000- 8927000 Deferred libllvmamdgpudesc.so.3.7 ELF 8927000- 8963000 Deferred libllvmbitwriter.so.3.7 ELF 8963000- 8acb000 Deferred libllvmx86disassembler.so.3.7 ELF 8acb000- 8b6e000 Deferred libllvmx86asmparser.so.3.7 ELF 8b6e000- 8c3c000 Deferred libllvmasmprinter.so.3.7 ELF 8c64000- 8c67000 Deferred libllvmx86info.so.3.7 ELF 90b8000- 933e000 Deferred libllvmx86codegen.so.3.7 ELF 933e000- 937f000 Deferred libllvmprofiledata.so.3.7 ELF 937f000- 9427000 Deferred libllvminstrumentation.so.3.7 ELF 9427000- 9430000 Deferred libllvmmcdisassembler.so.3.7 ELF 9c81000- 9cb8000 Deferred libllvmipa.so.3.7 ELF 9e7e000- a187000 Deferred libllvmselectiondag.so.3.7 ELF a5a6000- a5b2000 Deferred libllvmx86utils.so.3.7 ELF a824000- ad12000 Deferred libllvmcodegen.so.3.7 ELF ae12000- ae5d000 Deferred libllvmx86asmprinter.so.3.7 ELF ae65000- ae75000 Deferred libllvmmcjit.so.3.7 ELF ae7d000- aea7000 Deferred libllvmexecutionengine.so.3.7 ELF aeab000- aebf000 Deferred libllvmtarget.so.3.7 ELF b0f3000- b1e2000 Deferred libllvminstcombine.so.3.7 ELF b3ce000- b690000 Deferred libllvmscalaropts.so.3.7 ELF b790000- b80e000 Deferred libllvmruntimedyld.so.3.7 ELF b80e000- b82a000 Deferred libgcc_s.so.1 ELF b82a000- b835000 Deferred libpciaccess.so.0 ELF c0c9000- c22f000 Deferred libllvmtransformutils.so.3.7 ELF c22f000- c26c000 Deferred libllvmmcparser.so.3.7 ELF c680000- c7dd000 Deferred libllvmx86desc.so.3.7 ELF c7dd000- c884000 Deferred libllvmobject.so.3.7 ELF ca50000- cd3d000 Deferred libllvmanalysis.so.3.7 ELF d34b000- d39c000 Deferred libllvmbitreader.so.3.7 ELF d39c000- d45b000 Deferred libllvmmc.so.3.7 ELF d65b000- d6b9000 Deferred libncurses.so.6 ELF da1d000- dd83000 Deferred libllvmcore.so.3.7 ELF de83000- dfa0000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001c4 (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001c5 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==27045== 164 bytes in 1 blocks are definitely lost in loss record 1,042 of 1,266 ==27045== at 0x7BC5067C: notify_alloc (heap.c:254) ==27045== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27045== by 0x4CB5D1F: DDRAW_Create (main.c:267) ==27045== by 0x4CB6082: DirectDrawCreateEx (main.c:342) ==27045== by 0x4A18193: CreateDirect3D (d3d.c:100) ==27045== by 0x4A2B75B: func_d3d (d3d.c:3660) ==27045== by 0x4B405B5: run_test (test.h:589) ==27045== by 0x4B409E1: main (test.h:671) ==27045== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DDRAW_Create fun:DirectDrawCreateEx fun:CreateDirect3D fun:func_d3d fun:run_test fun:main } Makefile:179: recipe for target 'd3d.ok' failed make[1]: *** [d3d.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M ddraw.dll -p ddraw_test.exe.so dsurface && touch dsurface.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6d2577c (thread 01c9), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06d2577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06d2577c ESP:04c7e4c0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:0715f000 ECX:046dfcd0 EDX:00200000 ESI:04669048 EDI:046dfcd0 Stack dump: 0x04c7e4c0: 04c7e4fc 046d961c 00000003 00000002 0x04c7e4d0: 00007f30 00007f44 00000082 00007f4c 0x04c7e4e0: 00800000 00000000 00007f24 00007f28 0x04c7e4f0: 00007f2c 00000000 04668828 00007f54 0x04c7e500: 00000000 00000000 00000000 00000000 0x04c7e510: 00000000 00000000 00000000 cb2c4b00 Backtrace: =>0 0x06d2577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06d0bfab in radeonsi_dri.so (+0x670faa) (0x04667bc0) 2 0x06d0c332 in radeonsi_dri.so (+0x671331) (0x04c7e658) 3 0x06d8c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c7e658) 4 0x066cb6fc in radeonsi_dri.so (+0x306fb) (0x04664600) 5 0x06b03f00 in radeonsi_dri.so (+0x468eff) (0x04664600) 6 0x06b0393d in radeonsi_dri.so (+0x46893c) (0x04664600) 7 0x069c481b in radeonsi_dri.so (+0x32981a) (0x04664600) 8 0x069c0846 in radeonsi_dri.so (+0x325845) (0x04664578) 9 0x0613d722 in libgl.so.1 (+0x43721) (0x045b4990) 10 0x06112a42 in libgl.so.1 (+0x18a41) (0x045b2468) 11 0x0610e60b in libgl.so.1 (+0x1460a) (0x04c7f114) 12 0x0610e784 glXChooseVisual+0x63() in libgl.so.1 (0x04c7f114) 13 0x05d6d17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c7f1e8) 14 0x05d6ebd7 init_opengl+0xfbe(once=0x5dcbe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c7f3f8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c7f448) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c7f478) 17 0x05d6f052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c7f4a8) 18 0x05d770e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c7f4c8) 19 0x05d61e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6a70, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c7f4f8) 20 0x05109459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c7f528) 21 0x04d6fc8b wined3d_adapter_init+0xe0(adapter=0x48f34e8, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c7f958) 22 0x04d706bd wined3d_init+0xa5(wined3d=0x48f34d8, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c7f988) 23 0x04df6b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c7f9e8) 24 0x04ca272a ddraw_init+0xda(ddraw=0x48f3420, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04c7fbc8) 25 0x04cb5d86 DDRAW_Create+0x163(guid=(nil), DD=0x4b7abc4, UnkOuter=(nil), iid=0x4ce2db4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c7fc28) 26 0x04cb5f55 DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04c7fc68) 27 0x04b22444 CreateDirectDraw+0x24() [/home/austin/wine-valgrind/dlls/ddraw/tests/dsurface.c:41] in ddraw_test (0x04c7fca8) 28 0x04b343e8 func_dsurface+0x51() [/home/austin/wine-valgrind/dlls/ddraw/tests/dsurface.c:3347] in ddraw_test (0x04c7fcc8) 29 0x04b405b6 run_test+0x96(name="dsurface") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c7fd08) 30 0x04b409e2 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c7fdd8) 31 0x04b40a6f __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c7fe18) 32 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c7fe38) 33 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c7fe88) 34 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c7fea8) 35 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c7ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c7ff98) 36 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c7ffb8) 37 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c7ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c80000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfedf8298) 40 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfedf8318) 41 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfedf91c8) 42 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfedf9208) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfedf9744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfedf9258) 44 0x7c000f80 main+0x145(argc=, argv=0xfedf9744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfedf9698) 45 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06d2577c: repe Modules: Module Address Debug info Name (121 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b7b000 Dwarf ddraw_test \-PE 4a10000- 4b7b000 \ ddraw_test ELF 4c80000- 4cff000 Dwarf ddraw \-PE 4c90000- 4cff000 \ ddraw ELF 4cff000- 4e5d000 Dwarf wined3d \-PE 4d10000- 4e5d000 \ wined3d ELF 505d000- 51a1000 Dwarf gdi32 \-PE 5070000- 51a1000 \ gdi32 ELF 51a1000- 5222000 Deferred advapi32 \-PE 51b0000- 5222000 \ advapi32 ELF 5222000- 5396000 Deferred user32 \-PE 5230000- 5396000 \ user32 ELF 5596000- 5718000 Deferred ole32 \-PE 55b0000- 5718000 \ ole32 ELF 5820000- 58ad000 Deferred rpcrt4 \-PE 5830000- 58ad000 \ rpcrt4 ELF 590d000- 59c5000 Deferred libfreetype.so.6 ELF 5bc9000- 5be0000 Deferred libz.so.1 ELF 5be4000- 5bf6000 Deferred libbz2.so.1 ELF 5bfe000- 5c3c000 Deferred libpng16.so.16 ELF 5c40000- 5c7d000 Deferred libfontconfig.so.1 ELF 5c81000- 5cab000 Deferred libexpat.so.1 ELF 5cb3000- 5cbf000 Deferred libxcursor.so.1 ELF 5cc3000- 5cca000 Deferred libxfixes.so.3 ELF 5d02000- 5d27000 Deferred imm32 \-PE 5d10000- 5d27000 \ imm32 ELF 5d2f000- 5dcf000 Dwarf winex11 \-PE 5d40000- 5dcf000 \ winex11 ELF 5ddb000- 5ddf000 Deferred libxinerama.so.1 ELF 5ddf000- 5de5000 Deferred libxxf86vm.so.1 ELF 5de9000- 5df5000 Deferred libxrender.so.1 ELF 5df9000- 5e06000 Deferred libxrandr.so.2 ELF 5e0a000- 5e0e000 Deferred libxcomposite.so.1 ELF 5e27000- 5e3a000 Deferred libxext.so.6 ELF 5e42000- 5f93000 Deferred libx11.so.6 ELF 5f9f000- 5fcb000 Deferred libxcb.so.1 ELF 5fcf000- 5fd3000 Deferred libxau.so.6 ELF 5fd7000- 5fde000 Deferred libxdmcp.so.6 ELF 5fde000- 5ffa000 Deferred libbsd.so.0 ELF 6001000- 6005000 Deferred libxcb-dri3.so.0 ELF 6005000- 6009000 Deferred libxcb-present.so.0 ELF 600d000- 6015000 Deferred libxcb-sync.so.1 ELF 6019000- 601c000 Deferred libxshmfence.so.1 ELF 6024000- 6028000 Deferred libxdamage.so.1 ELF 602c000- 602f000 Deferred libx11-xcb.so.1 ELF 6033000- 6039000 Deferred libxcb-dri2.so.0 ELF 604a000- 605d000 Deferred libxi.so.6 ELF 6069000- 606f000 Deferred libtxc_dxtn.so ELF 60c2000- 60ea000 Deferred libudev.so.1 ELF 60fa000- 6171000 Dwarf libgl.so.1 ELF 6271000- 62a8000 Deferred libglapi.so.0 ELF 62a8000- 62c5000 Deferred libxcb-glx.so.0 ELF 62c5000- 62d7000 Deferred libdrm.so.2 ELF 643f000- 647f000 Deferred libnettle.so.6 ELF 648b000- 6495000 Deferred libdrm_nouveau.so.2 ELF 669b000- 735d000 Dwarf radeonsi_dri.so ELF 7551000- 7576000 Deferred libdrm_intel.so.1 ELF 757a000- 7588000 Deferred libdrm_radeon.so.1 ELF 758c000- 7597000 Deferred libdrm_amdgpu.so.1 ELF 759b000- 75b8000 Deferred libelf.so.1 ELF 75cc000- 7626000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 762e000- 7631000 Deferred libllvmamdgpuutils.so.3.7 ELF 7639000- 763c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e71000- 7fe0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 82e0000- 83a8000 Deferred libllvmipo.so.3.7 ELF 83a8000- 83d2000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 87b3000- 885b000 Deferred libllvmvectorize.so.3.7 ELF 885b000- 8927000 Deferred libllvmamdgpudesc.so.3.7 ELF 8927000- 8963000 Deferred libllvmbitwriter.so.3.7 ELF 8963000- 8acb000 Deferred libllvmx86disassembler.so.3.7 ELF 8acb000- 8b6e000 Deferred libllvmx86asmparser.so.3.7 ELF 8b6e000- 8c3c000 Deferred libllvmasmprinter.so.3.7 ELF 8c64000- 8c67000 Deferred libllvmx86info.so.3.7 ELF 90b8000- 933e000 Deferred libllvmx86codegen.so.3.7 ELF 933e000- 937f000 Deferred libllvmprofiledata.so.3.7 ELF 937f000- 9427000 Deferred libllvminstrumentation.so.3.7 ELF 9427000- 9430000 Deferred libllvmmcdisassembler.so.3.7 ELF 9c81000- 9cb8000 Deferred libllvmipa.so.3.7 ELF 9e7e000- a187000 Deferred libllvmselectiondag.so.3.7 ELF a5a6000- a5b2000 Deferred libllvmx86utils.so.3.7 ELF a824000- ad12000 Deferred libllvmcodegen.so.3.7 ELF ae12000- ae5d000 Deferred libllvmx86asmprinter.so.3.7 ELF ae65000- ae75000 Deferred libllvmmcjit.so.3.7 ELF ae7d000- aea7000 Deferred libllvmexecutionengine.so.3.7 ELF aeab000- aebf000 Deferred libllvmtarget.so.3.7 ELF b0f3000- b1e2000 Deferred libllvminstcombine.so.3.7 ELF b3ce000- b690000 Deferred libllvmscalaropts.so.3.7 ELF b790000- b80e000 Deferred libllvmruntimedyld.so.3.7 ELF b80e000- b82a000 Deferred libgcc_s.so.1 ELF b82a000- b835000 Deferred libpciaccess.so.0 ELF c0c9000- c22f000 Deferred libllvmtransformutils.so.3.7 ELF c22f000- c26c000 Deferred libllvmmcparser.so.3.7 ELF c680000- c7dd000 Deferred libllvmx86desc.so.3.7 ELF c7dd000- c884000 Deferred libllvmobject.so.3.7 ELF ca50000- cd3d000 Deferred libllvmanalysis.so.3.7 ELF d34b000- d39c000 Deferred libllvmbitreader.so.3.7 ELF d39c000- d45b000 Deferred libllvmmc.so.3.7 ELF d65b000- d6b9000 Deferred libncurses.so.6 ELF da1d000- dd83000 Deferred libllvmcore.so.3.7 ELF de83000- dfa0000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001c8 (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001c9 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==27060== 164 bytes in 1 blocks are definitely lost in loss record 1,042 of 1,266 ==27060== at 0x7BC5067C: notify_alloc (heap.c:254) ==27060== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27060== by 0x4CB5D1F: DDRAW_Create (main.c:267) ==27060== by 0x4CB5F54: DirectDrawCreate (main.c:309) ==27060== by 0x4B22443: CreateDirectDraw (dsurface.c:41) ==27060== by 0x4B343E7: func_dsurface (dsurface.c:3347) ==27060== by 0x4B405B5: run_test (test.h:589) ==27060== by 0x4B409E1: main (test.h:671) ==27060== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DDRAW_Create fun:DirectDrawCreate fun:CreateDirectDraw fun:func_dsurface fun:run_test fun:main } Makefile:371: recipe for target 'dsurface.ok' failed make[1]: *** [dsurface.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M ddraw.dll -p ddraw_test.exe.so refcount && touch refcount.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6d0577c (thread 01cd), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06d0577c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06d0577c ESP:04c7e030 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:0713f000 ECX:046dfcc8 EDX:00200000 ESI:04669040 EDI:046dfcc8 Stack dump: 0x04c7e030: 04c7e06c 046d9614 00000003 00000002 0x04c7e040: 00007f30 00007f44 00000082 00007f4c 0x04c7e050: 00800000 00000000 00007f24 00007f28 0x04c7e060: 00007f2c 00000000 04668820 00007f54 0x04c7e070: 00000000 00000000 00000000 00000000 0x04c7e080: 00000000 00000000 00000000 e5c77f00 Backtrace: =>0 0x06d0577c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06cebfab in radeonsi_dri.so (+0x670faa) (0x04667bb8) 2 0x06cec332 in radeonsi_dri.so (+0x671331) (0x04c7e1c8) 3 0x06d6c6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c7e1c8) 4 0x066ab6fc in radeonsi_dri.so (+0x306fb) (0x046645f8) 5 0x06ae3f00 in radeonsi_dri.so (+0x468eff) (0x046645f8) 6 0x06ae393d in radeonsi_dri.so (+0x46893c) (0x046645f8) 7 0x069a481b in radeonsi_dri.so (+0x32981a) (0x046645f8) 8 0x069a0846 in radeonsi_dri.so (+0x325845) (0x04664570) 9 0x0611d722 in libgl.so.1 (+0x43721) (0x045b4988) 10 0x060f2a42 in libgl.so.1 (+0x18a41) (0x045b2460) 11 0x060ee60b in libgl.so.1 (+0x1460a) (0x04c7ec84) 12 0x060ee784 glXChooseVisual+0x63() in libgl.so.1 (0x04c7ec84) 13 0x05d5517f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c7ed58) 14 0x05d56bd7 init_opengl+0xfbe(once=0x5db3e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c7ef68) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c7efb8) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c7efe8) 17 0x05d57052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c7f018) 18 0x05d5f0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c7f038) 19 0x05d49e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6a70, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c7f068) 20 0x05109459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c7f098) 21 0x04d6fc8b wined3d_adapter_init+0xe0(adapter=0x48f34e8, ordinal=0, wined3d_creation_flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c7f4c8) 22 0x04d706bd wined3d_init+0xa5(wined3d=0x48f34d8, flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c7f4f8) 23 0x04df6b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c7f558) 24 0x04ca272a ddraw_init+0xda(ddraw=0x48f3420, flags=0xcb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04c7f738) 25 0x04cb5d86 DDRAW_Create+0x163(guid=(nil), DD=0x4c7f808, UnkOuter=(nil), iid=0x4b41260) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c7f798) 26 0x04cb6083 DirectDrawCreateEx+0xbc(driver_guid=, ddraw=, interface_iid=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:342] in ddraw (0x04c7f7d8) 27 0x04b3464a test_ddraw_objects+0x43() [/home/austin/wine-valgrind/dlls/ddraw/tests/refcount.c:57] in ddraw_test (0x04c7fcb8) 28 0x04b37018 func_refcount+0x50() [/home/austin/wine-valgrind/dlls/ddraw/tests/refcount.c:467] in ddraw_test (0x04c7fcc8) 29 0x04b405b6 run_test+0x96(name="refcount") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c7fd08) 30 0x04b409e2 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c7fdd8) 31 0x04b40a6f __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c7fe18) 32 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c7fe38) 33 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c7fe88) 34 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c7fea8) 35 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c7ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c7ff98) 36 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c7ffb8) 37 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c7ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c80000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe85f298) 40 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe85f318) 41 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe8601c8) 42 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe860208) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe860744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe860258) 44 0x7c000f80 main+0x145(argc=, argv=0xfe860744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe860698) 45 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06d0577c: repe Modules: Module Address Debug info Name (121 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4824000- 483f000 Deferred version \-PE 4830000- 483f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b7b000 Dwarf ddraw_test \-PE 4a10000- 4b7b000 \ ddraw_test ELF 4c80000- 4cff000 Dwarf ddraw \-PE 4c90000- 4cff000 \ ddraw ELF 4cff000- 4e5d000 Dwarf wined3d \-PE 4d10000- 4e5d000 \ wined3d ELF 505d000- 51a1000 Dwarf gdi32 \-PE 5070000- 51a1000 \ gdi32 ELF 51a1000- 5222000 Deferred advapi32 \-PE 51b0000- 5222000 \ advapi32 ELF 5222000- 5396000 Deferred user32 \-PE 5230000- 5396000 \ user32 ELF 5596000- 5718000 Deferred ole32 \-PE 55b0000- 5718000 \ ole32 ELF 5818000- 58a5000 Deferred rpcrt4 \-PE 5820000- 58a5000 \ rpcrt4 ELF 58f1000- 59a9000 Deferred libfreetype.so.6 ELF 5bad000- 5bc4000 Deferred libz.so.1 ELF 5bcc000- 5bde000 Deferred libbz2.so.1 ELF 5be2000- 5c20000 Deferred libpng16.so.16 ELF 5c24000- 5c61000 Deferred libfontconfig.so.1 ELF 5c69000- 5c93000 Deferred libexpat.so.1 ELF 5c97000- 5ca3000 Deferred libxcursor.so.1 ELF 5ca7000- 5cae000 Deferred libxfixes.so.3 ELF 5cee000- 5d13000 Deferred imm32 \-PE 5cf0000- 5d13000 \ imm32 ELF 5d17000- 5db7000 Dwarf winex11 \-PE 5d20000- 5db7000 \ winex11 ELF 5dc3000- 5dc7000 Deferred libxinerama.so.1 ELF 5dcb000- 5dd1000 Deferred libxxf86vm.so.1 ELF 5dd5000- 5de1000 Deferred libxrender.so.1 ELF 5de5000- 5df2000 Deferred libxrandr.so.2 ELF 5df6000- 5dfa000 Deferred libxcomposite.so.1 ELF 5e0b000- 5e1e000 Deferred libxext.so.6 ELF 5e22000- 5f73000 Deferred libx11.so.6 ELF 5f7f000- 5fab000 Deferred libxcb.so.1 ELF 5faf000- 5fb3000 Deferred libxau.so.6 ELF 5fb7000- 5fbe000 Deferred libxdmcp.so.6 ELF 5fbe000- 5fda000 Deferred libbsd.so.0 ELF 5fe1000- 5fe5000 Deferred libxcb-dri3.so.0 ELF 5fe5000- 5fe9000 Deferred libxcb-present.so.0 ELF 5fed000- 5ff5000 Deferred libxcb-sync.so.1 ELF 5ff9000- 5ffc000 Deferred libxshmfence.so.1 ELF 6004000- 6008000 Deferred libxdamage.so.1 ELF 600c000- 600f000 Deferred libx11-xcb.so.1 ELF 6013000- 6019000 Deferred libxcb-dri2.so.0 ELF 602a000- 603d000 Deferred libxi.so.6 ELF 6049000- 604f000 Deferred libtxc_dxtn.so ELF 60a2000- 60ca000 Deferred libudev.so.1 ELF 60da000- 6151000 Dwarf libgl.so.1 ELF 6251000- 6288000 Deferred libglapi.so.0 ELF 6288000- 62a5000 Deferred libxcb-glx.so.0 ELF 62a5000- 62b7000 Deferred libdrm.so.2 ELF 641f000- 645f000 Deferred libnettle.so.6 ELF 646b000- 6475000 Deferred libdrm_nouveau.so.2 ELF 667b000- 733d000 Dwarf radeonsi_dri.so ELF 7531000- 7556000 Deferred libdrm_intel.so.1 ELF 755a000- 7568000 Deferred libdrm_radeon.so.1 ELF 756c000- 7577000 Deferred libdrm_amdgpu.so.1 ELF 757b000- 7598000 Deferred libelf.so.1 ELF 75ac000- 7606000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 760e000- 7611000 Deferred libllvmamdgpuutils.so.3.7 ELF 7619000- 761c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e51000- 7fc0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 82c0000- 8388000 Deferred libllvmipo.so.3.7 ELF 8388000- 83b2000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8793000- 883b000 Deferred libllvmvectorize.so.3.7 ELF 883b000- 8907000 Deferred libllvmamdgpudesc.so.3.7 ELF 8907000- 8943000 Deferred libllvmbitwriter.so.3.7 ELF 8943000- 8aab000 Deferred libllvmx86disassembler.so.3.7 ELF 8aab000- 8b4e000 Deferred libllvmx86asmparser.so.3.7 ELF 8b4e000- 8c1c000 Deferred libllvmasmprinter.so.3.7 ELF 8c44000- 8c47000 Deferred libllvmx86info.so.3.7 ELF 9098000- 931e000 Deferred libllvmx86codegen.so.3.7 ELF 931e000- 935f000 Deferred libllvmprofiledata.so.3.7 ELF 935f000- 9407000 Deferred libllvminstrumentation.so.3.7 ELF 9407000- 9410000 Deferred libllvmmcdisassembler.so.3.7 ELF 9c61000- 9c98000 Deferred libllvmipa.so.3.7 ELF 9e5e000- a167000 Deferred libllvmselectiondag.so.3.7 ELF a586000- a592000 Deferred libllvmx86utils.so.3.7 ELF a804000- acf2000 Deferred libllvmcodegen.so.3.7 ELF adf2000- ae3d000 Deferred libllvmx86asmprinter.so.3.7 ELF ae45000- ae55000 Deferred libllvmmcjit.so.3.7 ELF ae5d000- ae87000 Deferred libllvmexecutionengine.so.3.7 ELF ae8b000- ae9f000 Deferred libllvmtarget.so.3.7 ELF b0d3000- b1c2000 Deferred libllvminstcombine.so.3.7 ELF b3ae000- b670000 Deferred libllvmscalaropts.so.3.7 ELF b770000- b7ee000 Deferred libllvmruntimedyld.so.3.7 ELF b7ee000- b80a000 Deferred libgcc_s.so.1 ELF b80a000- b815000 Deferred libpciaccess.so.0 ELF c0a9000- c20f000 Deferred libllvmtransformutils.so.3.7 ELF c20f000- c24c000 Deferred libllvmmcparser.so.3.7 ELF c660000- c7bd000 Deferred libllvmx86desc.so.3.7 ELF c7bd000- c864000 Deferred libllvmobject.so.3.7 ELF ca30000- cd1d000 Deferred libllvmanalysis.so.3.7 ELF d32b000- d37c000 Deferred libllvmbitreader.so.3.7 ELF d37c000- d43b000 Deferred libllvmmc.so.3.7 ELF d63b000- d699000 Deferred libncurses.so.6 ELF d9fd000- dd63000 Deferred libllvmcore.so.3.7 ELF de63000- df80000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001cc (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001cd 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==27081== 164 bytes in 1 blocks are definitely lost in loss record 1,042 of 1,266 ==27081== at 0x7BC5067C: notify_alloc (heap.c:254) ==27081== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27081== by 0x4CB5D1F: DDRAW_Create (main.c:267) ==27081== by 0x4CB6082: DirectDrawCreateEx (main.c:342) ==27081== by 0x4B34649: test_ddraw_objects (refcount.c:57) ==27081== by 0x4B37017: func_refcount (refcount.c:467) ==27081== by 0x4B405B5: run_test (test.h:589) ==27081== by 0x4B409E1: main (test.h:671) ==27081== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DDRAW_Create fun:DirectDrawCreateEx fun:test_ddraw_objects fun:func_refcount fun:run_test fun:main } Makefile:404: recipe for target 'refcount.ok' failed make[1]: *** [refcount.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M ddraw.dll -p ddraw_test.exe.so visual && touch visual.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x6d4477c (thread 01d1), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x06d4477c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06d4477c ESP:04c7e3e0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:0717e000 ECX:046dfcc8 EDX:00200000 ESI:04669040 EDI:046dfcc8 Stack dump: 0x04c7e3e0: 04c7e41c 046d9614 00000003 00000002 0x04c7e3f0: 00007f30 00007f44 00000082 00007f4c 0x04c7e400: 00800000 00000000 00007f24 00007f28 0x04c7e410: 00007f2c 00000000 04668820 00007f54 0x04c7e420: 00000000 00000000 00000000 00000000 0x04c7e430: 00000000 00000000 00000000 2a9a8300 Backtrace: =>0 0x06d4477c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06d2afab in radeonsi_dri.so (+0x670faa) (0x04667bb8) 2 0x06d2b332 in radeonsi_dri.so (+0x671331) (0x04c7e578) 3 0x06dab6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c7e578) 4 0x066ea6fc in radeonsi_dri.so (+0x306fb) (0x046645f8) 5 0x06b22f00 in radeonsi_dri.so (+0x468eff) (0x046645f8) 6 0x06b2293d in radeonsi_dri.so (+0x46893c) (0x046645f8) 7 0x069e381b in radeonsi_dri.so (+0x32981a) (0x046645f8) 8 0x069df846 in radeonsi_dri.so (+0x325845) (0x04664570) 9 0x0615c722 in libgl.so.1 (+0x43721) (0x045b4988) 10 0x06131a42 in libgl.so.1 (+0x18a41) (0x045b2460) 11 0x0612d60b in libgl.so.1 (+0x1460a) (0x04c7f034) 12 0x0612d784 glXChooseVisual+0x63() in libgl.so.1 (0x04c7f034) 13 0x05d8c17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c7f108) 14 0x05d8dbd7 init_opengl+0xfbe(once=0x5deae38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c7f318) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c7f368) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c7f398) 17 0x05d8e052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c7f3c8) 18 0x05d960e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c7f3e8) 19 0x05d80e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6a60, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c7f418) 20 0x05109459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c7f448) 21 0x04d6fc8b wined3d_adapter_init+0xe0(adapter=0x48f34d8, ordinal=0, wined3d_creation_flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04c7f878) 22 0x04d706bd wined3d_init+0xa5(wined3d=0x48f34c8, flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04c7f8a8) 23 0x04df6b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04c7f908) 24 0x04ca272a ddraw_init+0xda(ddraw=0x48f3410, flags=0xcb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04c7fae8) 25 0x04cb5d86 DDRAW_Create+0x163(guid=(nil), DD=0x4b7ad84, UnkOuter=(nil), iid=0x4b41260) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c7fb48) 26 0x04cb6083 DirectDrawCreateEx+0xbc(driver_guid=, ddraw=, interface_iid=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:342] in ddraw (0x04c7fb88) 27 0x04b37269 createObjects+0xc2() [/home/austin/wine-valgrind/dlls/ddraw/tests/visual.c:96] in ddraw_test (0x04c7fca8) 28 0x04b3f5d1 func_visual+0x16() [/home/austin/wine-valgrind/dlls/ddraw/tests/visual.c:1647] in ddraw_test (0x04c7fcc8) 29 0x04b405b6 run_test+0x96(name="visual") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c7fd08) 30 0x04b409e2 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c7fdd8) 31 0x04b40a6f __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c7fe18) 32 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04c7fe38) 33 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c7fe88) 34 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04c7fea8) 35 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4c7ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04c7ff98) 36 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04c7ffb8) 37 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c7ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4c80000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec59298) 40 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec59318) 41 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec5a1c8) 42 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec5a208) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec5a744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec5a258) 44 0x7c000f80 main+0x145(argc=, argv=0xfec5a744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec5a698) 45 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06d4477c: repe Modules: Module Address Debug info Name (121 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4b7b000 Dwarf ddraw_test \-PE 4a10000- 4b7b000 \ ddraw_test ELF 4c80000- 4cff000 Dwarf ddraw \-PE 4c90000- 4cff000 \ ddraw ELF 4cff000- 4e5d000 Dwarf wined3d \-PE 4d10000- 4e5d000 \ wined3d ELF 505d000- 51a1000 Dwarf gdi32 \-PE 5070000- 51a1000 \ gdi32 ELF 51a1000- 5222000 Deferred advapi32 \-PE 51b0000- 5222000 \ advapi32 ELF 5222000- 5396000 Deferred user32 \-PE 5230000- 5396000 \ user32 ELF 5596000- 55b1000 Deferred version \-PE 55a0000- 55b1000 \ version ELF 55b1000- 5733000 Deferred ole32 \-PE 55d0000- 5733000 \ ole32 ELF 5837000- 58c4000 Deferred rpcrt4 \-PE 5840000- 58c4000 \ rpcrt4 ELF 5924000- 59dc000 Deferred libfreetype.so.6 ELF 5be4000- 5bfb000 Deferred libz.so.1 ELF 5c03000- 5c15000 Deferred libbz2.so.1 ELF 5c1d000- 5c5b000 Deferred libpng16.so.16 ELF 5c5f000- 5c9c000 Deferred libfontconfig.so.1 ELF 5ca0000- 5cca000 Deferred libexpat.so.1 ELF 5cce000- 5cda000 Deferred libxcursor.so.1 ELF 5cde000- 5ce5000 Deferred libxfixes.so.3 ELF 5ced000- 5cf0000 Deferred libxshmfence.so.1 ELF 5d21000- 5d46000 Deferred imm32 \-PE 5d30000- 5d46000 \ imm32 ELF 5d4e000- 5dee000 Dwarf winex11 \-PE 5d60000- 5dee000 \ winex11 ELF 5dfa000- 5dfe000 Deferred libxinerama.so.1 ELF 5dfe000- 5e04000 Deferred libxxf86vm.so.1 ELF 5e08000- 5e14000 Deferred libxrender.so.1 ELF 5e18000- 5e25000 Deferred libxrandr.so.2 ELF 5e29000- 5e2d000 Deferred libxcomposite.so.1 ELF 5e39000- 5e3d000 Deferred libxcb-dri3.so.0 ELF 5e46000- 5e59000 Deferred libxext.so.6 ELF 5e61000- 5fb2000 Deferred libx11.so.6 ELF 5fbe000- 5fea000 Deferred libxcb.so.1 ELF 5fee000- 5ff2000 Deferred libxau.so.6 ELF 5ff6000- 5ffd000 Deferred libxdmcp.so.6 ELF 5ffd000- 6019000 Deferred libbsd.so.0 ELF 601d000- 6020000 Deferred libx11-xcb.so.1 ELF 6021000- 6025000 Deferred libxcb-present.so.0 ELF 6029000- 6031000 Deferred libxcb-sync.so.1 ELF 6039000- 603d000 Deferred libxdamage.so.1 ELF 603d000- 605a000 Deferred libxcb-glx.so.0 ELF 605e000- 6064000 Deferred libxcb-dri2.so.0 ELF 6069000- 607c000 Deferred libxi.so.6 ELF 6088000- 608e000 Deferred libtxc_dxtn.so ELF 60e9000- 6111000 Deferred libudev.so.1 ELF 6119000- 6190000 Dwarf libgl.so.1 ELF 6290000- 62c7000 Deferred libglapi.so.0 ELF 62c7000- 62d9000 Deferred libdrm.so.2 ELF 6445000- 6485000 Deferred libnettle.so.6 ELF 648d000- 64b2000 Deferred libdrm_intel.so.1 ELF 66ba000- 737c000 Dwarf radeonsi_dri.so ELF 7570000- 757a000 Deferred libdrm_nouveau.so.2 ELF 757a000- 7588000 Deferred libdrm_radeon.so.1 ELF 758c000- 7597000 Deferred libdrm_amdgpu.so.1 ELF 759b000- 75b8000 Deferred libelf.so.1 ELF 75c8000- 7670000 Deferred libllvmvectorize.so.3.7 ELF 7e90000- 7fff000 Deferred libllvmamdgpucodegen.so.3.7 ELF 82ff000- 83c7000 Deferred libllvmipo.so.3.7 ELF 83c7000- 83ca000 Deferred libllvmamdgpuutils.so.3.7 ELF 83ce000- 83d1000 Deferred libllvmamdgpuinfo.so.3.7 ELF 83d5000- 83ff000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 87d2000- 882c000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 882c000- 88f8000 Deferred libllvmamdgpudesc.so.3.7 ELF 88fc000- 8938000 Deferred libllvmbitwriter.so.3.7 ELF 893c000- 8aa4000 Deferred libllvmx86disassembler.so.3.7 ELF 8aa8000- 8b4b000 Deferred libllvmx86asmparser.so.3.7 ELF 90d7000- 935d000 Deferred libllvmx86codegen.so.3.7 ELF 935d000- 942b000 Deferred libllvmasmprinter.so.3.7 ELF 9443000- 944c000 Deferred libllvmmcdisassembler.so.3.7 ELF 9450000- 9453000 Deferred libllvmx86info.so.3.7 ELF 9ba0000- 9bd7000 Deferred libllvmipa.so.3.7 ELF 9d9d000- a0a6000 Deferred libllvmselectiondag.so.3.7 ELF a4c5000- a4d1000 Deferred libllvmx86utils.so.3.7 ELF a743000- ac31000 Deferred libllvmcodegen.so.3.7 ELF ad31000- ad72000 Deferred libllvmprofiledata.so.3.7 ELF ad72000- adbd000 Deferred libllvmx86asmprinter.so.3.7 ELF adc5000- add5000 Deferred libllvmmcjit.so.3.7 ELF addd000- ae07000 Deferred libllvmexecutionengine.so.3.7 ELF b012000- b101000 Deferred libllvminstcombine.so.3.7 ELF b2ed000- b5af000 Deferred libllvmscalaropts.so.3.7 ELF b6af000- b757000 Deferred libllvminstrumentation.so.3.7 ELF bfe8000- c14e000 Deferred libllvmtransformutils.so.3.7 ELF c14e000- c162000 Deferred libllvmtarget.so.3.7 ELF c16a000- c1a7000 Deferred libllvmmcparser.so.3.7 ELF c59f000- c6fc000 Deferred libllvmx86desc.so.3.7 ELF c6fc000- c77a000 Deferred libllvmruntimedyld.so.3.7 ELF c77a000- c7cb000 Deferred libllvmbitreader.so.3.7 ELF c96f000- cc5c000 Deferred libllvmanalysis.so.3.7 ELF cf5c000- d003000 Deferred libllvmobject.so.3.7 ELF d013000- d02f000 Deferred libgcc_s.so.1 ELF d037000- d042000 Deferred libpciaccess.so.0 ELF d36a000- d429000 Deferred libllvmmc.so.3.7 ELF d529000- d587000 Deferred libncurses.so.6 ELF da3c000- dda2000 Deferred libllvmcore.so.3.7 ELF dea2000- dfbf000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001d0 (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001d1 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==27113== 164 bytes in 1 blocks are definitely lost in loss record 1,042 of 1,266 ==27113== at 0x7BC5067C: notify_alloc (heap.c:254) ==27113== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27113== by 0x4CB5D1F: DDRAW_Create (main.c:267) ==27113== by 0x4CB6082: DirectDrawCreateEx (main.c:342) ==27113== by 0x4B37268: createObjects (visual.c:96) ==27113== by 0x4B3F5D0: func_visual (visual.c:1647) ==27113== by 0x4B405B5: run_test (test.h:589) ==27113== by 0x4B409E1: main (test.h:671) ==27113== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DDRAW_Create fun:DirectDrawCreateEx fun:createObjects fun:func_visual fun:run_test fun:main } Makefile:436: recipe for target 'visual.ok' failed make[1]: *** [visual.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ddraw/tests' Makefile:7747: recipe for target 'dlls/ddraw/tests/test' failed make: *** [dlls/ddraw/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ddrawex/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ddrawex.dll -p ddrawex_test.exe.so ddrawex && touch ddrawex.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x69af77c (thread 01d5), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x069af77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:069af77c ESP:04b0e3d0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06de9000 ECX:046cf718 EDX:00200000 ESI:04658a90 EDI:046cf718 Stack dump: 0x04b0e3d0: 04b0e40c 046c9064 00000003 00000002 0x04b0e3e0: 00007f30 00007f44 00000082 00007f4c 0x04b0e3f0: 00800000 00000000 00007f24 00007f28 0x04b0e400: 00007f2c 00000000 04658270 00007f54 0x04b0e410: 00000000 00000000 00000000 00000000 0x04b0e420: 00000000 00000000 00000000 ac1c2200 Backtrace: =>0 0x069af77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06995fab in radeonsi_dri.so (+0x670faa) (0x04657608) 2 0x06996332 in radeonsi_dri.so (+0x671331) (0x04b0e568) 3 0x06a166df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e568) 4 0x063556fc in radeonsi_dri.so (+0x306fb) (0x04654048) 5 0x0678df00 in radeonsi_dri.so (+0x468eff) (0x04654048) 6 0x0678d93d in radeonsi_dri.so (+0x46893c) (0x04654048) 7 0x0664e81b in radeonsi_dri.so (+0x32981a) (0x04654048) 8 0x0664a846 in radeonsi_dri.so (+0x325845) (0x04653fc0) 9 0x05bc7722 in libgl.so.1 (+0x43721) (0x045a43d8) 10 0x05b9ca42 in libgl.so.1 (+0x18a41) (0x045a1eb0) 11 0x05b9860b in libgl.so.1 (+0x1460a) (0x04b0f024) 12 0x05b98784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0f024) 13 0x0580317f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0f0f8) 14 0x05804bd7 init_opengl+0xfbe(once=0x5861e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f308) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f358) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f388) 17 0x05805052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f3b8) 18 0x0580d0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f3d8) 19 0x057f7e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6cd0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f408) 20 0x04bbc459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f438) 21 0x051f3c8b wined3d_adapter_init+0xe0(adapter=0x48f3748, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0f868) 22 0x051f46bd wined3d_init+0xa5(wined3d=0x48f3738, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0f898) 23 0x0527ab68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0f8f8) 24 0x0511a72a ddraw_init+0xda(ddraw=0x48f3680, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04b0fad8) 25 0x0512dd86 DDRAW_Create+0x163(guid=(nil), DD=0x4b0fbc8, UnkOuter=(nil), iid=0x515adb4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b0fb38) 26 0x0512df55 DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b0fb78) 27 0x050daf80 ddrawex_factory_CreateDirectDraw+0x172(iface=0x48f3640, guid=(nil), window=(nil), coop_level=, reserved=, outer_unknown=(nil), ddraw=0x4b0fc44) [/home/austin/wine-valgrind/dlls/ddrawex/ddraw.c:1438] in ddrawex (0x04b0fc08) 28 0x04825dd2 createDD+0x41() [/home/austin/wine-valgrind/dlls/ddrawex/tests/ddrawex.c:35] in ddrawex_test (0x04b0fc58) 29 0x04825e82 RefCountTest+0x21() [/home/austin/wine-valgrind/dlls/ddrawex/tests/ddrawex.c:49] in ddrawex_test (0x04b0fc88) 30 0x04826378 func_ddrawex+0x176() [/home/austin/wine-valgrind/dlls/ddrawex/tests/ddrawex.c:123] in ddrawex_test (0x04b0fcc8) 31 0x0482947a run_test+0x96(name="ddrawex") [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:589] in ddrawex_test (0x04b0fd08) 32 0x048298a6 main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:671] in ddrawex_test (0x04b0fdd8) 33 0x04829937 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddrawex_test (0x04b0fe18) 34 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 35 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 36 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 37 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 38 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 39 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea49288) 42 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea49308) 43 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea4a1b8) 44 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea4a1f8) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea4a734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea4a248) 46 0x7c000f80 main+0x145(argc=, argv=0xfea4a734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea4a688) 47 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069af77c: repe Modules: Module Address Debug info Name (119 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 482e000 Dwarf ddrawex_test \-PE 4820000- 482e000 \ ddrawex_test ELF 482e000- 4840000 Deferred libbz2.so.1 ELF 4844000- 485b000 Deferred libz.so.1 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4c54000 Dwarf gdi32 \-PE 4b20000- 4c54000 \ gdi32 ELF 4c54000- 4cd5000 Deferred advapi32 \-PE 4c60000- 4cd5000 \ advapi32 ELF 4d1e000- 4d21000 Deferred libxshmfence.so.1 ELF 4d21000- 4dd9000 Deferred libfreetype.so.6 ELF 4fd9000- 5017000 Deferred libpng16.so.16 ELF 5017000- 5054000 Deferred libfontconfig.so.1 ELF 5054000- 507e000 Deferred libexpat.so.1 ELF 507e000- 508a000 Deferred libxcursor.so.1 ELF 508e000- 5095000 Deferred libxfixes.so.3 ELF 509d000- 50a0000 Deferred libx11-xcb.so.1 ELF 50c4000- 50f0000 Dwarf ddrawex \-PE 50d0000- 50f0000 \ ddrawex ELF 50f8000- 5177000 Dwarf ddraw \-PE 5100000- 5177000 \ ddraw ELF 5183000- 52e1000 Dwarf wined3d \-PE 5190000- 52e1000 \ wined3d ELF 55f5000- 5769000 Deferred user32 \-PE 5610000- 5769000 \ user32 ELF 5775000- 5790000 Deferred version \-PE 5780000- 5790000 \ version ELF 5798000- 57bd000 Deferred imm32 \-PE 57a0000- 57bd000 \ imm32 ELF 57c5000- 5865000 Dwarf winex11 \-PE 57d0000- 5865000 \ winex11 ELF 5875000- 5879000 Deferred libxinerama.so.1 ELF 587d000- 5883000 Deferred libxxf86vm.so.1 ELF 5887000- 5893000 Deferred libxrender.so.1 ELF 5897000- 58a4000 Deferred libxrandr.so.2 ELF 58a8000- 58ac000 Deferred libxcomposite.so.1 ELF 58bd000- 58d0000 Deferred libxext.so.6 ELF 58d0000- 5a21000 Deferred libx11.so.6 ELF 5a25000- 5a51000 Deferred libxcb.so.1 ELF 5a59000- 5a5d000 Deferred libxau.so.6 ELF 5a5d000- 5a64000 Deferred libxdmcp.so.6 ELF 5a68000- 5a84000 Deferred libbsd.so.0 ELF 5a8c000- 5a90000 Deferred libxcb-dri3.so.0 ELF 5a91000- 5a95000 Deferred libxcb-present.so.0 ELF 5a95000- 5a9d000 Deferred libxcb-sync.so.1 ELF 5aa9000- 5aad000 Deferred libxdamage.so.1 ELF 5ab1000- 5ace000 Deferred libxcb-glx.so.0 ELF 5ad4000- 5ae7000 Deferred libxi.so.6 ELF 5af3000- 5af9000 Deferred libtxc_dxtn.so ELF 5b58000- 5b80000 Deferred libudev.so.1 ELF 5b84000- 5bfb000 Dwarf libgl.so.1 ELF 5cfb000- 5d32000 Deferred libglapi.so.0 ELF 5d36000- 5d3c000 Deferred libxcb-dri2.so.0 ELF 5d3c000- 5d4e000 Deferred libdrm.so.2 ELF 5dbe000- 5dfe000 Deferred libnettle.so.6 ELF 5e02000- 5e27000 Deferred libdrm_intel.so.1 ELF 5e2f000- 5e39000 Deferred libdrm_nouveau.so.2 ELF 5e3d000- 5e4b000 Deferred libdrm_radeon.so.1 ELF 5e4f000- 5e5a000 Deferred libdrm_amdgpu.so.1 ELF 5e5e000- 5e7b000 Deferred libelf.so.1 ELF 5e97000- 5ef1000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 5ef9000- 5efc000 Deferred libllvmamdgpuutils.so.3.7 ELF 5f00000- 5f03000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6325000- 6fe7000 Dwarf radeonsi_dri.so ELF 79fb000- 7b6a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7f7d000- 8045000 Deferred libllvmipo.so.3.7 ELF 8305000- 83ad000 Deferred libllvmvectorize.so.3.7 ELF 83ad000- 8479000 Deferred libllvmamdgpudesc.so.3.7 ELF 8479000- 84a3000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 84a3000- 84df000 Deferred libllvmbitwriter.so.3.7 ELF 84df000- 8647000 Deferred libllvmx86disassembler.so.3.7 ELF 8647000- 86ea000 Deferred libllvmx86asmparser.so.3.7 ELF 8b42000- 8dc8000 Deferred libllvmx86codegen.so.3.7 ELF 8dc8000- 8e96000 Deferred libllvmasmprinter.so.3.7 ELF 970b000- 9742000 Deferred libllvmipa.so.3.7 ELF 9908000- 9c11000 Deferred libllvmselectiondag.so.3.7 ELF a030000- a039000 Deferred libllvmmcdisassembler.so.3.7 ELF a2ae000- a79c000 Deferred libllvmcodegen.so.3.7 ELF a89c000- ab5e000 Deferred libllvmscalaropts.so.3.7 ELF ac5e000- ac61000 Deferred libllvmx86info.so.3.7 ELF af58000- af99000 Deferred libllvmprofiledata.so.3.7 ELF af99000- b041000 Deferred libllvminstrumentation.so.3.7 ELF b041000- b04d000 Deferred libllvmx86utils.so.3.7 ELF b165000- b254000 Deferred libllvminstcombine.so.3.7 ELF b254000- b29f000 Deferred libllvmx86asmprinter.so.3.7 ELF b29f000- b2af000 Deferred libllvmmcjit.so.3.7 ELF b2af000- b2c3000 Deferred libllvmtarget.so.3.7 ELF ba46000- ba70000 Deferred libllvmexecutionengine.so.3.7 ELF ba70000- baee000 Deferred libllvmruntimedyld.so.3.7 ELF bb1e000- bb29000 Deferred libpciaccess.so.0 ELF be15000- bf7b000 Deferred libllvmtransformutils.so.3.7 ELF c17b000- c2d8000 Deferred libllvmx86desc.so.3.7 ELF c2d8000- c37f000 Deferred libllvmobject.so.3.7 ELF c37f000- c39b000 Deferred libgcc_s.so.1 ELF c54b000- c838000 Deferred libllvmanalysis.so.3.7 ELF cd46000- cd83000 Deferred libllvmmcparser.so.3.7 ELF cd83000- cdd4000 Deferred libllvmbitreader.so.3.7 ELF cdd4000- ce93000 Deferred libllvmmc.so.3.7 ELF d518000- d87e000 Deferred libllvmcore.so.3.7 ELF d97e000- da9b000 Deferred libllvmsupport.so.3.7 ELF da9b000- daf9000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001d4 (D) Z:\home\austin\wine-valgrind\dlls\ddrawex\tests\ddrawex_test.exe 000001d5 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==27133== 12 bytes in 1 blocks are definitely lost in loss record 78 of 1,269 ==27133== at 0x7BC5067C: notify_alloc (heap.c:254) ==27133== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27133== by 0x50DBB58: DllGetClassObject (main.c:237) ==27133== by 0x48262D7: func_ddrawex (ddrawex.c:118) ==27133== by 0x4829479: run_test (test.h:589) ==27133== by 0x48298A5: main (test.h:671) ==27133== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DllGetClassObject fun:func_ddrawex fun:run_test fun:main } ==27133== 24 bytes in 1 blocks are definitely lost in loss record 271 of 1,269 ==27133== at 0x7BC5067C: notify_alloc (heap.c:254) ==27133== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27133== by 0x50DAF1F: ddrawex_factory_CreateDirectDraw (ddraw.c:1429) ==27133== by 0x4825DD1: createDD (ddrawex.c:35) ==27133== by 0x4825E81: RefCountTest (ddrawex.c:49) ==27133== by 0x4826377: func_ddrawex (ddrawex.c:123) ==27133== by 0x4829479: run_test (test.h:589) ==27133== by 0x48298A5: main (test.h:671) ==27133== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:ddrawex_factory_CreateDirectDraw fun:createDD fun:RefCountTest fun:func_ddrawex fun:run_test fun:main } Makefile:172: recipe for target 'ddrawex.ok' failed make[1]: *** [ddrawex.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M ddrawex.dll -p ddrawex_test.exe.so surface && touch surface.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x69af77c (thread 01d9), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x069af77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:069af77c ESP:04b0e2a0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06de9000 ECX:046cf728 EDX:00200000 ESI:04658aa0 EDI:046cf728 Stack dump: 0x04b0e2a0: 04b0e2dc 046c9074 00000003 00000002 0x04b0e2b0: 00007f30 00007f44 00000082 00007f4c 0x04b0e2c0: 00800000 00000000 00007f24 00007f28 0x04b0e2d0: 00007f2c 00000000 04658280 00007f54 0x04b0e2e0: 00000000 00000000 00000000 00000000 0x04b0e2f0: 00000000 00000000 00000000 568ae500 Backtrace: =>0 0x069af77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x06995fab in radeonsi_dri.so (+0x670faa) (0x04657618) 2 0x06996332 in radeonsi_dri.so (+0x671331) (0x04b0e438) 3 0x06a166df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e438) 4 0x063556fc in radeonsi_dri.so (+0x306fb) (0x04654058) 5 0x0678df00 in radeonsi_dri.so (+0x468eff) (0x04654058) 6 0x0678d93d in radeonsi_dri.so (+0x46893c) (0x04654058) 7 0x0664e81b in radeonsi_dri.so (+0x32981a) (0x04654058) 8 0x0664a846 in radeonsi_dri.so (+0x325845) (0x04653fd0) 9 0x05bc7722 in libgl.so.1 (+0x43721) (0x045a43e8) 10 0x05b9ca42 in libgl.so.1 (+0x18a41) (0x045a1ec0) 11 0x05b9860b in libgl.so.1 (+0x1460a) (0x04b0eef4) 12 0x05b98784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0eef4) 13 0x0580317f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0efc8) 14 0x05804bd7 init_opengl+0xfbe(once=0x5861e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f1d8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f228) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f258) 17 0x05805052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f288) 18 0x0580d0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f2a8) 19 0x057f7e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6cd0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f2d8) 20 0x04bbc459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f308) 21 0x051f3c8b wined3d_adapter_init+0xe0(adapter=0x48f3748, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0f738) 22 0x051f46bd wined3d_init+0xa5(wined3d=0x48f3738, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0f768) 23 0x0527ab68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0f7c8) 24 0x0511a72a ddraw_init+0xda(ddraw=0x48f3680, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4884] in ddraw (0x04b0f9a8) 25 0x0512dd86 DDRAW_Create+0x163(guid=(nil), DD=0x4b0fa98, UnkOuter=(nil), iid=0x515adb4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b0fa08) 26 0x0512df55 DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b0fa48) 27 0x050daf80 ddrawex_factory_CreateDirectDraw+0x172(iface=0x48f3640, guid=(nil), window=(nil), coop_level=, reserved=, outer_unknown=(nil), ddraw=0x4b0fb14) [/home/austin/wine-valgrind/dlls/ddrawex/ddraw.c:1438] in ddrawex (0x04b0fad8) 28 0x048264c5 createDD+0x41() [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:37] in ddrawex_test (0x04b0fb28) 29 0x0482681c GetDCTest_main+0x33(ddsd=0x4b0fb94, ddsd2=0x4b0fc00, testfunc=0x4826525) [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:77] in ddrawex_test (0x04b0fb78) 30 0x04826d3e GetDCTest+0xc3() [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:153] in ddrawex_test (0x04b0fc88) 31 0x048285c9 func_surface+0x203() [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:436] in ddrawex_test (0x04b0fcc8) 32 0x0482947a run_test+0x96(name="surface") [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:589] in ddrawex_test (0x04b0fd08) 33 0x048298a6 main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:671] in ddrawex_test (0x04b0fdd8) 34 0x04829937 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddrawex_test (0x04b0fe18) 35 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 36 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 37 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 38 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 39 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 40 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 41 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 42 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea02288) 43 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea02308) 44 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea031b8) 45 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea031f8) 46 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea03734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea03248) 47 0x7c000f80 main+0x145(argc=, argv=0xfea03734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea03688) 48 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069af77c: repe Modules: Module Address Debug info Name (119 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 482e000 Dwarf ddrawex_test \-PE 4820000- 482e000 \ ddrawex_test ELF 482e000- 4840000 Deferred libbz2.so.1 ELF 4844000- 485b000 Deferred libz.so.1 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4c54000 Dwarf gdi32 \-PE 4b20000- 4c54000 \ gdi32 ELF 4c54000- 4cd5000 Deferred advapi32 \-PE 4c60000- 4cd5000 \ advapi32 ELF 4d1e000- 4d21000 Deferred libxshmfence.so.1 ELF 4d21000- 4dd9000 Deferred libfreetype.so.6 ELF 4fd9000- 5017000 Deferred libpng16.so.16 ELF 5017000- 5054000 Deferred libfontconfig.so.1 ELF 5054000- 507e000 Deferred libexpat.so.1 ELF 507e000- 508a000 Deferred libxcursor.so.1 ELF 508e000- 5095000 Deferred libxfixes.so.3 ELF 509d000- 50a0000 Deferred libx11-xcb.so.1 ELF 50c4000- 50f0000 Dwarf ddrawex \-PE 50d0000- 50f0000 \ ddrawex ELF 50f8000- 5177000 Dwarf ddraw \-PE 5100000- 5177000 \ ddraw ELF 5183000- 52e1000 Dwarf wined3d \-PE 5190000- 52e1000 \ wined3d ELF 55f5000- 5769000 Deferred user32 \-PE 5610000- 5769000 \ user32 ELF 5775000- 5790000 Deferred version \-PE 5780000- 5790000 \ version ELF 5798000- 57bd000 Deferred imm32 \-PE 57a0000- 57bd000 \ imm32 ELF 57c5000- 5865000 Dwarf winex11 \-PE 57d0000- 5865000 \ winex11 ELF 5875000- 5879000 Deferred libxinerama.so.1 ELF 587d000- 5883000 Deferred libxxf86vm.so.1 ELF 5887000- 5893000 Deferred libxrender.so.1 ELF 5897000- 58a4000 Deferred libxrandr.so.2 ELF 58a8000- 58ac000 Deferred libxcomposite.so.1 ELF 58bd000- 58d0000 Deferred libxext.so.6 ELF 58d0000- 5a21000 Deferred libx11.so.6 ELF 5a25000- 5a51000 Deferred libxcb.so.1 ELF 5a59000- 5a5d000 Deferred libxau.so.6 ELF 5a5d000- 5a64000 Deferred libxdmcp.so.6 ELF 5a68000- 5a84000 Deferred libbsd.so.0 ELF 5a8c000- 5a90000 Deferred libxcb-dri3.so.0 ELF 5a91000- 5a95000 Deferred libxcb-present.so.0 ELF 5a95000- 5a9d000 Deferred libxcb-sync.so.1 ELF 5aa9000- 5aad000 Deferred libxdamage.so.1 ELF 5ab1000- 5ace000 Deferred libxcb-glx.so.0 ELF 5ad4000- 5ae7000 Deferred libxi.so.6 ELF 5af3000- 5af9000 Deferred libtxc_dxtn.so ELF 5b58000- 5b80000 Deferred libudev.so.1 ELF 5b84000- 5bfb000 Dwarf libgl.so.1 ELF 5cfb000- 5d32000 Deferred libglapi.so.0 ELF 5d36000- 5d3c000 Deferred libxcb-dri2.so.0 ELF 5d3c000- 5d4e000 Deferred libdrm.so.2 ELF 5dbe000- 5dfe000 Deferred libnettle.so.6 ELF 5e02000- 5e27000 Deferred libdrm_intel.so.1 ELF 5e2f000- 5e39000 Deferred libdrm_nouveau.so.2 ELF 5e3d000- 5e4b000 Deferred libdrm_radeon.so.1 ELF 5e4f000- 5e5a000 Deferred libdrm_amdgpu.so.1 ELF 5e5e000- 5e7b000 Deferred libelf.so.1 ELF 5e97000- 5ef1000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 5ef9000- 5efc000 Deferred libllvmamdgpuutils.so.3.7 ELF 5f00000- 5f03000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6325000- 6fe7000 Dwarf radeonsi_dri.so ELF 79fb000- 7b6a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7f7d000- 8045000 Deferred libllvmipo.so.3.7 ELF 8305000- 83ad000 Deferred libllvmvectorize.so.3.7 ELF 83ad000- 8479000 Deferred libllvmamdgpudesc.so.3.7 ELF 8479000- 84a3000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 84a3000- 84df000 Deferred libllvmbitwriter.so.3.7 ELF 84df000- 8647000 Deferred libllvmx86disassembler.so.3.7 ELF 8647000- 86ea000 Deferred libllvmx86asmparser.so.3.7 ELF 8b42000- 8dc8000 Deferred libllvmx86codegen.so.3.7 ELF 8dc8000- 8e96000 Deferred libllvmasmprinter.so.3.7 ELF 970b000- 9742000 Deferred libllvmipa.so.3.7 ELF 9908000- 9c11000 Deferred libllvmselectiondag.so.3.7 ELF a030000- a039000 Deferred libllvmmcdisassembler.so.3.7 ELF a2ae000- a79c000 Deferred libllvmcodegen.so.3.7 ELF a89c000- ab5e000 Deferred libllvmscalaropts.so.3.7 ELF ac5e000- ac61000 Deferred libllvmx86info.so.3.7 ELF af58000- af99000 Deferred libllvmprofiledata.so.3.7 ELF af99000- b041000 Deferred libllvminstrumentation.so.3.7 ELF b041000- b04d000 Deferred libllvmx86utils.so.3.7 ELF b165000- b254000 Deferred libllvminstcombine.so.3.7 ELF b254000- b29f000 Deferred libllvmx86asmprinter.so.3.7 ELF b29f000- b2af000 Deferred libllvmmcjit.so.3.7 ELF b2af000- b2c3000 Deferred libllvmtarget.so.3.7 ELF ba46000- ba70000 Deferred libllvmexecutionengine.so.3.7 ELF ba70000- baee000 Deferred libllvmruntimedyld.so.3.7 ELF bb1e000- bb29000 Deferred libpciaccess.so.0 ELF be15000- bf7b000 Deferred libllvmtransformutils.so.3.7 ELF c17b000- c2d8000 Deferred libllvmx86desc.so.3.7 ELF c2d8000- c37f000 Deferred libllvmobject.so.3.7 ELF c37f000- c39b000 Deferred libgcc_s.so.1 ELF c54b000- c838000 Deferred libllvmanalysis.so.3.7 ELF cd46000- cd83000 Deferred libllvmmcparser.so.3.7 ELF cd83000- cdd4000 Deferred libllvmbitreader.so.3.7 ELF cdd4000- ce93000 Deferred libllvmmc.so.3.7 ELF d518000- d87e000 Deferred libllvmcore.so.3.7 ELF d97e000- da9b000 Deferred libllvmsupport.so.3.7 ELF da9b000- daf9000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 000001d8 (D) Z:\home\austin\wine-valgrind\dlls\ddrawex\tests\ddrawex_test.exe 000001d9 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==27153== 12 bytes in 1 blocks are definitely lost in loss record 78 of 1,270 ==27153== at 0x7BC5067C: notify_alloc (heap.c:254) ==27153== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27153== by 0x50DBB58: DllGetClassObject (main.c:237) ==27153== by 0x48284A1: func_surface (surface.c:422) ==27153== by 0x4829479: run_test (test.h:589) ==27153== by 0x48298A5: main (test.h:671) ==27153== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DllGetClassObject fun:func_surface fun:run_test fun:main } ==27153== 24 bytes in 1 blocks are definitely lost in loss record 271 of 1,270 ==27153== at 0x7BC5067C: notify_alloc (heap.c:254) ==27153== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27153== by 0x50DAF1F: ddrawex_factory_CreateDirectDraw (ddraw.c:1429) ==27153== by 0x48264C4: createDD (surface.c:37) ==27153== by 0x482681B: GetDCTest_main (surface.c:77) ==27153== by 0x4826D3D: GetDCTest (surface.c:153) ==27153== by 0x48285C8: func_surface (surface.c:436) ==27153== by 0x4829479: run_test (test.h:589) ==27153== by 0x48298A5: main (test.h:671) ==27153== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:ddrawex_factory_CreateDirectDraw fun:createDD fun:GetDCTest_main fun:GetDCTest fun:func_surface fun:run_test fun:main } Makefile:203: recipe for target 'surface.ok' failed make[1]: *** [surface.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ddrawex/tests' Makefile:7782: recipe for target 'dlls/ddrawex/tests/test' failed make: *** [dlls/ddrawex/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/devenum/tests' ../../../tools/runtest -q -P wine -T ../../.. -M devenum.dll -p devenum_test.exe.so devenum && touch devenum.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/devenum/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dinput/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dinput.dll -p dinput_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dinput.dll -p dinput_test.exe.so dinput && touch dinput.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dinput.dll -p dinput_test.exe.so joystick && touch joystick.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dinput.dll -p dinput_test.exe.so keyboard && touch keyboard.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dinput.dll -p dinput_test.exe.so mouse && touch mouse.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dinput/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dinput8/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dinput8.dll -p dinput8_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dinput8.dll -p dinput8_test.exe.so dinput && touch dinput.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dinput8/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dispex/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dispex.dll -p dispex_test.exe.so marshal && touch marshal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dispex/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmband/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmband.dll -p dmband_test.exe.so dmband && touch dmband.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmband/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmcompos/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmcompos.dll -p dmcompos_test.exe.so dmcompos && touch dmcompos.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 dmcompos.c:154: Tests skipped: DirectMusicTemplate not implemented make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmcompos/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmime/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmime.dll -p dmime_test.exe.so dmime && touch dmime.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dmime.dll -p dmime_test.exe.so performance && touch performance.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmime/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmloader/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmloader.dll -p dmloader_test.exe.so loader && touch loader.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmloader/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmscript/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmscript.dll -p dmscript_test.exe.so dmscript && touch dmscript.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmscript/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmstyle/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmstyle.dll -p dmstyle_test.exe.so dmstyle && touch dmstyle.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 dmstyle.c:122: Tests skipped: DirectMusicSection not implemented make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmstyle/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmsynth/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmsynth.dll -p dmsynth_test.exe.so dmsynth && touch dmsynth.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmsynth/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dmusic/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dmusic.dll -p dmusic_test.exe.so dmusic && touch dmusic.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dmusic/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dnsapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dnsapi.dll -p dnsapi_test.exe.so name && touch name.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dnsapi.dll -p dnsapi_test.exe.so record && touch record.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dnsapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dplayx/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dplayx.dll -p dplayx_test.exe.so dplayx && touch dplayx.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 dplayx.c:6665: Tests skipped: Run in interactive mode to run dplayx tests. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dplayx/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dpnet/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dpnet.dll -p dpnet_test.exe.so address && touch address.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dpnet.dll -p dpnet_test.exe.so client && touch client.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dpnet.dll -p dpnet_test.exe.so peer && touch peer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dpnet.dll -p dpnet_test.exe.so server && touch server.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dpnet/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dpvoice/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dpvoice.dll -p dpvoice_test.exe.so voice && touch voice.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 voice.c:547: Tests skipped: client failed to initialize make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dpvoice/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dsound/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so capture && touch capture.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so ds3d && touch ds3d.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so ds3d8 && touch ds3d8.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so dsound && touch dsound.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so dsound8 && touch dsound8.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so duplex && touch duplex.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dsound.dll -p dsound_test.exe.so propset && touch propset.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dsound/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dssenh/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dssenh.dll -p dssenh_test.exe.so dssenh && touch dssenh.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 dssenh.c:79: Tests skipped: DSS csp is currently not available, skipping tests. dssenh.c:356: Tests skipped: DSSENH is currently not available, skipping key length tests. dssenh.c:452: Tests skipped: DSSENH is currently not available, skipping hashing tests. dssenh.c:606: Tests skipped: DSSENH is currently not available, skipping encryption tests. dssenh.c:697: Tests skipped: DSSENH is currently not available, skipping block cipher mode tests. dssenh.c:980: Tests skipped: DSSENH is currently not available, skipping signature verification tests. dssenh.c:1375: Tests skipped: DSSENH is currently not available, skipping shared key tests. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dssenh/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dswave/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dswave.dll -p dswave_test.exe.so dswave && touch dswave.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dswave/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dwrite/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dwrite.dll -p dwrite_test.exe.so analyzer && touch analyzer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M dwrite.dll -p dwrite_test.exe.so font && touch font.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 font.c:3968: Tests skipped: Courier New font not found. font.c:5067: Tests skipped: Skipping tests with Arial font.c:6037: Tests skipped: Segoe UI Emoji font not found. font.c:6144: Tests skipped: Segoe UI Emoji font not found. ../../../tools/runtest -q -P wine -T ../../.. -M dwrite.dll -p dwrite_test.exe.so layout && touch layout.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==27905== Invalid read of size 2 ==27905== at 0x4BC6F59: layout_add_effective_run (layout.c:1272) ==27905== by 0x4BC84EF: layout_compute_effective_runs (layout.c:1798) ==27905== by 0x4BCD4A8: dwritetextlayout_GetLineMetrics (layout.c:3369) ==27905== by 0x4A6BBC5: IDWriteTextLayout_GetLineMetrics (dwrite.h:5340) ==27905== by 0x4A6BBC5: test_SetWordWrapping (???:0) ==27905== by 0x4A72540: func_layout (layout.c:5124) ==27905== by 0x4A7332A: run_test (test.h:589) ==27905== by 0x4A73756: main (test.h:671) ==27905== Address 0x66b909a is 0 bytes after a recently re-allocated block of size 2 alloc'd ==27905== at 0x7BC5067C: notify_alloc (heap.c:254) ==27905== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==27905== by 0x4BC3C73: heap_alloc (dwrite_private.h:35) ==27905== by 0x4BC5B89: layout_compute_runs (layout.c:949) ==27905== by 0x4BC67EE: layout_compute (layout.c:1086) ==27905== by 0x4BC8177: layout_compute_effective_runs (layout.c:1743) ==27905== by 0x4BCD4A8: dwritetextlayout_GetLineMetrics (layout.c:3369) ==27905== by 0x4A6BA8A: IDWriteTextLayout_GetLineMetrics (dwrite.h:5340) ==27905== by 0x4A6BA8A: test_SetWordWrapping (???:0) ==27905== by 0x4A72540: func_layout (layout.c:5124) ==27905== by 0x4A7332A: run_test (test.h:589) ==27905== by 0x4A73756: main (test.h:671) ==27905== { Memcheck:Addr2 fun:layout_add_effective_run fun:layout_compute_effective_runs fun:dwritetextlayout_GetLineMetrics fun:IDWriteTextLayout_GetLineMetrics fun:test_SetWordWrapping fun:func_layout fun:run_test fun:main } layout.c:4504: Tests skipped: IDWriteFontFallbackBuilder is not supported make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dwrite/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dxdiagn/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dxdiagn.dll -p dxdiagn_test.exe.so container && touch container.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x74ca77c (thread 0164), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x074ca77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:074ca77c ESP:04b0d5b0 EBP:00028350 EFLAGS:00200004( - -- - -P- ) EAX:00000003 EBX:07904000 ECX:047b91f0 EDX:00200000 ESI:04742568 EDI:047b91f0 Stack dump: 0x04b0d5b0: 04b0d5ec 047b2b3c 00000003 00000002 0x04b0d5c0: 00007f30 00007f44 00000082 00007f4c 0x04b0d5d0: 00800000 00000000 00007f24 00007f28 0x04b0d5e0: 00007f2c 00000000 04741d48 00007f54 0x04b0d5f0: 00000000 00000000 00000000 00000000 0x04b0d600: 00000000 00000000 00000000 cf29cf00 Backtrace: =>0 0x074ca77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x074b0fab in radeonsi_dri.so (+0x670faa) (0x047410e0) 2 0x074b1332 in radeonsi_dri.so (+0x671331) (0x04b0d748) 3 0x075316df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0d748) 4 0x06e706fc in radeonsi_dri.so (+0x306fb) (0x0473db20) 5 0x072a8f00 in radeonsi_dri.so (+0x468eff) (0x0473db20) 6 0x072a893d in radeonsi_dri.so (+0x46893c) (0x0473db20) 7 0x0716981b in radeonsi_dri.so (+0x32981a) (0x0473db20) 8 0x07165846 in radeonsi_dri.so (+0x325845) (0x0473da98) 9 0x06d90722 in libgl.so.1 (+0x43721) (0x0468e338) 10 0x06d65a42 in libgl.so.1 (+0x18a41) (0x0468be10) 11 0x06d6160b in libgl.so.1 (+0x1460a) (0x04b0e204) 12 0x06d61784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0e204) 13 0x0597d17f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0e2d8) 14 0x0597ebd7 init_opengl+0xfbe(once=0x59dbe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0e4e8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0e538) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0e568) 17 0x0597f052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0e598) 18 0x059870e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0e5b8) 19 0x05971e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49169b0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0e5e8) 20 0x053a5459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0e618) 21 0x05da9c8b wined3d_adapter_init+0xe0(adapter=0x4913428, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0ea48) 22 0x05daa6bd wined3d_init+0xa5(wined3d=0x4913418, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0ea78) 23 0x05e30b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0ead8) 24 0x05d19653 d3d9_init+0x4d(d3d9=0x49133f8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04b0eb18) 25 0x05d0ae6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04b0eb68) 26 0x05ce376d fill_display_information_d3d+0x33(node=0x4913380) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:912] in dxdiagn (0x04b0fba8) 27 0x05ce4466 build_displaydevices_tree+0x10(node=0x4913380) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1191] in dxdiagn (0x04b0fbd8) 28 0x05ce59a2 build_information_tree+0x83(pinfo_root=0x48fac84) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1749] in dxdiagn (0x04b0fc08) 29 0x05ce192b IDxDiagProviderImpl_Initialize+0xb5(iface=, pParams=) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:155] in dxdiagn (0x04b0fc48) 30 0x048261d1 create_root_IDxDiagContainer+0x84() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/container.c:82] in dxdiagn_test (0x04b0fc98) 31 0x04826265 test_GetNumberOfChildContainers+0x21() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/container.c:99] in dxdiagn_test (0x04b0fcb8) 32 0x04829997 func_container+0x23() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/container.c:1026] in dxdiagn_test (0x04b0fcc8) 33 0x0482ae13 run_test+0x96(name="container") [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:589] in dxdiagn_test (0x04b0fd08) 34 0x0482b23f main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:671] in dxdiagn_test (0x04b0fdd8) 35 0x0482b2d0 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in dxdiagn_test (0x04b0fe18) 36 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 37 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 38 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 39 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 40 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 41 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 42 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 43 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfed1c288) 44 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfed1c308) 45 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfed1d1b8) 46 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfed1d1f8) 47 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfed1d734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfed1d248) 48 0x7c000f80 main+0x145(argc=, argv=0xfed1d734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfed1d688) 49 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x074ca77c: repe Modules: Module Address Debug info Name (145 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4831000 Dwarf dxdiagn_test \-PE 4820000- 4831000 \ dxdiagn_test ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4c82000 Deferred oleaut32 \-PE 4b30000- 4c82000 \ oleaut32 ELF 4c82000- 4e04000 Deferred ole32 \-PE 4ca0000- 4e04000 \ ole32 ELF 5004000- 5085000 Deferred advapi32 \-PE 5010000- 5085000 \ advapi32 ELF 5085000- 51f9000 Deferred user32 \-PE 50a0000- 51f9000 \ user32 ELF 52f9000- 543d000 Dwarf gdi32 \-PE 5310000- 543d000 \ gdi32 ELF 543d000- 54ca000 Deferred rpcrt4 \-PE 5450000- 54ca000 \ rpcrt4 ELF 551e000- 55d6000 Deferred libfreetype.so.6 ELF 57da000- 57f1000 Deferred libz.so.1 ELF 57f9000- 580b000 Deferred libbz2.so.1 ELF 580f000- 584d000 Deferred libpng16.so.16 ELF 5851000- 588e000 Deferred libfontconfig.so.1 ELF 5896000- 58c0000 Deferred libexpat.so.1 ELF 58c4000- 58d0000 Deferred libxcursor.so.1 ELF 58d4000- 58db000 Deferred libxfixes.so.3 ELF 58f7000- 58fa000 Deferred libxshmfence.so.1 ELF 5912000- 5937000 Deferred imm32 \-PE 5920000- 5937000 \ imm32 ELF 593f000- 59df000 Dwarf winex11 \-PE 5950000- 59df000 \ winex11 ELF 59eb000- 59ef000 Deferred libxinerama.so.1 ELF 59ef000- 59f5000 Deferred libxxf86vm.so.1 ELF 59f9000- 5a05000 Deferred libxrender.so.1 ELF 5a09000- 5a16000 Deferred libxrandr.so.2 ELF 5a1a000- 5a1e000 Deferred libxcomposite.so.1 ELF 5a37000- 5a4a000 Deferred libxext.so.6 ELF 5a52000- 5ba3000 Deferred libx11.so.6 ELF 5bab000- 5bd7000 Deferred libxcb.so.1 ELF 5bdb000- 5bdf000 Deferred libxau.so.6 ELF 5bdf000- 5be6000 Deferred libxdmcp.so.6 ELF 5bee000- 5c0a000 Deferred libbsd.so.0 ELF 5c5a000- 5c6d000 Deferred libxi.so.6 ELF 5c6d000- 5cab000 Deferred wbemprox \-PE 5c70000- 5cab000 \ wbemprox ELF 5cbb000- 5cbe000 Deferred libx11-xcb.so.1 ELF 5cce000- 5cf6000 Dwarf dxdiagn \-PE 5cd0000- 5cf6000 \ dxdiagn ELF 5cf6000- 5d39000 Dwarf d3d9 \-PE 5d00000- 5d39000 \ d3d9 ELF 5d39000- 5e97000 Dwarf wined3d \-PE 5d50000- 5e97000 \ wined3d ELF 63ab000- 642a000 Deferred ddraw \-PE 63b0000- 642a000 \ ddraw ELF 642a000- 643e000 Deferred psapi \-PE 6430000- 643e000 \ psapi ELF 644d000- 6450000 Deferred libllvmamdgpuutils.so.3.7 ELF 64a9000- 64af000 Deferred libtxc_dxtn.so ELF 64ca000- 650e000 Deferred winspool \-PE 64d0000- 650e000 \ winspool ELF 650e000- 653a000 Deferred iphlpapi \-PE 6510000- 653a000 \ iphlpapi ELF 653e000- 6569000 Deferred dxgi \-PE 6540000- 6569000 \ dxgi ELF 658a000- 65a2000 Deferred libresolv.so.2 ELF 65a6000- 65df000 Deferred ws2_32 \-PE 65b0000- 65df000 \ ws2_32 ELF 6613000- 6617000 Deferred libxcb-dri3.so.0 ELF 661b000- 661f000 Deferred libxcb-present.so.0 ELF 661f000- 6627000 Deferred libxcb-sync.so.1 ELF 662b000- 66b0000 Deferred libcups.so.2 ELF 67b0000- 68e6000 Deferred libgnutls.so.28 ELF 6be6000- 6bfb000 Deferred libtasn1.so.6 ELF 6bfb000- 6c3b000 Deferred libnettle.so.6 ELF 6c3f000- 6c76000 Deferred libhogweed.so.4 ELF 6c7a000- 6cf1000 Deferred libgmp.so.10 ELF 6d19000- 6d41000 Deferred libudev.so.1 ELF 6d4d000- 6dc4000 Dwarf libgl.so.1 ELF 6dc4000- 6dfb000 Deferred libglapi.so.0 ELF 6dfb000- 6dff000 Deferred libxdamage.so.1 ELF 6e03000- 6e20000 Deferred libxcb-glx.so.0 ELF 6e24000- 6e2a000 Deferred libxcb-dri2.so.0 ELF 6e2e000- 6e40000 Deferred libdrm.so.2 ELF 6e40000- 7b02000 Dwarf radeonsi_dri.so ELF 7b4e000- 7b73000 Deferred libdrm_intel.so.1 ELF 7b73000- 7b7d000 Deferred libdrm_nouveau.so.2 ELF 7b7d000- 7b8b000 Deferred libdrm_radeon.so.1 ELF 7b8f000- 7b9a000 Deferred libdrm_amdgpu.so.1 ELF 7b9e000- 7bbb000 Deferred libelf.so.1 ELF 7be3000- 7be6000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8102000- 8271000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8471000- 84cb000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 84cb000- 84f5000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8c16000- 8cde000 Deferred libllvmipo.so.3.7 ELF 90e9000- 9191000 Deferred libllvmvectorize.so.3.7 ELF 9191000- 925d000 Deferred libllvmamdgpudesc.so.3.7 ELF 925d000- 9299000 Deferred libllvmbitwriter.so.3.7 ELF 9299000- 9401000 Deferred libllvmx86disassembler.so.3.7 ELF 9401000- 94a4000 Deferred libllvmx86asmparser.so.3.7 ELF 94a4000- 972a000 Deferred libllvmx86codegen.so.3.7 ELF 982a000- 98f8000 Deferred libllvmasmprinter.so.3.7 ELF 98f8000- 9901000 Deferred libllvmmcdisassembler.so.3.7 ELF 9901000- 9904000 Deferred libllvmx86info.so.3.7 ELF a05d000- a09e000 Deferred libllvmprofiledata.so.3.7 ELF a09e000- a0d5000 Deferred libllvmipa.so.3.7 ELF a526000- a532000 Deferred libllvmx86utils.so.3.7 ELF a532000- a542000 Deferred libllvmmcjit.so.3.7 ELF a546000- a55a000 Deferred libllvmtarget.so.3.7 ELF a723000- aa2c000 Deferred libllvmselectiondag.so.3.7 ELF b0c9000- b5b7000 Deferred libllvmcodegen.so.3.7 ELF b6b7000- b75f000 Deferred libllvminstrumentation.so.3.7 ELF b75f000- b789000 Deferred libllvmexecutionengine.so.3.7 ELF b9a5000- b9f0000 Deferred libllvmx86asmprinter.so.3.7 ELF b9f0000- ba6e000 Deferred libllvmruntimedyld.so.3.7 ELF bc73000- bd62000 Deferred libllvminstcombine.so.3.7 ELF c238000- c39e000 Deferred libllvmtransformutils.so.3.7 ELF c49e000- c4db000 Deferred libllvmmcparser.so.3.7 ELF c4db000- c4e6000 Deferred libpciaccess.so.0 ELF c99c000- cc5e000 Deferred libllvmscalaropts.so.3.7 ELF d047000- d063000 Deferred libgcc_s.so.1 ELF d217000- d374000 Deferred libllvmx86desc.so.3.7 ELF d374000- d661000 Deferred libllvmanalysis.so.3.7 ELF d861000- d908000 Deferred libllvmobject.so.3.7 ELF d908000- d959000 Deferred libllvmbitreader.so.3.7 ELF db6f000- dc2e000 Deferred libllvmmc.so.3.7 ELF de2e000- de8c000 Deferred libncurses.so.6 ELF e341000- e6a7000 Deferred libllvmcore.so.3.7 ELF e7a7000- e8c4000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000165 (D) Z:\home\austin\wine-valgrind\dlls\dxdiagn\tests\dxdiagn_test.exe 00000164 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:172: recipe for target 'container.ok' failed make[1]: *** [container.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M dxdiagn.dll -p dxdiagn_test.exe.so provider && touch provider.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x74db77c (thread 0168), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x074db77c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:074db77c ESP:04b0d5d0 EBP:00028350 EFLAGS:00200004( - -- - -P- ) EAX:00000003 EBX:07915000 ECX:047b91f0 EDX:00200000 ESI:04742568 EDI:047b91f0 Stack dump: 0x04b0d5d0: 04b0d60c 047b2b3c 00000003 00000002 0x04b0d5e0: 00007f30 00007f44 00000082 00007f4c 0x04b0d5f0: 00800000 00000000 00007f24 00007f28 0x04b0d600: 00007f2c 00000000 04741d48 00007f54 0x04b0d610: 00000000 00000000 00000000 00000000 0x04b0d620: 00000000 00000000 00000000 f972e500 Backtrace: =>0 0x074db77c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x074c1fab in radeonsi_dri.so (+0x670faa) (0x047410e0) 2 0x074c2332 in radeonsi_dri.so (+0x671331) (0x04b0d768) 3 0x075426df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0d768) 4 0x06e816fc in radeonsi_dri.so (+0x306fb) (0x0473db20) 5 0x072b9f00 in radeonsi_dri.so (+0x468eff) (0x0473db20) 6 0x072b993d in radeonsi_dri.so (+0x46893c) (0x0473db20) 7 0x0717a81b in radeonsi_dri.so (+0x32981a) (0x0473db20) 8 0x07176846 in radeonsi_dri.so (+0x325845) (0x0473da98) 9 0x06d9d722 in libgl.so.1 (+0x43721) (0x0468e338) 10 0x06d72a42 in libgl.so.1 (+0x18a41) (0x0468be10) 11 0x06d6e60b in libgl.so.1 (+0x1460a) (0x04b0e224) 12 0x06d6e784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0e224) 13 0x0598517f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0e2f8) 14 0x05986bd7 init_opengl+0xfbe(once=0x59e3e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0e508) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0e558) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0e588) 17 0x05987052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0e5b8) 18 0x0598f0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0e5d8) 19 0x05979e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49171e8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0e608) 20 0x053a5459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0e638) 21 0x05da1c8b wined3d_adapter_init+0xe0(adapter=0x4913c60, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0ea68) 22 0x05da26bd wined3d_init+0xa5(wined3d=0x4913c50, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0ea98) 23 0x05e28b68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0eaf8) 24 0x05d0d653 d3d9_init+0x4d(d3d9=0x4913c30, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04b0eb38) 25 0x05cfee6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04b0eb88) 26 0x05cd376d fill_display_information_d3d+0x33(node=0x4913bb8) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:912] in dxdiagn (0x04b0fbc8) 27 0x05cd4466 build_displaydevices_tree+0x10(node=0x4913bb8) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1191] in dxdiagn (0x04b0fbf8) 28 0x05cd59a2 build_information_tree+0x83(pinfo_root=0x48facc4) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1749] in dxdiagn (0x04b0fc28) 29 0x05cd192b IDxDiagProviderImpl_Initialize+0xb5(iface=, pParams=) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:155] in dxdiagn (0x04b0fc68) 30 0x04829c33 test_Initialize+0x264() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/provider.c:83] in dxdiagn_test (0x04b0fcb8) 31 0x0482a060 func_provider+0x23() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/provider.c:157] in dxdiagn_test (0x04b0fcc8) 32 0x0482ae13 run_test+0x96(name="provider") [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:589] in dxdiagn_test (0x04b0fd08) 33 0x0482b23f main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:671] in dxdiagn_test (0x04b0fdd8) 34 0x0482b2d0 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in dxdiagn_test (0x04b0fe18) 35 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 36 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 37 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 38 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 39 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 40 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 41 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 42 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9c7288) 43 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe9c7308) 44 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9c81b8) 45 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9c81f8) 46 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe9c8734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe9c8248) 47 0x7c000f80 main+0x145(argc=, argv=0xfe9c8734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9c8688) 48 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x074db77c: repe Modules: Module Address Debug info Name (145 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4831000 Dwarf dxdiagn_test \-PE 4820000- 4831000 \ dxdiagn_test ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4c82000 Deferred oleaut32 \-PE 4b30000- 4c82000 \ oleaut32 ELF 4c82000- 4e04000 Deferred ole32 \-PE 4ca0000- 4e04000 \ ole32 ELF 5004000- 5085000 Deferred advapi32 \-PE 5010000- 5085000 \ advapi32 ELF 5085000- 51f9000 Deferred user32 \-PE 50a0000- 51f9000 \ user32 ELF 52f9000- 543d000 Dwarf gdi32 \-PE 5310000- 543d000 \ gdi32 ELF 543d000- 5458000 Deferred version \-PE 5440000- 5458000 \ version ELF 5458000- 54e5000 Deferred rpcrt4 \-PE 5460000- 54e5000 \ rpcrt4 ELF 552e000- 5531000 Deferred libxshmfence.so.1 ELF 5531000- 55e9000 Deferred libfreetype.so.6 ELF 57e9000- 5800000 Deferred libz.so.1 ELF 5800000- 5812000 Deferred libbz2.so.1 ELF 5816000- 5854000 Deferred libpng16.so.16 ELF 5858000- 5895000 Deferred libfontconfig.so.1 ELF 5899000- 58c3000 Deferred libexpat.so.1 ELF 58c7000- 58d3000 Deferred libxcursor.so.1 ELF 58d7000- 58de000 Deferred libxfixes.so.3 ELF 58fa000- 58fd000 Deferred libx11-xcb.so.1 ELF 591e000- 5943000 Deferred imm32 \-PE 5920000- 5943000 \ imm32 ELF 5947000- 59e7000 Dwarf winex11 \-PE 5950000- 59e7000 \ winex11 ELF 59f3000- 59f7000 Deferred libxinerama.so.1 ELF 59fb000- 5a01000 Deferred libxxf86vm.so.1 ELF 5a05000- 5a11000 Deferred libxrender.so.1 ELF 5a15000- 5a22000 Deferred libxrandr.so.2 ELF 5a26000- 5a2a000 Deferred libxcomposite.so.1 ELF 5a3b000- 5a4e000 Deferred libxext.so.6 ELF 5a52000- 5ba3000 Deferred libx11.so.6 ELF 5bab000- 5bd7000 Deferred libxcb.so.1 ELF 5bdb000- 5bdf000 Deferred libxau.so.6 ELF 5bdf000- 5be6000 Deferred libxdmcp.so.6 ELF 5bee000- 5c0a000 Deferred libbsd.so.0 ELF 5c5a000- 5c6d000 Deferred libxi.so.6 ELF 5c6d000- 5cab000 Deferred wbemprox \-PE 5c70000- 5cab000 \ wbemprox ELF 5cbb000- 5cbe000 Deferred libllvmamdgpuutils.so.3.7 ELF 5cbe000- 5ce6000 Dwarf dxdiagn \-PE 5cc0000- 5ce6000 \ dxdiagn ELF 5cea000- 5d2d000 Dwarf d3d9 \-PE 5cf0000- 5d2d000 \ d3d9 ELF 5d31000- 5e8f000 Dwarf wined3d \-PE 5d40000- 5e8f000 \ wined3d ELF 63ab000- 642a000 Deferred ddraw \-PE 63b0000- 642a000 \ ddraw ELF 642a000- 643e000 Deferred psapi \-PE 6430000- 643e000 \ psapi ELF 644d000- 6450000 Deferred libllvmamdgpuinfo.so.3.7 ELF 64b6000- 64bc000 Deferred libtxc_dxtn.so ELF 64cf000- 6513000 Deferred winspool \-PE 64e0000- 6513000 \ winspool ELF 6513000- 653f000 Deferred iphlpapi \-PE 6520000- 653f000 \ iphlpapi ELF 6543000- 656e000 Deferred dxgi \-PE 6550000- 656e000 \ dxgi ELF 658f000- 65a7000 Deferred libresolv.so.2 ELF 65ab000- 65e4000 Deferred ws2_32 \-PE 65b0000- 65e4000 \ ws2_32 ELF 6618000- 661c000 Deferred libxcb-dri3.so.0 ELF 6620000- 6624000 Deferred libxcb-present.so.0 ELF 6628000- 6630000 Deferred libxcb-sync.so.1 ELF 6630000- 66b5000 Deferred libcups.so.2 ELF 67b5000- 68eb000 Deferred libgnutls.so.28 ELF 6beb000- 6c00000 Deferred libtasn1.so.6 ELF 6c04000- 6c44000 Deferred libnettle.so.6 ELF 6c4c000- 6c83000 Deferred libhogweed.so.4 ELF 6c87000- 6cfe000 Deferred libgmp.so.10 ELF 6d2a000- 6d52000 Deferred libudev.so.1 ELF 6d5a000- 6dd1000 Dwarf libgl.so.1 ELF 6dd1000- 6e08000 Deferred libglapi.so.0 ELF 6e0c000- 6e10000 Deferred libxdamage.so.1 ELF 6e10000- 6e2d000 Deferred libxcb-glx.so.0 ELF 6e31000- 6e37000 Deferred libxcb-dri2.so.0 ELF 6e3b000- 6e4d000 Deferred libdrm.so.2 ELF 6e51000- 7b13000 Dwarf radeonsi_dri.so ELF 7b5f000- 7b84000 Deferred libdrm_intel.so.1 ELF 7b88000- 7b92000 Deferred libdrm_nouveau.so.2 ELF 7b96000- 7ba4000 Deferred libdrm_radeon.so.1 ELF 7ba8000- 7bb3000 Deferred libdrm_amdgpu.so.1 ELF 7bb7000- 7bd4000 Deferred libelf.so.1 ELF 7c10000- 7c13000 Deferred libllvmx86info.so.3.7 ELF 8113000- 8282000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8482000- 84dc000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 84dc000- 8506000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8c27000- 8cef000 Deferred libllvmipo.so.3.7 ELF 90fa000- 91a2000 Deferred libllvmvectorize.so.3.7 ELF 91a2000- 926e000 Deferred libllvmamdgpudesc.so.3.7 ELF 926e000- 92aa000 Deferred libllvmbitwriter.so.3.7 ELF 92aa000- 9412000 Deferred libllvmx86disassembler.so.3.7 ELF 9412000- 94b5000 Deferred libllvmx86asmparser.so.3.7 ELF 94b5000- 973b000 Deferred libllvmx86codegen.so.3.7 ELF 983b000- 9909000 Deferred libllvmasmprinter.so.3.7 ELF 9909000- 9912000 Deferred libllvmmcdisassembler.so.3.7 ELF a06e000- a0af000 Deferred libllvmprofiledata.so.3.7 ELF a0af000- a0e6000 Deferred libllvmipa.so.3.7 ELF a537000- a543000 Deferred libllvmx86utils.so.3.7 ELF a543000- a553000 Deferred libllvmmcjit.so.3.7 ELF a55b000- a56f000 Deferred libllvmtarget.so.3.7 ELF a734000- aa3d000 Deferred libllvmselectiondag.so.3.7 ELF b0da000- b5c8000 Deferred libllvmcodegen.so.3.7 ELF b6c8000- b770000 Deferred libllvminstrumentation.so.3.7 ELF b770000- b79a000 Deferred libllvmexecutionengine.so.3.7 ELF b9b6000- ba01000 Deferred libllvmx86asmprinter.so.3.7 ELF ba01000- ba7f000 Deferred libllvmruntimedyld.so.3.7 ELF bc84000- bd73000 Deferred libllvminstcombine.so.3.7 ELF c249000- c3af000 Deferred libllvmtransformutils.so.3.7 ELF c4af000- c4ec000 Deferred libllvmmcparser.so.3.7 ELF c4ec000- c4f7000 Deferred libpciaccess.so.0 ELF c9ad000- cc6f000 Deferred libllvmscalaropts.so.3.7 ELF d058000- d074000 Deferred libgcc_s.so.1 ELF d228000- d385000 Deferred libllvmx86desc.so.3.7 ELF d385000- d672000 Deferred libllvmanalysis.so.3.7 ELF d872000- d919000 Deferred libllvmobject.so.3.7 ELF d919000- d96a000 Deferred libllvmbitreader.so.3.7 ELF db80000- dc3f000 Deferred libllvmmc.so.3.7 ELF de3f000- de9d000 Deferred libncurses.so.6 ELF e352000- e6b8000 Deferred libllvmcore.so.3.7 ELF e7b8000- e8d5000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000169 (D) Z:\home\austin\wine-valgrind\dlls\dxdiagn\tests\dxdiagn_test.exe 00000168 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:203: recipe for target 'provider.ok' failed make[1]: *** [provider.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dxdiagn/tests' Makefile:8840: recipe for target 'dlls/dxdiagn/tests/test' failed make: *** [dlls/dxdiagn/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/dxgi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M dxgi.dll -p dxgi_test.exe.so device && touch device.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x69c677c (thread 016c), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x069c677c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:069c677c ESP:04b3e2a0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e00000 ECX:04700870 EDX:00200000 ESI:04689be8 EDI:04700870 Stack dump: 0x04b3e2a0: 04b3e2dc 046fa1bc 00000003 00000002 0x04b3e2b0: 00007f30 00007f44 00000082 00007f4c 0x04b3e2c0: 00800000 00000000 00007f24 00007f28 0x04b3e2d0: 00007f2c 00000000 046893c8 00007f54 0x04b3e2e0: 00000000 00000000 00000000 00000000 0x04b3e2f0: 00000000 00000000 00000000 68e20c00 Backtrace: =>0 0x069c677c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x069acfab in radeonsi_dri.so (+0x670faa) (0x04688760) 2 0x069ad332 in radeonsi_dri.so (+0x671331) (0x04b3e438) 3 0x06a2d6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b3e438) 4 0x0636c6fc in radeonsi_dri.so (+0x306fb) (0x046851a0) 5 0x067a4f00 in radeonsi_dri.so (+0x468eff) (0x046851a0) 6 0x067a493d in radeonsi_dri.so (+0x46893c) (0x046851a0) 7 0x0666581b in radeonsi_dri.so (+0x32981a) (0x046851a0) 8 0x06661846 in radeonsi_dri.so (+0x325845) (0x04685118) 9 0x05dda722 in libgl.so.1 (+0x43721) (0x045d5530) 10 0x05dafa42 in libgl.so.1 (+0x18a41) (0x045d3008) 11 0x05dab60b in libgl.so.1 (+0x1460a) (0x04b3eef4) 12 0x05dab784 glXChooseVisual+0x63() in libgl.so.1 (0x04b3eef4) 13 0x05a1617f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b3efc8) 14 0x05a17bd7 init_opengl+0xfbe(once=0x5a74e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b3f1d8) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b3f228) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b3f258) 17 0x05a18052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b3f288) 18 0x05a200e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b3f2a8) 19 0x05a0ae47 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f84b8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b3f2d8) 20 0x05122459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b3f308) 21 0x04c88c8b wined3d_adapter_init+0xe0(adapter=0x48f4f30, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b3f738) 22 0x04c896bd wined3d_init+0xa5(wined3d=0x48f4f20, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b3f768) 23 0x04d0fb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b3f7c8) 24 0x04c0358a dxgi_factory_init+0x44(factory=0x48f4ef0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b3f7f8) 25 0x04c03622 dxgi_factory_create+0x51(riid=0x4b73908, factory=0x4b3f8c0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b3f848) 26 0x04c01c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b3f888) 27 0x04b533f3 D3D10CreateDevice+0x1a0(adapter=(nil), driver_type=, swrast=(nil), flags=, sdk_version=, device=0x4b3f9d8) [/home/austin/wine-valgrind/dlls/d3d10/d3d10_main.c:51] in d3d10 (0x04b3f998) 28 0x04a17123 create_device+0x32() [/home/austin/wine-valgrind/dlls/dxgi/tests/device.c:312] in dxgi_test (0x04b3f9f8) 29 0x04a1722a test_adapter_desc+0x26() [/home/austin/wine-valgrind/dlls/dxgi/tests/device.c:339] in dxgi_test (0x04b3fcb8) 30 0x04a2984b func_device+0x8e() [/home/austin/wine-valgrind/dlls/dxgi/tests/device.c:3086] in dxgi_test (0x04b3fcc8) 31 0x04a2a649 run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/dxgi/tests/../../../include/wine/test.h:589] in dxgi_test (0x04b3fd08) 32 0x04a2aa74 main+0x244(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/dxgi/tests/../../../include/wine/test.h:671] in dxgi_test (0x04b3fdd8) 33 0x04a2ab05 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in dxgi_test (0x04b3fe18) 34 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b3fe38) 35 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b3fe88) 36 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b3fea8) 37 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b3ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b3ff98) 38 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b3ffb8) 39 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b3ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b40000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfebf1298) 42 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfebf1318) 43 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfebf21c8) 44 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfebf2208) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfebf2744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfebf2258) 46 0x7c000f80 main+0x145(argc=, argv=0xfebf2744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfebf2698) 47 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069c677c: repe Modules: Module Address Debug info Name (125 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 482a000 Deferred d3d10core \-PE 4820000- 482a000 \ d3d10core ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a32000 Dwarf dxgi_test \-PE 4a10000- 4a32000 \ dxgi_test ELF 4b40000- 4b86000 Dwarf d3d10 \-PE 4b50000- 4b86000 \ d3d10 ELF 4b86000- 4bed000 Deferred d3d11 \-PE 4b90000- 4bed000 \ d3d11 ELF 4bed000- 4c18000 Dwarf dxgi \-PE 4bf0000- 4c18000 \ dxgi ELF 4c18000- 4d76000 Dwarf wined3d \-PE 4c30000- 4d76000 \ wined3d ELF 5076000- 51ba000 Dwarf gdi32 \-PE 5080000- 51ba000 \ gdi32 ELF 51ba000- 523b000 Deferred advapi32 \-PE 51d0000- 523b000 \ advapi32 ELF 523b000- 53af000 Deferred user32 \-PE 5250000- 53af000 \ user32 ELF 54af000- 54ca000 Deferred version \-PE 54b0000- 54ca000 \ version ELF 54ca000- 554e000 Deferred d3dcompiler_43 \-PE 54d0000- 554e000 \ d3dcompiler_43 ELF 55aa000- 5662000 Deferred libfreetype.so.6 ELF 5866000- 587d000 Deferred libz.so.1 ELF 5885000- 5897000 Deferred libbz2.so.1 ELF 589f000- 58dd000 Deferred libpng16.so.16 ELF 58e1000- 591e000 Deferred libfontconfig.so.1 ELF 5926000- 5950000 Deferred libexpat.so.1 ELF 5954000- 5960000 Deferred libxcursor.so.1 ELF 5964000- 596b000 Deferred libxfixes.so.3 ELF 5981000- 5984000 Deferred libxshmfence.so.1 ELF 59a7000- 59cc000 Deferred imm32 \-PE 59b0000- 59cc000 \ imm32 ELF 59d8000- 5a78000 Dwarf winex11 \-PE 59e0000- 5a78000 \ winex11 ELF 5a88000- 5a8c000 Deferred libxinerama.so.1 ELF 5a90000- 5a96000 Deferred libxxf86vm.so.1 ELF 5a9a000- 5aa6000 Deferred libxrender.so.1 ELF 5aaa000- 5ab7000 Deferred libxrandr.so.2 ELF 5abb000- 5abf000 Deferred libxcomposite.so.1 ELF 5ad0000- 5ae3000 Deferred libxext.so.6 ELF 5ae7000- 5c38000 Deferred libx11.so.6 ELF 5c3c000- 5c68000 Deferred libxcb.so.1 ELF 5c6c000- 5c70000 Deferred libxau.so.6 ELF 5c70000- 5c77000 Deferred libxdmcp.so.6 ELF 5c7b000- 5c97000 Deferred libbsd.so.0 ELF 5ca5000- 5ca9000 Deferred libxcb-dri3.so.0 ELF 5ca9000- 5cad000 Deferred libxcb-present.so.0 ELF 5cad000- 5cb5000 Deferred libxcb-sync.so.1 ELF 5cc1000- 5cc5000 Deferred libxdamage.so.1 ELF 5cc9000- 5ccc000 Deferred libx11-xcb.so.1 ELF 5cd0000- 5cd6000 Deferred libxcb-dri2.so.0 ELF 5ce7000- 5cfa000 Deferred libxi.so.6 ELF 5d06000- 5d0c000 Deferred libtxc_dxtn.so ELF 5d5f000- 5d87000 Deferred libudev.so.1 ELF 5d97000- 5e0e000 Dwarf libgl.so.1 ELF 5f0e000- 5f45000 Deferred libglapi.so.0 ELF 5f45000- 5f62000 Deferred libxcb-glx.so.0 ELF 5f62000- 5f74000 Deferred libdrm.so.2 ELF 60d4000- 6114000 Deferred libnettle.so.6 ELF 6124000- 612e000 Deferred libdrm_nouveau.so.2 ELF 633c000- 6ffe000 Dwarf radeonsi_dri.so ELF 71f2000- 7217000 Deferred libdrm_intel.so.1 ELF 7217000- 7225000 Deferred libdrm_radeon.so.1 ELF 7225000- 7230000 Deferred libdrm_amdgpu.so.1 ELF 7230000- 724d000 Deferred libelf.so.1 ELF 7265000- 72bf000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 72c7000- 72ca000 Deferred libllvmamdgpuutils.so.3.7 ELF 72ce000- 72d1000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7b12000- 7c81000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8194000- 825c000 Deferred libllvmipo.so.3.7 ELF 841c000- 84c4000 Deferred libllvmvectorize.so.3.7 ELF 84c4000- 8590000 Deferred libllvmamdgpudesc.so.3.7 ELF 8590000- 85ba000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 85ba000- 85f6000 Deferred libllvmbitwriter.so.3.7 ELF 85f6000- 875e000 Deferred libllvmx86disassembler.so.3.7 ELF 875e000- 8801000 Deferred libllvmx86asmparser.so.3.7 ELF 8d59000- 8fdf000 Deferred libllvmx86codegen.so.3.7 ELF 8fdf000- 90ad000 Deferred libllvmasmprinter.so.3.7 ELF 9822000- 9859000 Deferred libllvmipa.so.3.7 ELF 9a1f000- 9d28000 Deferred libllvmselectiondag.so.3.7 ELF a143000- a14c000 Deferred libllvmmcdisassembler.so.3.7 ELF a150000- a153000 Deferred libllvmx86info.so.3.7 ELF a3c5000- a8b3000 Deferred libllvmcodegen.so.3.7 ELF a9b3000- ac75000 Deferred libllvmscalaropts.so.3.7 ELF af6f000- afb0000 Deferred libllvmprofiledata.so.3.7 ELF afb0000- b058000 Deferred libllvminstrumentation.so.3.7 ELF b058000- b064000 Deferred libllvmx86utils.so.3.7 ELF b17c000- b26b000 Deferred libllvminstcombine.so.3.7 ELF b36b000- b3b6000 Deferred libllvmx86asmprinter.so.3.7 ELF b3b6000- b3c6000 Deferred libllvmmcjit.so.3.7 ELF b3c6000- b3da000 Deferred libllvmtarget.so.3.7 ELF ba84000- baae000 Deferred libllvmexecutionengine.so.3.7 ELF babe000- bafb000 Deferred libllvmmcparser.so.3.7 ELF bfcc000- c132000 Deferred libllvmtransformutils.so.3.7 ELF c232000- c38f000 Deferred libllvmx86desc.so.3.7 ELF c38f000- c40d000 Deferred libllvmruntimedyld.so.3.7 ELF c40d000- c45e000 Deferred libllvmbitreader.so.3.7 ELF c602000- c8ef000 Deferred libllvmanalysis.so.3.7 ELF cbef000- cc96000 Deferred libllvmobject.so.3.7 ELF ccaa000- ccc6000 Deferred libgcc_s.so.1 ELF ccce000- ccd9000 Deferred libpciaccess.so.0 ELF cefd000- cfbc000 Deferred libllvmmc.so.3.7 ELF d1bc000- d21a000 Deferred libncurses.so.6 ELF d6cf000- da35000 Deferred libllvmcore.so.3.7 ELF db35000- dc52000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000a8 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000b1 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000016d (D) Z:\home\austin\wine-valgrind\dlls\dxgi\tests\dxgi_test.exe 0000016c 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:171: recipe for target 'device.ok' failed make[1]: *** [device.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dxgi/tests' Makefile:8921: recipe for target 'dlls/dxgi/tests/test' failed make: *** [dlls/dxgi/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/explorerframe/tests' ../../../tools/runtest -q -P wine -T ../../.. -M explorerframe.dll -p explorerframe_test.exe.so nstc && touch nstc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/explorerframe/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/faultrep/tests' ../../../tools/runtest -q -P wine -T ../../.. -M faultrep.dll -p faultrep_test.exe.so faultrep && touch faultrep.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/faultrep/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/fusion/tests' ../../../tools/runtest -q -P wine -T ../../.. -M fusion.dll -p fusion_test.exe.so asmcache && touch asmcache.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M fusion.dll -p fusion_test.exe.so asmenum && touch asmenum.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M fusion.dll -p fusion_test.exe.so asmname && touch asmname.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M fusion.dll -p fusion_test.exe.so fusion && touch fusion.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/fusion/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/gameux/tests' ../../../tools/runtest -q -P wine -T ../../.. -M gameux.dll -p gameux_test.exe.so gameexplorer && touch gameexplorer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gameux.dll -p gameux_test.exe.so gamestatistics && touch gamestatistics.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/gameux/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/gdi32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so bitmap && touch bitmap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so brush && touch brush.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so clipping && touch clipping.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so dc && touch dc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 dc.c:627: Test failed: expected ret2 > 0, got 0 dc.c:642: Test failed: expected desc.nSize == sizeof(descr), got 0 Makefile:232: recipe for target 'dc.ok' failed make[1]: *** [dc.ok] Error 2 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so dib && touch dib.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so font && touch font.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 font.c:519: Tests skipped: Arial is not installed font.c:1286: Tests skipped: TrueType font for charset 134 is not installed font.c:2194: Tests skipped: Arial is not installed font.c:2376: Tests skipped: Times New Roman is not installed font.c:2581: Tests skipped: Arial is not installed font.c:2667: Tests skipped: Arial is not installed font.c:4114: Tests skipped: Arial or Times New Roman not installed font.c:4496: Tests skipped: Arial is not installed font.c:5027: Tests skipped: Unable to locate and load font sserife.fon font.c:5172: Tests skipped: Arial is not installed font.c:2891: Tests skipped: Arial Black is not installed font.c:6631: Tests skipped: Arial Black or Symbol/Wingdings is not installed font.c:3218: Tests skipped: Font Clockopia doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font Droid Sans Arabic doesn't contain 'x', skipping the test font.c:3825: Tests skipped: Droid Sans Fallback is not a Windows font, OS/2 metrics may be invalid. font.c:3825: Tests skipped: Droid Sans Fallback is not a Windows font, OS/2 metrics may be invalid. font.c:3825: Tests skipped: Droid Sans Fallback is not a Windows font, OS/2 metrics may be invalid. font.c:3825: Tests skipped: @Droid Sans Fallback is not a Windows font, OS/2 metrics may be invalid. font.c:3825: Tests skipped: @Droid Sans Fallback is not a Windows font, OS/2 metrics may be invalid. font.c:3825: Tests skipped: @Droid Sans Fallback is not a Windows font, OS/2 metrics may be invalid. font.c:3218: Tests skipped: Font Droid Sans Hebrew doesn't contain 'x', skipping the test font.c:3825: Tests skipped: Droid Sans Japanese is not a Windows font, OS/2 metrics may be invalid. font.c:3218: Tests skipped: Font Droid Sans Japanese doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font Droid Sans Thai doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font Droid Sans Thai doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font Mathematica doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font MathematicaMono doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font MathematicaSans doesn't contain 'x', skipping the test font.c:3218: Tests skipped: Font Wingdings doesn't contain 'x', skipping the test font.c:4794: Tests skipped: Fixed-pitch TrueType font for charset 129 is not available font.c:4767: Tests skipped: TrueType font for charset 134 is not installed font.c:4794: Tests skipped: Fixed-pitch TrueType font for charset 136 is not available font.c:4863: Tests skipped: Arial is not installed font.c:4863: Tests skipped: Arial is not installed font.c:4863: Tests skipped: Arial is not installed font.c:4959: Tests skipped: Arial is not installed font.c:5379: Tests skipped: Lucida Sans Demibold Roman is not installed font.c:5379: Tests skipped: Lucida Sans Italic is not installed font.c:5379: Tests skipped: Lucida Sans Regular is not installed font.c:5440: Tests skipped: Arial is not installed font.c:5440: Tests skipped: Lucida Sans is not installed font.c:5440: Tests skipped: Webdings is not installed font.c:5440: Tests skipped: SimSun is not installed font.c:5440: Tests skipped: NSimSun is not installed font.c:5440: Tests skipped: MingLiu is not installed font.c:5440: Tests skipped: PMingLiu is not installed font.c:5440: Tests skipped: WenQuanYi Micro Hei is not installed font.c:5440: Tests skipped: MS UI Gothic is not installed font.c:5440: Tests skipped: Ume UI Gothic is not installed font.c:5440: Tests skipped: MS Gothic is not installed font.c:5440: Tests skipped: Ume Gothic is not installed font.c:5440: Tests skipped: MS PGothic is not installed font.c:5440: Tests skipped: Ume P Gothic is not installed font.c:5440: Tests skipped: Gulim is not installed font.c:5440: Tests skipped: Batang is not installed font.c:5440: Tests skipped: UnBatang is not installed font.c:5440: Tests skipped: UnDotum is not installed font.c:5440: Tests skipped: @SimSun is not installed font.c:5440: Tests skipped: @NSimSun is not installed font.c:5440: Tests skipped: @MingLiu is not installed font.c:5440: Tests skipped: @PMingLiu is not installed font.c:5440: Tests skipped: @WenQuanYi Micro Hei is not installed font.c:5440: Tests skipped: @MS UI Gothic is not installed font.c:5440: Tests skipped: @Ume UI Gothic is not installed font.c:5440: Tests skipped: @MS Gothic is not installed font.c:5440: Tests skipped: @Ume Gothic is not installed font.c:5440: Tests skipped: @MS PGothic is not installed font.c:5440: Tests skipped: @Ume P Gothic is not installed font.c:5440: Tests skipped: @Gulim is not installed font.c:5440: Tests skipped: @Batang is not installed font.c:5440: Tests skipped: @UnBatang is not installed font.c:5440: Tests skipped: @UnDotum is not installed font.c:6022: Tests skipped: Vertical font for charset 130 is not installed font.c:6022: Tests skipped: Vertical font for charset 134 is not installed font.c:5978: Tests skipped: @Ume Gothic is not installed font.c:5978: Tests skipped: @MS UI Gothic is not installed ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so gdiobj && touch gdiobj.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so icm && touch icm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so mapping && touch mapping.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so metafile && touch metafile.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so palette && touch palette.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so path && touch path.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdi32.dll -p gdi32_test.exe.so pen && touch pen.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/gdi32/tests' Makefile:9631: recipe for target 'dlls/gdi32/tests/test' failed make: *** [dlls/gdi32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/gdiplus/tests' ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so brush && touch brush.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so customlinecap && touch customlinecap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so font && touch font.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 font.c:307: Tests skipped: Times New Roman not installed ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so graphics && touch graphics.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so graphicspath && touch graphicspath.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so image && touch image.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so matrix && touch matrix.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so metafile && touch metafile.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so pathiterator && touch pathiterator.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so pen && touch pen.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so region && touch region.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M gdiplus.dll -p gdiplus_test.exe.so stringformat && touch stringformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/gdiplus/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/hlink/tests' ../../../tools/runtest -q -P wine -T ../../.. -M hlink.dll -p hlink_test.exe.so browse_ctx && touch browse_ctx.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M hlink.dll -p hlink_test.exe.so hlink && touch hlink.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/hlink/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/hnetcfg/tests' ../../../tools/runtest -q -P wine -T ../../.. -M hnetcfg.dll -p hnetcfg_test.exe.so policy && touch policy.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/hnetcfg/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ieframe/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ieframe.dll -p ieframe_test.exe.so intshcut && touch intshcut.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ieframe.dll -p ieframe_test.exe.so webbrowser && touch webbrowser.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==28525== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp28525_f7a25735 is empty ==28525== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==28525== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp28525_f7a25735 is empty ==28525== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==28525== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp28525_f7a25735 is empty ==28525== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==28525== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp28525_f7a25735 is empty ==28525== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==28525== 128 bytes in 4 blocks are possibly lost in loss record 2,749 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==28525== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==28525== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==28525== by 0x6A0D8113: ??? ==28525== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==28525== 256 bytes in 8 blocks are definitely lost in loss record 4,016 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x4B9927E: CreateStreamOnHGlobal (hglobalstream.c:590) ==28525== by 0x5F2852A: get_travellog_stream (dochost.c:403) ==28525== by 0x5F28903: update_travellog (dochost.c:466) ==28525== by 0x5F29838: ClOleCommandTarget_Exec (dochost.c:753) ==28525== by 0x6F5E7ED: IOleCommandTarget_Exec (docobj.h:1013) ==28525== by 0x6F5E7ED: notify_travellog_update (???:0) ==28525== by 0x6F5E9FA: set_current_mon (persist.c:133) ==28525== by 0x6F362F1: navigate_proc (navigate.c:1969) ==28525== by 0x6F78B23: hidden_proc (task.c:321) ==28525== by 0x4F0A309: ??? (winproc.c:174) ==28525== by 0x4F0A458: call_window_proc (winproc.c:245) ==28525== by 0x4F0C7BB: WINPROC_call_window (winproc.c:901) ==28525== by 0x4ECDECA: DispatchMessageW (message.c:4032) ==28525== by 0x6B707CC1: ??? ==28525== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:CreateStreamOnHGlobal fun:get_travellog_stream fun:update_travellog fun:ClOleCommandTarget_Exec fun:IOleCommandTarget_Exec fun:notify_travellog_update fun:set_current_mon fun:navigate_proc fun:hidden_proc obj:/home/austin/wine-valgrind/dlls/user32/user32.dll.so fun:call_window_proc fun:WINPROC_call_window fun:DispatchMessageW obj:* } ==28525== 480 bytes in 5 blocks are possibly lost in loss record 4,493 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x67E90F1: heap_alloc_zero (internet.h:99) ==28525== by 0x67EA3E4: create_netconn (netconnection.c:348) ==28525== by 0x67D9A82: open_http_connection (http.c:4848) ==28525== by 0x67DA1C1: HTTP_HttpSendRequestW (http.c:4989) ==28525== by 0x67DB098: AsyncHttpSendRequestProc (http.c:5258) ==28525== by 0x67E7020: INTERNET_WorkerThreadFunc (internet.c:3724) ==28525== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==28525== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==28525== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==28525== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==28525== by 0x7BC8F869: ??? (signal_i386.c:2709) ==28525== by 0x7BC9953E: start_thread (thread.c:453) ==28525== by 0x4243250: start_thread (pthread_create.c:334) ==28525== by 0x4341B2D: clone (clone.S:122) ==28525== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==28525== 688 bytes in 8 blocks are definitely lost in loss record 4,720 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x5F26B91: heap_alloc (ieframe.h:336) ==28525== by 0x5F26C20: heap_strdupW (ieframe.h:362) ==28525== by 0x5F28881: update_travellog (dochost.c:461) ==28525== by 0x5F29838: ClOleCommandTarget_Exec (dochost.c:753) ==28525== by 0x6F5E7ED: IOleCommandTarget_Exec (docobj.h:1013) ==28525== by 0x6F5E7ED: notify_travellog_update (???:0) ==28525== by 0x6F5E9FA: set_current_mon (persist.c:133) ==28525== by 0x6F362F1: navigate_proc (navigate.c:1969) ==28525== by 0x6F78B23: hidden_proc (task.c:321) ==28525== by 0x4F0A309: ??? (winproc.c:174) ==28525== by 0x4F0A458: call_window_proc (winproc.c:245) ==28525== by 0x4F0C7BB: WINPROC_call_window (winproc.c:901) ==28525== by 0x4ECDECA: DispatchMessageW (message.c:4032) ==28525== by 0x6B707CC1: ??? ==28525== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:heap_strdupW fun:update_travellog fun:ClOleCommandTarget_Exec fun:IOleCommandTarget_Exec fun:notify_travellog_update fun:set_current_mon fun:navigate_proc fun:hidden_proc obj:/home/austin/wine-valgrind/dlls/user32/user32.dll.so fun:call_window_proc fun:WINPROC_call_window fun:DispatchMessageW obj:* } ==28525== 766 bytes in 1 blocks are definitely lost in loss record 4,759 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x67CC734: heap_alloc (internet.h:94) ==28525== by 0x67D7962: HTTP_build_req (http.c:4231) ==28525== by 0x67CDEA7: build_request_header (http.c:709) ==28525== by 0x67DA41B: HTTP_HttpSendRequestW (http.c:5028) ==28525== by 0x67DB098: AsyncHttpSendRequestProc (http.c:5258) ==28525== by 0x67E7020: INTERNET_WorkerThreadFunc (internet.c:3724) ==28525== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==28525== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==28525== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==28525== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==28525== by 0x7BC8F869: ??? (signal_i386.c:2709) ==28525== by 0x7BC9953E: start_thread (thread.c:453) ==28525== by 0x4243250: start_thread (pthread_create.c:334) ==28525== by 0x4341B2D: clone (clone.S:122) ==28525== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:HTTP_build_req fun:build_request_header fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==28525== 988 bytes in 7 blocks are possibly lost in loss record 4,898 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==28525== by 0x8839FF2: msvcrt_heap_realloc (heap.c:102) ==28525== by 0x883ABA5: MSVCRT_realloc (heap.c:457) ==28525== by 0x69E78C00: ??? ==28525== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==28525== 3,440 bytes in 34 blocks are possibly lost in loss record 5,166 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x4B99870: IMalloc_fnAlloc (ifs.c:187) ==28525== by 0x4B9A10F: IMalloc_Alloc (objidl.h:1508) ==28525== by 0x4B9A10F: CoTaskMemAlloc (???:0) ==28525== by 0x52B09BE: alloc_bstr (oleaut.c:177) ==28525== by 0x52B0D85: SysAllocStringLen (oleaut.c:355) ==28525== by 0x5FDBB8B: pre_process_uri (uri.c:786) ==28525== by 0x5FE907E: CreateUri (uri.c:5738) ==28525== by 0x6F5ED32: create_uri (persist.c:185) ==28525== by 0x6F4F7CB: nsIOServiceHook_NewURI (nsio.c:3890) ==28525== by 0x69F3AFD9: ??? ==28525== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==28525== 8,640 bytes in 54 blocks are possibly lost in loss record 5,318 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x4B99870: IMalloc_fnAlloc (ifs.c:187) ==28525== by 0x4B9A10F: IMalloc_Alloc (objidl.h:1508) ==28525== by 0x4B9A10F: CoTaskMemAlloc (???:0) ==28525== by 0x52B09BE: alloc_bstr (oleaut.c:177) ==28525== by 0x52B0D85: SysAllocStringLen (oleaut.c:355) ==28525== by 0x5FEBE52: combine_uri (uri.c:6671) ==28525== by 0x5FEC698: CoInternetCombineUrlEx (uri.c:6816) ==28525== by 0x6F42B62: combine_url (nsio.c:152) ==28525== by 0x6F4F7A8: nsIOServiceHook_NewURI (nsio.c:3888) ==28525== by 0x69F3AFD9: ??? ==28525== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:combine_uri fun:CoInternetCombineUrlEx fun:combine_url fun:nsIOServiceHook_NewURI obj:* } ==28525== 33,600 bytes in 378 blocks are possibly lost in loss record 5,421 of 5,474 ==28525== at 0x7BC5067C: notify_alloc (heap.c:254) ==28525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==28525== by 0x4B99870: IMalloc_fnAlloc (ifs.c:187) ==28525== by 0x4B9A10F: IMalloc_Alloc (objidl.h:1508) ==28525== by 0x4B9A10F: CoTaskMemAlloc (???:0) ==28525== by 0x52B09BE: alloc_bstr (oleaut.c:177) ==28525== by 0x52B0D85: SysAllocStringLen (oleaut.c:355) ==28525== by 0x52B0A5C: SysAllocString (oleaut.c:247) ==28525== by 0x5FEB502: combine_uri (uri.c:6465) ==28525== by 0x5FEC698: CoInternetCombineUrlEx (uri.c:6816) ==28525== by 0x6F42B62: combine_url (nsio.c:152) ==28525== by 0x6F4F7A8: nsIOServiceHook_NewURI (nsio.c:3888) ==28525== by 0x69F3AFD9: ??? ==28525== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:SysAllocString fun:combine_uri fun:CoInternetCombineUrlEx fun:combine_url fun:nsIOServiceHook_NewURI obj:* } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ieframe/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/imagehlp/tests' ../../../tools/runtest -q -P wine -T ../../.. -M imagehlp.dll -p imagehlp_test.exe.so image && touch image.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M imagehlp.dll -p imagehlp_test.exe.so integrity && touch integrity.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/imagehlp/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/imm32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M imm32.dll -p imm32_test.exe.so imm32 && touch imm32.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/imm32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/inetcomm/tests' ../../../tools/runtest -q -P wine -T ../../.. -M inetcomm.dll -p inetcomm_test.exe.so mimeintl && touch mimeintl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M inetcomm.dll -p inetcomm_test.exe.so mimeole && touch mimeole.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/inetcomm/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/inetmib1/tests' ../../../tools/runtest -q -P wine -T ../../.. -M inetmib1.dll -p inetmib1_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/inetmib1/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/infosoft/tests' ../../../tools/runtest -q -P wine -T ../../.. -M infosoft.dll -p infosoft_test.exe.so infosoft && touch infosoft.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/infosoft/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/iphlpapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M iphlpapi.dll -p iphlpapi_test.exe.so iphlpapi && touch iphlpapi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 iphlpapi.c:953: Tests skipped: ICMP is not available. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/iphlpapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/itss/tests' ../../../tools/runtest -q -P wine -T ../../.. -M itss.dll -p itss_test.exe.so protocol && touch protocol.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/itss/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/jscript/tests' ../../../tools/runtest -q -P wine -T ../../.. -M jscript.dll -p jscript_test.exe.so activex && touch activex.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M jscript.dll -p jscript_test.exe.so caller && touch caller.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M jscript.dll -p jscript_test.exe.so jscript && touch jscript.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M jscript.dll -p jscript_test.exe.so run && touch run.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/jscript/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/jsproxy/tests' ../../../tools/runtest -q -P wine -T ../../.. -M jsproxy.dll -p jsproxy_test.exe.so jsproxy && touch jsproxy.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/jsproxy/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/kernel32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so actctx && touch actctx.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so atom && touch atom.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so change && touch change.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 change.c:557: Test failed: ov.InternalHigh wrong 12 change.c:570: Test failed: action wrong change.c:571: Test failed: len wrong change.c:572: Test failed: name wrong change.c:596: Test failed: offset wrong 24 change.c:597: Test failed: action wrong 1 change.c:603: Test failed: ov.InternalHigh wrong 66/42 Makefile:248: recipe for target 'change.ok' failed make[1]: *** [change.ok] Error 7 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so codepage && touch codepage.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so comm && touch comm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 comm.c:2221: Tests skipped: interactive tests (set WINETEST_INTERACTIVE=1) ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so console && touch console.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==28895== Syscall param writev(vector[...]) points to uninitialised byte(s) ==28895== at 0x433954B: ??? (syscall-template.S:84) ==28895== by 0x7BC87A4F: send_request (server.c:228) ==28895== by 0x7BC87C02: wine_server_call (server.c:309) ==28895== by 0x7B42FE6D: wine_server_call_err (server.h:61) ==28895== by 0x7B4311F2: WriteConsoleInputW (console.c:536) ==28895== by 0x4A46AF6: testWaitForConsoleInput (console.c:941) ==28895== by 0x4A53994: func_console (console.c:3124) ==28895== by 0x4B3B046: run_test (test.h:589) ==28895== by 0x4B3B472: main (test.h:671) ==28895== Address 0x4d5fc0a is on thread 1's stack ==28895== in frame #5, created by testWaitForConsoleInput (console.c:919) ==28895== Uninitialised value was created by a stack allocation ==28895== at 0x4A46A26: testWaitForConsoleInput (console.c:919) ==28895== { Memcheck:Param writev(vector[...]) obj:/lib32/libc-2.22.so fun:send_request fun:wine_server_call fun:wine_server_call_err fun:WriteConsoleInputW fun:testWaitForConsoleInput fun:func_console fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so directory && touch directory.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so drive && touch drive.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so environ && touch environ.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so fiber && touch fiber.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so file && touch file.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 file.c:904: Tests skipped: CopyFile2 is not available file.c:1328: Tests skipped: Either no authority to volume, or is todo_wine for C:\users\austin\Temp\ err=5 should be 3 file.c:1328: Tests skipped: Either no authority to volume, or is todo_wine for C:\users\austin\Temp\removeme\ err=5 should be 3 file.c:1328: Tests skipped: Either no authority to volume, or is todo_wine for C:\ err=5 should be 3 file.c:1328: Tests skipped: Either no authority to volume, or is todo_wine for \\?\C:\ err=5 should be 3 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so format_msg && touch format_msg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so heap && touch heap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0x10: got heap flags 00000002 expected 00000020 heap.c:1154: Test failed: 0x10: got heap force flags 00000000 expected 00000020 heap: 2 failures in child process preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0x20: got heap flags 00000002 expected 00000040 heap.c:1154: Test failed: 0x20: got heap force flags 00000000 expected 00000040 heap: 2 failures in child process preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0x40: got heap flags 00000002 expected 50000060 heap.c:1154: Test failed: 0x40: got heap force flags 00000000 expected 50000060 heap: 2 failures in child process preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0x80: got heap flags 00000002 expected 30000060 heap.c:1154: Test failed: 0x80: got heap force flags 00000000 expected 30000060 heap: 2 failures in child process preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0x200000: got heap flags 00000002 expected 00000080 heap: 1 failures in child process preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0x2000000: got heap flags 00000002 expected 01000002 heap.c:1154: Test failed: 0x2000000: got heap force flags 00000000 expected 01000002 heap: 2 failures in child process preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 heap.c:1152: Test failed: 0xdeadbeef: got heap flags 00000002 expected 000000e0 heap.c:1154: Test failed: 0xdeadbeef: got heap force flags 00000000 expected 000000e0 heap: 2 failures in child process Makefile:452: recipe for target 'heap.ok' failed make[1]: *** [heap.ok] Error 13 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so loader && touch loader.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1263.pdb loader.c:601: Test failed: 2: 0x10002000 != 0 loader.c:602: Test failed: 2: 1 != 0 loader.c:604: Test failed: 2: 2000 != MEM_FREE loader.c:605: Test failed: 2: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr12df.pdb loader.c:601: Test failed: 3: 0x10002000 != 0 loader.c:602: Test failed: 3: 1 != 0 loader.c:604: Test failed: 3: 2000 != MEM_FREE loader.c:605: Test failed: 3: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr12f2.pdb loader.c:601: Test failed: 4: 0x10001000 != 0 loader.c:602: Test failed: 4: 1 != 0 loader.c:604: Test failed: 4: 2000 != MEM_FREE loader.c:605: Test failed: 4: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1310.pdb loader.c:601: Test failed: 6: 0x10002000 != 0 loader.c:602: Test failed: 6: 1 != 0 loader.c:604: Test failed: 6: 2000 != MEM_FREE loader.c:605: Test failed: 6: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1321.pdb loader.c:601: Test failed: 7: 0x10002000 != 0 loader.c:602: Test failed: 7: 1 != 0 loader.c:604: Test failed: 7: 2000 != MEM_FREE loader.c:605: Test failed: 7: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1333.pdb loader.c:601: Test failed: 8: 0x10001000 != 0 loader.c:602: Test failed: 8: 1 != 0 loader.c:604: Test failed: 8: 2000 != MEM_FREE loader.c:605: Test failed: 8: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1347.pdb loader.c:601: Test failed: 9: 0x10001000 != 0 loader.c:602: Test failed: 9: 1 != 0 loader.c:604: Test failed: 9: 2000 != MEM_FREE loader.c:605: Test failed: 9: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr135a.pdb loader.c:601: Test failed: 10: 0x10001000 != 0 loader.c:602: Test failed: 10: 1 != 0 loader.c:604: Test failed: 10: 2000 != MEM_FREE loader.c:605: Test failed: 10: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr136d.pdb loader.c:601: Test failed: 11: 0x10001000 != 0 loader.c:602: Test failed: 11: 1 != 0 loader.c:604: Test failed: 11: 2000 != MEM_FREE loader.c:605: Test failed: 11: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr137f.pdb loader.c:601: Test failed: 12: 0x10001000 != 0 loader.c:602: Test failed: 12: 1 != 0 loader.c:604: Test failed: 12: 2000 != MEM_FREE loader.c:605: Test failed: 12: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1391.pdb loader.c:601: Test failed: 13: 0x10001000 != 0 loader.c:602: Test failed: 13: 1 != 0 loader.c:604: Test failed: 13: 2000 != MEM_FREE loader.c:605: Test failed: 13: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13a6.pdb loader.c:601: Test failed: 15: 0x10002000 != 0 loader.c:602: Test failed: 15: 1 != 0 loader.c:604: Test failed: 15: 2000 != MEM_FREE loader.c:605: Test failed: 15: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13b9.pdb loader.c:601: Test failed: 16: 0x10001000 != 0 loader.c:602: Test failed: 16: 1 != 0 loader.c:604: Test failed: 16: 2000 != MEM_FREE loader.c:605: Test failed: 16: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13ca.pdb loader.c:601: Test failed: 17: 0x10001000 != 0 loader.c:602: Test failed: 17: 1 != 0 loader.c:604: Test failed: 17: 2000 != MEM_FREE loader.c:605: Test failed: 17: 20000 != 0 ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13fd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29106== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29106_431012a6 is empty ==29106== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1a78.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29140== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29140_efe506a6 is empty ==29140== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6da2.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29172== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29172_838046a6 is empty ==29172== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbf09.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29204== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29204_171b86a6 is empty ==29204== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1161.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29238== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29238_c3f07aa6 is empty ==29238== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6291.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29270== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29270_578bbaa6 is empty ==29270== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb4ed.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29302== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29302_eb26faa6 is empty ==29302== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr630.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29336== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29336_97fbeea6 is empty ==29336== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr58bd.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29368== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29368_2b972ea6 is empty ==29368== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrab0d.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29402== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29402_d86c22a6 is empty ==29402== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfd7a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29434== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29434_6c0762a6 is empty ==29434== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4f52.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29466== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29466_ffa2a2a6 is empty ==29466== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra0c0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29500== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29500_ac7796a6 is empty ==29500== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf206.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29533== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29533_ccafb0a6 is empty ==29533== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr4476.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29567== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29567_7984a4a6 is empty ==29567== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr962f.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29601== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29601_265998a6 is empty ==29601== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldre85e.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29633== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29633_b9f4d8a6 is empty ==29633== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3984.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29665== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29665_4d9018a6 is empty ==29665== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr8b83.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29699== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29699_fa650ca6 is empty ==29699== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddff.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29731== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29731_8e004ca6 is empty ==29731== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr303a.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29763== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29763_219b8ca6 is empty ==29763== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr818c.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29797== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29797_ce7080a6 is empty ==29797== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd457.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29829== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29829_620bc0a6 is empty ==29829== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr25c5.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29861== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29861_f5a700a6 is empty ==29861== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr77fe.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcab0.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcabf.pdb ==29020== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29020_514ba5f8 is empty ==29020== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcaca.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29889== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29889_56ced8a6 is empty ==29889== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29898== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29898_485282a6 is empty ==29898== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29905== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29905_209c78a6 is empty ==29905== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29916== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29916_2b59d6a6 is empty ==29916== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29941== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29941_e6ab20a6 is empty ==29941== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29951== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29951_64cba4a6 is empty ==29951== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29958== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29958_3d159aa6 is empty ==29958== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrcad7.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Makefile:465: recipe for target 'loader.ok' failed make[1]: *** [loader.ok] Error 56 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so locale && touch locale.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so mailslot && touch mailslot.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so module && touch module.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so path && touch path.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 path.c:2032: Tests skipped: Skipping DBCS(Japanese) GetFullPathNameA test in this codepage (1252) ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so pipe && touch pipe.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so process && touch process.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:1519: Test failed: Opening ConOut process.c:1522: Test failed: Getting sb info process.c:1523: Test failed: Getting console modes preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:470: Test failed: Setting mode (6) process.c:474: Test failed: Setting cursor position (6) process.c:1538: Test failed: Getting sb info process.c:1539: Test failed: Getting console modes process.c:1590: Test failed: Console:SizeX expected 0, but got 1 process.c:1591: Test failed: Console:SizeY expected 0, but got 1 process.c:1592: Test failed: Console:CursorX expected 0, but got 1 process.c:1593: Test failed: Console:CursorY expected 0, but got 1 process.c:1594: Test failed: Console:Attributes expected 0, but got 1 process.c:1595: Test failed: Console:winLeft expected 0, but got 1 process.c:1596: Test failed: Console:winTop expected 0, but got 1 process.c:1597: Test failed: Console:winRight expected 0, but got 1 process.c:1598: Test failed: Console:winBottom expected 68, but got 0 process.c:1599: Test failed: Console:maxWinWidth expected 0, but got 1 process.c:1600: Test failed: Console:maxWinHeight expected 0, but got 1 process.c:1604: Test failed: Console:OutputMode expected 69225472, but got 0 process.c:1615: Test failed: Wrong console-SB mode process.c:1617: Test failed: Wrong cursor position preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:2888: Test failed: StartupInfoA:hStdOutput expected 4294967295, but got 4 process.c:2889: Test failed: StartupInfoA:hStdError expected 4294967295, but got 8 process.c:2891: Test failed: TEB:hStdOutput expected 0, but got 4 process.c:2892: Test failed: TEB:hStdError expected 0, but got 8 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:2469: Test failed: WaitForSingleObject returned 258 process.c:2473: Test failed: AssignProcessToJobObject unexpectedly succeeded process.c:2474: Test failed: Expected GetLastError() to be 5 (ERROR_ACCESS_DENIED) is -559038737 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:2501: Test failed: WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:2792: Test failed: WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:2842: Test failed: WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 process.c:2859: Test failed: WaitForSingleObject returned 258 Makefile:559: recipe for target 'process.ok' failed make[1]: *** [process.ok] Error 30 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so profile && touch profile.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 profile.c:1026: Tests skipped: Not allowed to create a file in the Windows directory ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so resource && touch resource.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so sync && touch sync.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so time && touch time.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so timer && touch timer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so toolhelp && touch toolhelp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so version && touch version.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M kernel32.dll -p kernel32_test.exe.so volume && touch volume.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 volume.c:134: Tests skipped: can't test removing fake drive volume.c:1099: Test failed: IOCTL_DVD_READ_STRUCTURE should have failed Makefile:725: recipe for target 'volume.ok' failed make[1]: *** [volume.ok] Error 1 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/kernel32/tests' Makefile:10676: recipe for target 'dlls/kernel32/tests/test' failed make: *** [dlls/kernel32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/localspl/tests' ../../../tools/runtest -q -P wine -T ../../.. -M localspl.dll -p localspl_test.exe.so localmon && touch localmon.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 localmon.c:838: Tests skipped: got 2 localmon.c:981: Tests skipped: got 2 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/localspl/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/localui/tests' ../../../tools/runtest -q -P wine -T ../../.. -M localui.dll -p localui_test.exe.so localui && touch localui.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/localui/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/lz32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M lz32.dll -p lz32_test.exe.so lzexpand_main && touch lzexpand_main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/lz32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mapi32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mapi32.dll -p mapi32_test.exe.so imalloc && touch imalloc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mapi32.dll -p mapi32_test.exe.so prop && touch prop.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mapi32.dll -p mapi32_test.exe.so util && touch util.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mapi32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mlang/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mlang.dll -p mlang_test.exe.so mlang && touch mlang.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mlang/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mmcndmgr/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mmcndmgr.dll -p mmcndmgr_test.exe.so mmcndmgr && touch mmcndmgr.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mmcndmgr/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mmdevapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mmdevapi.dll -p mmdevapi_test.exe.so capture && touch capture.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 capture.c:103: Test failed: Initial IAudioCaptureClient_GetBuffer returns 00000000 capture.c:116: Test failed: Initial IAudioCaptureClient_GetBuffer returns 00000000 capture.c:144: Test failed: GetNextPacketSize 480 vs. GCP 24000 capture.c:181: Test failed: Position 2400 expected 960 capture.c:231: Test failed: Position 3360 expected 2880 capture.c:261: Test failed: Position 3360 expected 2880 capture.c:318: Test failed: Position 4320 gap 960 Makefile:175: recipe for target 'capture.ok' failed make[1]: *** [capture.ok] Error 7 ../../../tools/runtest -q -P wine -T ../../.. -M mmdevapi.dll -p mmdevapi_test.exe.so dependency && touch dependency.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mmdevapi.dll -p mmdevapi_test.exe.so mmdevenum && touch mmdevenum.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mmdevapi.dll -p mmdevapi_test.exe.so propstore && touch propstore.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mmdevapi.dll -p mmdevapi_test.exe.so render && touch render.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 render.c:1133: Tests skipped: Rerun with WINETEST_DEBUG=2 for GetPosition tests. make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mmdevapi/tests' Makefile:11323: recipe for target 'dlls/mmdevapi/tests/test' failed make: *** [dlls/mmdevapi/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mpr/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mpr.dll -p mpr_test.exe.so mpr && touch mpr.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mpr/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msacm32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msacm32.dll -p msacm32_test.exe.so msacm && touch msacm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msacm32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mscms/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mscms.dll -p mscms_test.exe.so profile && touch profile.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mscms/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mscoree/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mscoree.dll -p mscoree_test.exe.so debugging && touch debugging.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30532== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/bin/libmono-2.0-x86.pdb ==30532== Invalid write of size 1 ==30532== at 0x402DAB8: strcat (vg_replace_strmem.c:303) ==30532== by 0x7BC8FBEE: NTDLL_strcat (string.c:90) ==30532== by 0x6C69865F: ??? ==30532== Address 0x6835753 is 0 bytes after a block of size 51 alloc'd ==30532== at 0x7BC5067C: notify_alloc (heap.c:254) ==30532== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30532== by 0x6379EB6: msvcrt_heap_alloc (heap.c:70) ==30532== by 0x637AB08: MSVCRT_malloc (heap.c:437) ==30532== by 0x6C741669: ??? ==30532== by 0x6C698626: ??? ==30532== { Memcheck:Addr1 fun:strcat fun:NTDLL_strcat obj:* } ../../../tools/runtest -q -P wine -T ../../.. -M mscoree.dll -p mscoree_test.exe.so metahost && touch metahost.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mscoree.dll -p mscoree_test.exe.so mscoree && touch mscoree.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30560== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/bin/libmono-2.0-x86.pdb ==30560== Invalid write of size 1 ==30560== at 0x402DAB8: strcat (vg_replace_strmem.c:303) ==30560== by 0x7BC8FBEE: NTDLL_strcat (string.c:90) ==30560== by 0x6C69865F: ??? ==30560== Address 0x62b577b is 0 bytes after a block of size 51 alloc'd ==30560== at 0x7BC5067C: notify_alloc (heap.c:254) ==30560== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30560== by 0x5DEDEB6: msvcrt_heap_alloc (heap.c:70) ==30560== by 0x5DEEB08: MSVCRT_malloc (heap.c:437) ==30560== by 0x6C741669: ??? ==30560== by 0x6C698626: ??? ==30560== { Memcheck:Addr1 fun:strcat fun:NTDLL_strcat obj:* } ==30560== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30560_e5ee3ea6 is empty ==30560== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/lib/mono/4.5/mscorlib.pdb ==30560== 64 bytes in 1 blocks are definitely lost in loss record 234 of 436 ==30560== at 0x7BC5067C: notify_alloc (heap.c:254) ==30560== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30560== by 0x5DEDEB6: msvcrt_heap_alloc (heap.c:70) ==30560== by 0x5DEEA4A: MSVCRT_calloc (heap.c:405) ==30560== by 0x6C7416C4: ??? ==30560== by 0x6C5F2CFD: ??? ==30560== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30560== 664 bytes in 26 blocks are definitely lost in loss record 390 of 436 ==30560== at 0x7BC5067C: notify_alloc (heap.c:254) ==30560== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30560== by 0x5DEDEB6: msvcrt_heap_alloc (heap.c:70) ==30560== by 0x5DEEA4A: MSVCRT_calloc (heap.c:405) ==30560== by 0x6C7416C4: ??? ==30560== by 0x6C66B5B1: ??? ==30560== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30553== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/bin/libmono-2.0-x86.pdb ==30553== Invalid write of size 1 ==30553== at 0x402DAB8: strcat (vg_replace_strmem.c:303) ==30553== by 0x7BC8FBEE: NTDLL_strcat (string.c:90) ==30553== by 0x6C69865F: ??? ==30553== Address 0x63e574b is 0 bytes after a block of size 51 alloc'd ==30553== at 0x7BC5067C: notify_alloc (heap.c:254) ==30553== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30553== by 0x5F21EB6: msvcrt_heap_alloc (heap.c:70) ==30553== by 0x5F22B08: MSVCRT_malloc (heap.c:437) ==30553== by 0x6C741669: ??? ==30553== by 0x6C698626: ??? ==30553== { Memcheck:Addr1 fun:strcat fun:NTDLL_strcat obj:* } ==30553== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30553_1fdb06b1 is empty ==30553== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/lib/mono/4.5/mscorlib.pdb ==30553== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30553_1fdb06b1 is empty ==30553== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.pdb ==30553== 48 bytes in 2 blocks are possibly lost in loss record 2,889 of 3,459 ==30553== at 0x7BC5067C: notify_alloc (heap.c:254) ==30553== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30553== by 0x5F21EB6: msvcrt_heap_alloc (heap.c:70) ==30553== by 0x5F22A4A: MSVCRT_calloc (heap.c:405) ==30553== by 0x6C7416C4: ??? ==30553== by 0x6C66B5B1: ??? ==30553== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30553== 64 bytes in 1 blocks are definitely lost in loss record 2,959 of 3,459 ==30553== at 0x7BC5067C: notify_alloc (heap.c:254) ==30553== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30553== by 0x5F21EB6: msvcrt_heap_alloc (heap.c:70) ==30553== by 0x5F22A4A: MSVCRT_calloc (heap.c:405) ==30553== by 0x6C7416C4: ??? ==30553== by 0x6C5F2CFD: ??? ==30553== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30553== 9,828 bytes in 189 blocks are definitely lost in loss record 3,433 of 3,459 ==30553== at 0x7BC5067C: notify_alloc (heap.c:254) ==30553== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30553== by 0x5F21EB6: msvcrt_heap_alloc (heap.c:70) ==30553== by 0x5F22A4A: MSVCRT_calloc (heap.c:405) ==30553== by 0x6C7416C4: ??? ==30553== by 0x6C696339: ??? ==30553== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30553== 58,452 bytes in 2,285 blocks are definitely lost in loss record 3,454 of 3,459 ==30553== at 0x7BC5067C: notify_alloc (heap.c:254) ==30553== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30553== by 0x5F21EB6: msvcrt_heap_alloc (heap.c:70) ==30553== by 0x5F22A4A: MSVCRT_calloc (heap.c:405) ==30553== by 0x6C7416C4: ??? ==30553== by 0x6C66B5B1: ??? ==30553== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mscoree/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msctf/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msctf.dll -p msctf_test.exe.so inputprocessor && touch inputprocessor.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msctf/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msdmo/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msdmo.dll -p msdmo_test.exe.so msdmo && touch msdmo.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msdmo/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mshtml/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so activex && touch activex.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30609== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30609_0f597e89 is empty ==30609== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==30609== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30609_0f597e89 is empty ==30609== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==30609== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30609_0f597e89 is empty ==30609== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==30609== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30609_0f597e89 is empty ==30609== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==30609== 12 bytes in 1 blocks are definitely lost in loss record 220 of 2,838 ==30609== at 0x7BC5067C: notify_alloc (heap.c:254) ==30609== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30609== by 0x6663E08: heap_alloc (mshtml_private.h:1155) ==30609== by 0x666A71F: nsSupportsWeakReference_GetWeakReference (nsembed.c:1952) ==30609== by 0x6BB64A55: ??? ==30609== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:nsSupportsWeakReference_GetWeakReference obj:* } ==30609== 128 bytes in 4 blocks are possibly lost in loss record 1,978 of 2,838 ==30609== at 0x7BC5067C: notify_alloc (heap.c:254) ==30609== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30609== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==30609== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==30609== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==30609== by 0x6A0D8113: ??? ==30609== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==30609== 512 bytes in 15 blocks are possibly lost in loss record 2,371 of 2,838 ==30609== at 0x7BC5067C: notify_alloc (heap.c:254) ==30609== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30609== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30609== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30609== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30609== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30609== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30609== by 0x5C43B8B: pre_process_uri (uri.c:786) ==30609== by 0x5C5107E: CreateUri (uri.c:5738) ==30609== by 0x6689D32: create_uri (persist.c:185) ==30609== by 0x667A7CB: nsIOServiceHook_NewURI (nsio.c:3890) ==30609== by 0x69F3AFD9: ??? ==30609== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==30609== 800 bytes in 2 blocks are possibly lost in loss record 2,516 of 2,838 ==30609== at 0x7BC5067C: notify_alloc (heap.c:254) ==30609== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==30609== by 0x85F9FF2: msvcrt_heap_realloc (heap.c:102) ==30609== by 0x85FABA5: MSVCRT_realloc (heap.c:457) ==30609== by 0x69E78C00: ??? ==30609== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so dom && touch dom.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30671== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30671_a2b780ef is empty ==30671== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==30671== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30671_a2b780ef is empty ==30671== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==30671== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30671_a2b780ef is empty ==30671== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==30671== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30671_a2b780ef is empty ==30671== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==30671== Invalid free() / delete / delete[] / realloc() ==30671== at 0x7BC506EB: notify_free (heap.c:262) ==30671== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==30671== by 0x674353D: heap_free (mshtml_private.h:1175) ==30671== by 0x6755CE6: CustomDoc_Release (htmldoc.c:4982) ==30671== by 0x674347C: htmldoc_release (mshtml_private.h:606) ==30671== by 0x6743D6D: HTMLDocument_Release (htmldoc.c:175) ==30671== by 0x4A57890: IHTMLDocument2_Release (mshtml.h:55941) ==30671== by 0x4A57890: run_domtest (???:0) ==30671== by 0x4A57A37: func_dom (dom.c:10432) ==30671== by 0x4AC27ED: run_test (test.h:589) ==30671== by 0x4AC2C19: main (test.h:671) ==30671== Address 0x4904f08 is 16 bytes after a block of size 16 free'd ==30671== at 0x7BC506EB: notify_free (heap.c:262) ==30671== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==30671== by 0x5324B51: get_outline_text_metrics (freetype.c:7972) ==30671== by 0x531DB8B: GetEnumStructs (freetype.c:5958) ==30671== by 0x531E05D: enum_face_charsets (freetype.c:6059) ==30671== by 0x531E7E7: freetype_EnumFonts (freetype.c:6149) ==30671== by 0x5304D64: FONT_EnumFontFamiliesEx (font.c:920) ==30671== by 0x5304DC8: EnumFontFamiliesExW (font.c:933) ==30671== by 0x6A788847: ??? ==30671== Block was alloc'd at ==30671== at 0x7BC5067C: notify_alloc (heap.c:254) ==30671== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30671== by 0x530E98C: copy_name_table_string (freetype.c:1425) ==30671== by 0x530EBB8: get_face_name (freetype.c:1465) ==30671== by 0x5323876: get_outline_text_metrics (freetype.c:7670) ==30671== by 0x531DB8B: GetEnumStructs (freetype.c:5958) ==30671== by 0x531E05D: enum_face_charsets (freetype.c:6059) ==30671== by 0x531E7E7: freetype_EnumFonts (freetype.c:6149) ==30671== by 0x5304D64: FONT_EnumFontFamiliesEx (font.c:920) ==30671== by 0x5304DC8: EnumFontFamiliesExW (font.c:933) ==30671== by 0x6A788847: ??? ==30671== { Memcheck:Free fun:notify_free fun:RtlFreeHeap fun:heap_free fun:CustomDoc_Release fun:htmldoc_release fun:HTMLDocument_Release fun:IHTMLDocument2_Release fun:run_domtest fun:func_dom fun:run_test fun:main } wine: Unhandled page fault on write access to 0x00000016 at address 0x7bc50202 (thread 01f3), starting debugger... ==30671== 64 bytes in 2 blocks are possibly lost in loss record 1,533 of 2,678 ==30671== at 0x7BC5067C: notify_alloc (heap.c:254) ==30671== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30671== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==30671== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==30671== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==30671== by 0x6A0D8113: ??? ==30671== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==30671== 187 bytes in 1 blocks are possibly lost in loss record 2,005 of 2,678 ==30671== at 0x7BC5067C: notify_alloc (heap.c:254) ==30671== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==30671== by 0x8731FF2: msvcrt_heap_realloc (heap.c:102) ==30671== by 0x8732BA5: MSVCRT_realloc (heap.c:457) ==30671== by 0x69E78C00: ??? ==30671== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==30671== 256 bytes in 7 blocks are possibly lost in loss record 2,081 of 2,678 ==30671== at 0x7BC5067C: notify_alloc (heap.c:254) ==30671== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30671== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30671== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30671== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30671== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30671== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30671== by 0x5C43B8B: pre_process_uri (uri.c:786) ==30671== by 0x5C5107E: CreateUri (uri.c:5738) ==30671== by 0x6802D32: create_uri (persist.c:185) ==30671== by 0x67F37CB: nsIOServiceHook_NewURI (nsio.c:3890) ==30671== by 0x69F3AFD9: ??? ==30671== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } Makefile:218: recipe for target 'dom.ok' failed make[1]: *** [dom.ok] Error 5 ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so protocol && touch protocol.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so script && touch script.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==30751== Invalid read of size 2 ==30751== at 0x54B10C1: DispCallFunc (typelib.c:6696) ==30751== by 0x662C0B1: invoke_builtin_function (dispex.c:1112) ==30751== by 0x662C39B: function_invoke (dispex.c:1163) ==30751== by 0x662C649: invoke_builtin_prop (dispex.c:1231) ==30751== by 0x662D575: DispatchEx_InvokeEx (dispex.c:1522) ==30751== by 0x1562844D: IDispatchEx_InvokeEx (dispex.h:318) ==30751== by 0x1562844D: disp_call (???:0) ==30751== by 0x1562B6DB: exprval_call (engine.c:327) ==30751== by 0x1562E024: interp_call_member (engine.c:1185) ==30751== by 0x15632E5F: enter_bytecode (engine.c:2712) ==30751== by 0x15633B91: exec_source (engine.c:2967) ==30751== by 0x15636059: invoke_source (function.c:257) ==30751== by 0x156364A8: Function_invoke (function.c:350) ==30751== by 0x15625C4C: invoke_prop_func (dispex.c:383) ==30751== by 0x15626ED8: DispatchEx_InvokeEx (dispex.c:684) ==30751== by 0x6672D76: IDispatchEx_InvokeEx (dispex.h:318) ==30751== by 0x6672D76: call_disp_func (???:0) ==30751== by 0x66731C9: call_event_handlers (htmlevent.c:1003) ==30751== by 0x6673C68: fire_event_obj (htmlevent.c:1137) ==30751== by 0x66742B6: fire_event (htmlevent.c:1246) ==30751== by 0x66E557F: handle_load (nsevents.c:282) ==30751== by 0x6B18A8A8: ??? ==30751== Address 0x7e2ee10 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x6628B97: heap_alloc (mshtml_private.h:1155) ==30751== by 0x66293FD: add_func_info (dispex.c:276) ==30751== by 0x6629889: process_interface (dispex.c:345) ==30751== by 0x6629B89: preprocess_dispex_data (dispex.c:408) ==30751== by 0x662DF71: init_dispex_with_compat_mode (dispex.c:1761) ==30751== by 0x66FED07: init_dispex (mshtml_private.h:325) ==30751== by 0x6701E07: OmNavigator_Create (omnavigator.c:1088) ==30751== by 0x66C3BC8: HTMLWindow2_get_navigator (htmlwindow.c:909) ==30751== by 0x4A9C063: IHTMLWindow2_get_navigator (mshtml.h:51856) ==30751== by 0x4A9C063: test_script_run (???:0) ==30751== by 0x4A9CC96: ActiveScriptParse_ParseScriptText (script.c:2472) ==30751== by 0x671592A: IActiveScriptParse32_ParseScriptText (activscp.h:1363) ==30751== by 0x671592A: parse_elem_text (???:0) ==30751== by 0x671650B: parse_inline_script (script.c:1103) ==30751== by 0x6716759: parse_script_elem (script.c:1142) ==30751== by 0x6716ED7: doc_insert_script (script.c:1285) ==30751== by 0x66D25A9: run_insert_script (mutation.c:340) ==30751== by 0x66D2E00: nsRunnable_Run (mutation.c:512) ==30751== by 0x6A83E0A0: ??? ==30751== by 0x66D39E1: nsDocumentObserver_AttemptToExecuteScript (mutation.c:797) ==30751== { Memcheck:Addr2 fun:DispCallFunc fun:invoke_builtin_function fun:function_invoke fun:invoke_builtin_prop fun:DispatchEx_InvokeEx fun:IDispatchEx_InvokeEx fun:disp_call fun:exprval_call fun:interp_call_member fun:enter_bytecode fun:exec_source fun:invoke_source fun:Function_invoke fun:invoke_prop_func fun:DispatchEx_InvokeEx fun:IDispatchEx_InvokeEx fun:call_disp_func fun:call_event_handlers fun:fire_event_obj fun:fire_event fun:handle_load obj:* } ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/softokn3.pdb ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nssdbm3.pdb ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/freebl3.pdb ==30751== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30751_74df2eff is empty ==30751== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nssckbi.pdb ==30751== 8 bytes in 1 blocks are definitely lost in loss record 173 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x6670463: heap_alloc_zero (mshtml_private.h:1160) ==30751== by 0x66746A8: alloc_handler_vector (htmlevent.c:1330) ==30751== by 0x6674BAD: set_event_handler_disp (htmlevent.c:1438) ==30751== by 0x66752CE: bind_target_event (htmlevent.c:1598) ==30751== by 0x67180B5: bind_event_scripts (script.c:1592) ==30751== by 0x66D233F: run_end_load (mutation.c:293) ==30751== by 0x66D2E00: nsRunnable_Run (mutation.c:512) ==30751== by 0x6A83E0A0: ??? ==30751== by 0x66D32AF: nsDocumentObserver_EndLoad (mutation.c:669) ==30751== by 0x6A915FF6: ??? ==30751== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:alloc_handler_vector fun:set_event_handler_disp fun:bind_target_event fun:bind_event_scripts fun:run_end_load fun:nsRunnable_Run obj:* fun:nsDocumentObserver_EndLoad obj:* } ==30751== 12 bytes in 1 blocks are definitely lost in loss record 282 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x66DCE08: heap_alloc (mshtml_private.h:1155) ==30751== by 0x66E371F: nsSupportsWeakReference_GetWeakReference (nsembed.c:1952) ==30751== by 0x6BB64A55: ??? ==30751== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:nsSupportsWeakReference_GetWeakReference obj:* } ==30751== 20 bytes in 1 blocks are possibly lost in loss record 580 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87051DD: ??? ==30751== by 0x86FB1D5: ??? ==30751== by 0x86FB348: ??? ==30751== by 0x86E2973: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 24 bytes in 1 blocks are definitely lost in loss record 682 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x6713207: heap_alloc (mshtml_private.h:1155) ==30751== by 0x6715701: set_script_elem_readystate (script.c:762) ==30751== by 0x6716EF0: doc_insert_script (script.c:1290) ==30751== by 0x66D25A9: run_insert_script (mutation.c:340) ==30751== by 0x66D2E00: nsRunnable_Run (mutation.c:512) ==30751== by 0x6A83E0A0: ??? ==30751== by 0x66D39E1: nsDocumentObserver_AttemptToExecuteScript (mutation.c:797) ==30751== by 0x6A912591: ??? ==30751== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:set_script_elem_readystate fun:doc_insert_script fun:run_insert_script fun:nsRunnable_Run obj:* fun:nsDocumentObserver_AttemptToExecuteScript obj:* } ==30751== 32 bytes in 4 blocks are definitely lost in loss record 1,036 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x6670463: heap_alloc_zero (mshtml_private.h:1160) ==30751== by 0x66746A8: alloc_handler_vector (htmlevent.c:1330) ==30751== by 0x6674BAD: set_event_handler_disp (htmlevent.c:1438) ==30751== by 0x66754AB: check_event_attr (htmlevent.c:1633) ==30751== by 0x66D35E6: nsDocumentObserver_BindToDocument (mutation.c:747) ==30751== by 0x6A9124CF: ??? ==30751== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:alloc_handler_vector fun:set_event_handler_disp fun:check_event_attr fun:nsDocumentObserver_BindToDocument obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,632 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86FF5D7: ??? ==30751== by 0x86FB243: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,633 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86FE6E4: ??? ==30751== by 0x86FF620: ??? ==30751== by 0x86FB243: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,634 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x86FE188: ??? ==30751== by 0x86FE728: ??? ==30751== by 0x86FF620: ??? ==30751== by 0x86FB243: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,635 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x8704929: ??? ==30751== by 0x86FE73B: ??? ==30751== by 0x86FF620: ??? ==30751== by 0x86FB243: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,636 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x87048F7: ??? ==30751== by 0x86FE74E: ??? ==30751== by 0x86FF620: ??? ==30751== by 0x86FB243: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,637 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x87048F7: ??? ==30751== by 0x86FE761: ??? ==30751== by 0x86FF620: ??? ==30751== by 0x86FB243: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,638 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86FA480: ??? ==30751== by 0x86FB2EC: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,639 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x86FE188: ??? ==30751== by 0x86FE1E2: ??? ==30751== by 0x86FA4AD: ??? ==30751== by 0x86FB2EC: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,640 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x8704929: ??? ==30751== by 0x86FE1F9: ??? ==30751== by 0x86FA4AD: ??? ==30751== by 0x86FB2EC: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,641 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x66F0CE44: ??? ==30751== by 0x66F0B7DB: ??? ==30751== by 0x66F057FD: ??? ==30751== by 0x66F02095: ??? ==30751== by 0x86D8BBA: ??? ==30751== by 0x86D90B3: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,642 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F0B971: ??? ==30751== by 0x66F057FD: ??? ==30751== by 0x66F02095: ??? ==30751== by 0x86D8BBA: ??? ==30751== by 0x86D90B3: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,643 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F0B992: ??? ==30751== by 0x66F057FD: ??? ==30751== by 0x66F02095: ??? ==30751== by 0x86D8BBA: ??? ==30751== by 0x86D90B3: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,644 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x66F0CE44: ??? ==30751== by 0x66F04728: ??? ==30751== by 0x66F0467B: ??? ==30751== by 0x66F05BFD: ??? ==30751== by 0x66F01FF8: ??? ==30751== by 0x86EA66E: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,645 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F047D7: ??? ==30751== by 0x66F0467B: ??? ==30751== by 0x66F05BFD: ??? ==30751== by 0x66F01FF8: ??? ==30751== by 0x86EA66E: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,646 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F04800: ??? ==30751== by 0x66F0467B: ??? ==30751== by 0x66F05BFD: ??? ==30751== by 0x66F01FF8: ??? ==30751== by 0x86EA66E: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,647 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F0481A: ??? ==30751== by 0x66F0467B: ??? ==30751== by 0x66F05BFD: ??? ==30751== by 0x66F01FF8: ??? ==30751== by 0x86EA66E: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,648 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F04834: ??? ==30751== by 0x66F0467B: ??? ==30751== by 0x66F05BFD: ??? ==30751== by 0x66F01FF8: ??? ==30751== by 0x86EA66E: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,649 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x66F0CE44: ??? ==30751== by 0x66F026F8: ??? ==30751== by 0x66F0531E: ??? ==30751== by 0x66F066A3: ??? ==30751== by 0x66F01EEE: ??? ==30751== by 0x86EA7E7: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,650 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x885FFD1: ??? ==30751== by 0x66F02793: ??? ==30751== by 0x66F0531E: ??? ==30751== by 0x66F066A3: ??? ==30751== by 0x66F01EEE: ??? ==30751== by 0x86EA7E7: ??? ==30751== by 0x86EAB6C: ??? ==30751== by 0x86D9209: ??? ==30751== by 0x86E27DE: ??? ==30751== by 0x86E2954: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,651 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86CA91F: ??? ==30751== by 0x86FB15B: ??? ==30751== by 0x86FB33E: ??? ==30751== by 0x86E2973: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,652 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86CA9BB: ??? ==30751== by 0x86FB15B: ??? ==30751== by 0x86FB33E: ??? ==30751== by 0x86E2973: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 40 bytes in 1 blocks are possibly lost in loss record 1,653 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x8704E39: ??? ==30751== by 0x8705168: ??? ==30751== by 0x87051EB: ??? ==30751== by 0x86FB1D5: ??? ==30751== by 0x86FB348: ??? ==30751== by 0x86E2973: ??? ==30751== by 0x69E65432: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 72 bytes in 3 blocks are possibly lost in loss record 2,116 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x6713207: heap_alloc (mshtml_private.h:1155) ==30751== by 0x6715701: set_script_elem_readystate (script.c:762) ==30751== by 0x6716EF0: doc_insert_script (script.c:1290) ==30751== by 0x669B6CF: HTMLScriptElement_bind_to_tree (htmlscript.c:408) ==30751== by 0x66D1FD5: run_bind_to_tree (mutation.c:232) ==30751== by 0x66D2E00: nsRunnable_Run (mutation.c:512) ==30751== by 0x6A841D7D: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:set_script_elem_readystate fun:doc_insert_script fun:HTMLScriptElement_bind_to_tree fun:run_bind_to_tree fun:nsRunnable_Run obj:* } ==30751== 72 bytes in 3 blocks are definitely lost in loss record 2,118 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x6713207: heap_alloc (mshtml_private.h:1155) ==30751== by 0x6715701: set_script_elem_readystate (script.c:762) ==30751== by 0x6716EF0: doc_insert_script (script.c:1290) ==30751== by 0x669B6CF: HTMLScriptElement_bind_to_tree (htmlscript.c:408) ==30751== by 0x66D1FD5: run_bind_to_tree (mutation.c:232) ==30751== by 0x66D2E00: nsRunnable_Run (mutation.c:512) ==30751== by 0x6A841D7D: ??? ==30751== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:set_script_elem_readystate fun:doc_insert_script fun:HTMLScriptElement_bind_to_tree fun:run_bind_to_tree fun:nsRunnable_Run obj:* } ==30751== 80 bytes in 2 blocks are possibly lost in loss record 2,225 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86CA91F: ??? ==30751== by 0x86FB15B: ??? ==30751== by 0x86FB2AC: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 80 bytes in 2 blocks are possibly lost in loss record 2,226 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x87042C0: ??? ==30751== by 0x86CA9BB: ??? ==30751== by 0x86FB15B: ??? ==30751== by 0x86FB2AC: ??? ==30751== by 0x878CBBE: ??? ==30751== by 0x878D1E2: ??? ==30751== by 0x69E652EF: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } ==30751== 96 bytes in 4 blocks are possibly lost in loss record 2,449 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x88602DD: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30751== 128 bytes in 4 blocks are possibly lost in loss record 2,650 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==30751== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==30751== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==30751== by 0x6A0D8113: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==30751== 136 bytes in 1 blocks are definitely lost in loss record 2,803 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x92BC985: WINTRUST_Alloc (wintrust_main.c:47) ==30751== by 0x92BCF0D: WINTRUST_AllocateProviderData (wintrust_main.c:207) ==30751== by 0x92BD1E1: WINTRUST_DefaultVerify (wintrust_main.c:286) ==30751== by 0x92BF0B4: WinVerifyTrust (wintrust_main.c:731) ==30751== by 0x69F18B8B: ??? ==30751== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:WINTRUST_Alloc fun:WINTRUST_AllocateProviderData fun:WINTRUST_DefaultVerify fun:WinVerifyTrust obj:* } ==30751== 192 bytes in 2 blocks are possibly lost in loss record 2,946 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x570C0F1: heap_alloc_zero (internet.h:99) ==30751== by 0x570D3E4: create_netconn (netconnection.c:348) ==30751== by 0x56FCA82: open_http_connection (http.c:4848) ==30751== by 0x56FD1C1: HTTP_HttpSendRequestW (http.c:4989) ==30751== by 0x56FE098: AsyncHttpSendRequestProc (http.c:5258) ==30751== by 0x570A020: INTERNET_WorkerThreadFunc (internet.c:3724) ==30751== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==30751== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==30751== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==30751== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==30751== by 0x7BC8F869: ??? (signal_i386.c:2709) ==30751== by 0x7BC9953E: start_thread (thread.c:453) ==30751== by 0x4243250: start_thread (pthread_create.c:334) ==30751== by 0x4341B2D: clone (clone.S:122) ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==30751== 192 bytes in 2 blocks are possibly lost in loss record 2,947 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30751== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30751== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30751== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30751== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30751== by 0x5C4FE52: combine_uri (uri.c:6671) ==30751== by 0x5C50698: CoInternetCombineUrlEx (uri.c:6816) ==30751== by 0x66E6B62: combine_url (nsio.c:152) ==30751== by 0x66F37A8: nsIOServiceHook_NewURI (nsio.c:3888) ==30751== by 0x69F3AFD9: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:combine_uri fun:CoInternetCombineUrlEx fun:combine_url fun:nsIOServiceHook_NewURI obj:* } ==30751== 240 bytes in 3 blocks are possibly lost in loss record 3,010 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30751== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30751== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30751== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30751== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30751== by 0x5480A5C: SysAllocString (oleaut.c:247) ==30751== by 0x5C4F502: combine_uri (uri.c:6465) ==30751== by 0x5C50698: CoInternetCombineUrlEx (uri.c:6816) ==30751== by 0x66E6B62: combine_url (nsio.c:152) ==30751== by 0x66F37A8: nsIOServiceHook_NewURI (nsio.c:3888) ==30751== by 0x69F3AFD9: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:SysAllocString fun:combine_uri fun:CoInternetCombineUrlEx fun:combine_url fun:nsIOServiceHook_NewURI obj:* } ==30751== 448 bytes in 6 blocks are possibly lost in loss record 3,327 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30751== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30751== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30751== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30751== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30751== by 0x5480A5C: SysAllocString (oleaut.c:247) ==30751== by 0x5C48FD4: Uri_GetPropertyBSTR (uri.c:4376) ==30751== by 0x5C4A204: IUri_GetPropertyBSTR (urlmon.h:6761) ==30751== by 0x5C4A204: Uri_GetDisplayUri (???:0) ==30751== by 0x5C3CB73: IUri_GetDisplayUri (urlmon.h:6779) ==30751== by 0x5C3CB73: create_moniker (???:0) ==30751== by 0x5C3D112: CreateURLMonikerEx2 (umon.c:708) ==30751== by 0x66E9B8C: async_open (nsio.c:1033) ==30751== by 0x66EA2A0: nsChannel_AsyncOpen (nsio.c:1161) ==30751== by 0x6A59939E: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:SysAllocString fun:Uri_GetPropertyBSTR fun:IUri_GetPropertyBSTR fun:Uri_GetDisplayUri fun:IUri_GetDisplayUri fun:create_moniker fun:CreateURLMonikerEx2 fun:async_open fun:nsChannel_AsyncOpen obj:* } ==30751== 1,089 bytes in 4 blocks are possibly lost in loss record 3,683 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==30751== by 0x8625FF2: msvcrt_heap_realloc (heap.c:102) ==30751== by 0x8626BA5: MSVCRT_realloc (heap.c:457) ==30751== by 0x69E78C00: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==30751== 1,192 bytes in 13 blocks are possibly lost in loss record 3,699 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x8625EB6: msvcrt_heap_alloc (heap.c:70) ==30751== by 0x8626A4A: MSVCRT_calloc (heap.c:405) ==30751== by 0x88490C1: ??? ==30751== by 0x886002A: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==30751== 5,056 bytes in 65 blocks are possibly lost in loss record 3,997 of 4,207 ==30751== at 0x7BC5067C: notify_alloc (heap.c:254) ==30751== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30751== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30751== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30751== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30751== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30751== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30751== by 0x5C3FB8B: pre_process_uri (uri.c:786) ==30751== by 0x5C4D07E: CreateUri (uri.c:5738) ==30751== by 0x6702D32: create_uri (persist.c:185) ==30751== by 0x66F37CB: nsIOServiceHook_NewURI (nsio.c:3890) ==30751== by 0x69F3AFD9: ??? ==30751== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so style && touch style.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30855== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30855_aa907b47 is empty ==30855== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==30855== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30855_aa907b47 is empty ==30855== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==30855== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30855_aa907b47 is empty ==30855== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==30855== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30855_aa907b47 is empty ==30855== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==30855== Invalid read of size 2 ==30855== at 0x4AC2295: wine_dbgstr_wn (test.h:479) ==30855== by 0x4AA0BD2: wine_dbgstr_w (test.h:70) ==30855== by 0x4AADF3F: test_body_style (style.c:1575) ==30855== by 0x4ABAD7B: basic_style_test (style.c:2993) ==30855== by 0x4ABB933: run_test (style.c:3202) ==30855== by 0x4ABB9F6: func_style (style.c:3214) ==30855== by 0x4AC27ED: run_test (test.h:589) ==30855== by 0x4AC2C19: main (test.h:671) ==30855== Address 0x7f4b2d4 is 4 bytes inside a block of size 78 free'd ==30855== at 0x7BC506EB: notify_free (heap.c:262) ==30855== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==30855== by 0x7BC7D5C9: RtlFreeUnicodeString (rtlstr.c:319) ==30855== by 0x7BC7EAB3: RtlUpcaseUnicodeStringToCountedOemString (rtlstr.c:1186) ==30855== by 0x7BC6CB13: RtlIsNameLegalDOS8Dot3 (path.c:866) ==30855== by 0x7BC4175C: find_file_in_dir (directory.c:2207) ==30855== by 0x7BC431C4: lookup_unix_name (directory.c:2745) ==30855== by 0x7BC43DDC: wine_nt_to_unix_file_name (directory.c:2969) ==30855== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==30855== by 0x7BC46E72: FILE_CreateFile (file.c:197) ==30855== by 0x7BC47378: NtOpenFile (file.c:308) ==30855== by 0x7BC5C71F: find_dll_file (loader.c:2159) ==30855== by 0x7BC5CA39: load_dll (loader.c:2232) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== by 0x7BC5CF64: load_dll (loader.c:2299) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== Block was alloc'd at ==30855== at 0x7BC5067C: notify_alloc (heap.c:254) ==30855== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30855== by 0x7BC7E679: RtlUpcaseUnicodeString (rtlstr.c:1030) ==30855== by 0x7BC7E9BF: RtlUpcaseUnicodeStringToCountedOemString (rtlstr.c:1163) ==30855== by 0x7BC6CB13: RtlIsNameLegalDOS8Dot3 (path.c:866) ==30855== by 0x7BC4175C: find_file_in_dir (directory.c:2207) ==30855== by 0x7BC431C4: lookup_unix_name (directory.c:2745) ==30855== by 0x7BC43DDC: wine_nt_to_unix_file_name (directory.c:2969) ==30855== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==30855== by 0x7BC46E72: FILE_CreateFile (file.c:197) ==30855== by 0x7BC47378: NtOpenFile (file.c:308) ==30855== by 0x7BC5C71F: find_dll_file (loader.c:2159) ==30855== by 0x7BC5CA39: load_dll (loader.c:2232) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== by 0x7BC5CF64: load_dll (loader.c:2299) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:wine_dbgstr_w fun:test_body_style fun:basic_style_test fun:run_test fun:func_style fun:run_test fun:main } ==30855== Invalid read of size 2 ==30855== at 0x4AC2313: wine_dbgstr_wn (test.h:489) ==30855== by 0x4AA0BD2: wine_dbgstr_w (test.h:70) ==30855== by 0x4AADF3F: test_body_style (style.c:1575) ==30855== by 0x4ABAD7B: basic_style_test (style.c:2993) ==30855== by 0x4ABB933: run_test (style.c:3202) ==30855== by 0x4ABB9F6: func_style (style.c:3214) ==30855== by 0x4AC27ED: run_test (test.h:589) ==30855== by 0x4AC2C19: main (test.h:671) ==30855== Address 0x7f4b2d4 is 4 bytes inside a block of size 78 free'd ==30855== at 0x7BC506EB: notify_free (heap.c:262) ==30855== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==30855== by 0x7BC7D5C9: RtlFreeUnicodeString (rtlstr.c:319) ==30855== by 0x7BC7EAB3: RtlUpcaseUnicodeStringToCountedOemString (rtlstr.c:1186) ==30855== by 0x7BC6CB13: RtlIsNameLegalDOS8Dot3 (path.c:866) ==30855== by 0x7BC4175C: find_file_in_dir (directory.c:2207) ==30855== by 0x7BC431C4: lookup_unix_name (directory.c:2745) ==30855== by 0x7BC43DDC: wine_nt_to_unix_file_name (directory.c:2969) ==30855== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==30855== by 0x7BC46E72: FILE_CreateFile (file.c:197) ==30855== by 0x7BC47378: NtOpenFile (file.c:308) ==30855== by 0x7BC5C71F: find_dll_file (loader.c:2159) ==30855== by 0x7BC5CA39: load_dll (loader.c:2232) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== by 0x7BC5CF64: load_dll (loader.c:2299) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== Block was alloc'd at ==30855== at 0x7BC5067C: notify_alloc (heap.c:254) ==30855== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30855== by 0x7BC7E679: RtlUpcaseUnicodeString (rtlstr.c:1030) ==30855== by 0x7BC7E9BF: RtlUpcaseUnicodeStringToCountedOemString (rtlstr.c:1163) ==30855== by 0x7BC6CB13: RtlIsNameLegalDOS8Dot3 (path.c:866) ==30855== by 0x7BC4175C: find_file_in_dir (directory.c:2207) ==30855== by 0x7BC431C4: lookup_unix_name (directory.c:2745) ==30855== by 0x7BC43DDC: wine_nt_to_unix_file_name (directory.c:2969) ==30855== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==30855== by 0x7BC46E72: FILE_CreateFile (file.c:197) ==30855== by 0x7BC47378: NtOpenFile (file.c:308) ==30855== by 0x7BC5C71F: find_dll_file (loader.c:2159) ==30855== by 0x7BC5CA39: load_dll (loader.c:2232) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== by 0x7BC5CF64: load_dll (loader.c:2299) ==30855== by 0x7BC578FF: import_dll (loader.c:601) ==30855== by 0x7BC589E4: fixup_imports (loader.c:915) ==30855== by 0x7BC5B590: load_native_dll (loader.c:1821) ==30855== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:wine_dbgstr_w fun:test_body_style fun:basic_style_test fun:run_test fun:func_style fun:run_test fun:main } ==30855== 128 bytes in 4 blocks are possibly lost in loss record 1,745 of 2,464 ==30855== at 0x7BC5067C: notify_alloc (heap.c:254) ==30855== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30855== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==30855== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==30855== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==30855== by 0x6A0D8113: ??? ==30855== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==30855== 224 bytes in 6 blocks are possibly lost in loss record 1,864 of 2,464 ==30855== at 0x7BC5067C: notify_alloc (heap.c:254) ==30855== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30855== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30855== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30855== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30855== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30855== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30855== by 0x5C33B8B: pre_process_uri (uri.c:786) ==30855== by 0x5C4107E: CreateUri (uri.c:5738) ==30855== by 0x6679D32: create_uri (persist.c:185) ==30855== by 0x666A7CB: nsIOServiceHook_NewURI (nsio.c:3890) ==30855== by 0x69F3AFD9: ??? ==30855== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==30855== 903 bytes in 3 blocks are possibly lost in loss record 2,182 of 2,464 ==30855== at 0x7BC5067C: notify_alloc (heap.c:254) ==30855== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==30855== by 0x85E9FF2: msvcrt_heap_realloc (heap.c:102) ==30855== by 0x85EABA5: MSVCRT_realloc (heap.c:457) ==30855== by 0x69E78C00: ??? ==30855== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ../../../tools/runtest -q -P wine -T ../../.. -M mshtml.dll -p mshtml_test.exe.so xmlhttprequest && touch xmlhttprequest.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30919== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30919_435a9687 is empty ==30919== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==30919== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30919_435a9687 is empty ==30919== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==30919== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30919_435a9687 is empty ==30919== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==30919== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp30919_435a9687 is empty ==30919== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==30919== 128 bytes in 4 blocks are possibly lost in loss record 1,815 of 2,611 ==30919== at 0x7BC5067C: notify_alloc (heap.c:254) ==30919== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30919== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==30919== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==30919== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==30919== by 0x6A0D8113: ??? ==30919== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==30919== 192 bytes in 2 blocks are possibly lost in loss record 1,936 of 2,611 ==30919== at 0x7BC5067C: notify_alloc (heap.c:254) ==30919== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30919== by 0x570C0F1: heap_alloc_zero (internet.h:99) ==30919== by 0x570D3E4: create_netconn (netconnection.c:348) ==30919== by 0x56FCA82: open_http_connection (http.c:4848) ==30919== by 0x56FD1C1: HTTP_HttpSendRequestW (http.c:4989) ==30919== by 0x56FE098: AsyncHttpSendRequestProc (http.c:5258) ==30919== by 0x570A020: INTERNET_WorkerThreadFunc (internet.c:3724) ==30919== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==30919== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==30919== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==30919== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==30919== by 0x7BC8F869: ??? (signal_i386.c:2709) ==30919== by 0x7BC9953E: start_thread (thread.c:453) ==30919== by 0x4243250: start_thread (pthread_create.c:334) ==30919== by 0x4341B2D: clone (clone.S:122) ==30919== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==30919== 304 bytes in 5 blocks are possibly lost in loss record 2,063 of 2,611 ==30919== at 0x7BC5067C: notify_alloc (heap.c:254) ==30919== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30919== by 0x4C69870: IMalloc_fnAlloc (ifs.c:187) ==30919== by 0x4C6A10F: IMalloc_Alloc (objidl.h:1508) ==30919== by 0x4C6A10F: CoTaskMemAlloc (???:0) ==30919== by 0x54809BE: alloc_bstr (oleaut.c:177) ==30919== by 0x5480D85: SysAllocStringLen (oleaut.c:355) ==30919== by 0x5BFEB8B: pre_process_uri (uri.c:786) ==30919== by 0x5C0C07E: CreateUri (uri.c:5738) ==30919== by 0x66D0D32: create_uri (persist.c:185) ==30919== by 0x66C17CB: nsIOServiceHook_NewURI (nsio.c:3890) ==30919== by 0x69F3AFD9: ??? ==30919== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==30919== 373 bytes in 2 blocks are possibly lost in loss record 2,109 of 2,611 ==30919== at 0x7BC5067C: notify_alloc (heap.c:254) ==30919== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==30919== by 0x85F1FF2: msvcrt_heap_realloc (heap.c:102) ==30919== by 0x85F2BA5: MSVCRT_realloc (heap.c:457) ==30919== by 0x69E78C00: ??? ==30919== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mshtml/tests' Makefile:12013: recipe for target 'dlls/mshtml/tests/test' failed make: *** [dlls/mshtml/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so action && touch action.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==30987== Invalid free() / delete / delete[] / realloc() ==30987== at 0x7BC50772: notify_realloc (heap.c:270) ==30987== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==30987== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==30987== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==30987== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==30987== by 0x4D5D063: msi_create_table (table.c:796) ==30987== by 0x4D005A2: CREATE_execute (create.c:72) ==30987== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==30987== by 0x4D07158: msi_add_table_to_db (database.c:622) ==30987== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==30987== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==30987== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==30987== by 0x4A1C242: create_database_wordcount (action.c:2633) ==30987== by 0x4A1CC7A: test_register_product (action.c:2888) ==30987== by 0x4A36402: func_action (action.c:7029) ==30987== by 0x4B5CBFE: run_test (test.h:589) ==30987== by 0x4B5D02A: main (test.h:671) ==30987== Address 0x491a828 is 0 bytes after a block of size 0 alloc'd ==30987== at 0x7BC5067C: notify_alloc (heap.c:254) ==30987== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30987== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==30987== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==30987== by 0x4D5C5C4: get_table (table.c:620) ==30987== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==30987== by 0x4D5CF37: msi_create_table (table.c:775) ==30987== by 0x4D005A2: CREATE_execute (create.c:72) ==30987== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==30987== by 0x4D07158: msi_add_table_to_db (database.c:622) ==30987== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==30987== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==30987== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==30987== by 0x4A1C242: create_database_wordcount (action.c:2633) ==30987== by 0x4A1CC7A: test_register_product (action.c:2888) ==30987== by 0x4A36402: func_action (action.c:7029) ==30987== by 0x4B5CBFE: run_test (test.h:589) ==30987== by 0x4B5D02A: main (test.h:671) ==30987== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_register_product fun:func_action fun:run_test fun:main } ==30987== Invalid free() / delete / delete[] / realloc() ==30987== at 0x7BC50772: notify_realloc (heap.c:270) ==30987== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==30987== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==30987== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==30987== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==30987== by 0x4D5D063: msi_create_table (table.c:796) ==30987== by 0x4D005A2: CREATE_execute (create.c:72) ==30987== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==30987== by 0x4D07158: msi_add_table_to_db (database.c:622) ==30987== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==30987== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==30987== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==30987== by 0x4A1C242: create_database_wordcount (action.c:2633) ==30987== by 0x4A1CC7A: test_register_product (action.c:2888) ==30987== by 0x4A36402: func_action (action.c:7029) ==30987== by 0x4B5CBFE: run_test (test.h:589) ==30987== by 0x4B5D02A: main (test.h:671) ==30987== Address 0x491a840 is 0 bytes after a block of size 0 alloc'd ==30987== at 0x7BC5067C: notify_alloc (heap.c:254) ==30987== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==30987== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==30987== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==30987== by 0x4D5C5C4: get_table (table.c:620) ==30987== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==30987== by 0x4D5CF37: msi_create_table (table.c:775) ==30987== by 0x4D005A2: CREATE_execute (create.c:72) ==30987== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==30987== by 0x4D07158: msi_add_table_to_db (database.c:622) ==30987== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==30987== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==30987== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==30987== by 0x4A1C242: create_database_wordcount (action.c:2633) ==30987== by 0x4A1CC7A: test_register_product (action.c:2888) ==30987== by 0x4A36402: func_action (action.c:7029) ==30987== by 0x4B5CBFE: run_test (test.h:589) ==30987== by 0x4B5D02A: main (test.h:671) ==30987== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_register_product fun:func_action fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31067== 20 bytes in 1 blocks are possibly lost in loss record 128 of 590 ==31067== at 0x7BC5067C: notify_alloc (heap.c:254) ==31067== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31067== by 0x7BC7D4A6: RtlCreateUnicodeString (rtlstr.c:281) ==31067== by 0x7BC58B47: alloc_module (loader.c:955) ==31067== by 0x7BC5A868: load_builtin_callback (loader.c:1588) ==31067== by 0x403F0DF: wine_dll_set_callback (loader.c:545) ==31067== by 0x7BC5F994: __wine_process_init (loader.c:3295) ==31067== by 0x403F59A: wine_init (loader.c:956) ==31067== by 0x7C000F7F: main (main.c:254) ==31067== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlCreateUnicodeString fun:alloc_module fun:load_builtin_callback fun:wine_dll_set_callback fun:__wine_process_init fun:wine_init fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so automation && touch automation.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31076== Invalid free() / delete / delete[] / realloc() ==31076== at 0x7BC50772: notify_realloc (heap.c:270) ==31076== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31076== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31076== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31076== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31076== by 0x4D5D063: msi_create_table (table.c:796) ==31076== by 0x4D005A2: CREATE_execute (create.c:72) ==31076== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31076== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31076== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31076== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31076== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31076== by 0x4A36D39: create_database (automation.c:337) ==31076== by 0x4A36E6D: create_package (automation.c:358) ==31076== by 0x4A38BF8: test_dispatch (automation.c:741) ==31076== by 0x4A4546E: func_automation (automation.c:2794) ==31076== by 0x4B5CBFE: run_test (test.h:589) ==31076== by 0x4B5D02A: main (test.h:671) ==31076== Address 0x49c9db8 is 0 bytes after a block of size 0 alloc'd ==31076== at 0x7BC5067C: notify_alloc (heap.c:254) ==31076== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31076== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31076== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31076== by 0x4D5C5C4: get_table (table.c:620) ==31076== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31076== by 0x4D5CF37: msi_create_table (table.c:775) ==31076== by 0x4D005A2: CREATE_execute (create.c:72) ==31076== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31076== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31076== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31076== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31076== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31076== by 0x4A36D39: create_database (automation.c:337) ==31076== by 0x4A36E6D: create_package (automation.c:358) ==31076== by 0x4A38BF8: test_dispatch (automation.c:741) ==31076== by 0x4A4546E: func_automation (automation.c:2794) ==31076== by 0x4B5CBFE: run_test (test.h:589) ==31076== by 0x4B5D02A: main (test.h:671) ==31076== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database fun:create_package fun:test_dispatch fun:func_automation fun:run_test fun:main } ==31076== Invalid free() / delete / delete[] / realloc() ==31076== at 0x7BC50772: notify_realloc (heap.c:270) ==31076== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31076== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31076== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31076== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31076== by 0x4D5D063: msi_create_table (table.c:796) ==31076== by 0x4D005A2: CREATE_execute (create.c:72) ==31076== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31076== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31076== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31076== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31076== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31076== by 0x4A36D39: create_database (automation.c:337) ==31076== by 0x4A36E6D: create_package (automation.c:358) ==31076== by 0x4A38BF8: test_dispatch (automation.c:741) ==31076== by 0x4A4546E: func_automation (automation.c:2794) ==31076== by 0x4B5CBFE: run_test (test.h:589) ==31076== by 0x4B5D02A: main (test.h:671) ==31076== Address 0x49c9dd0 is 0 bytes after a block of size 0 alloc'd ==31076== at 0x7BC5067C: notify_alloc (heap.c:254) ==31076== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31076== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31076== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31076== by 0x4D5C5C4: get_table (table.c:620) ==31076== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31076== by 0x4D5CF37: msi_create_table (table.c:775) ==31076== by 0x4D005A2: CREATE_execute (create.c:72) ==31076== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31076== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31076== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31076== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31076== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31076== by 0x4A36D39: create_database (automation.c:337) ==31076== by 0x4A36E6D: create_package (automation.c:358) ==31076== by 0x4A38BF8: test_dispatch (automation.c:741) ==31076== by 0x4A4546E: func_automation (automation.c:2794) ==31076== by 0x4B5CBFE: run_test (test.h:589) ==31076== by 0x4B5D02A: main (test.h:671) ==31076== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database fun:create_package fun:test_dispatch fun:func_automation fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so db && touch db.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31084== Invalid free() / delete / delete[] / realloc() ==31084== at 0x7BC50772: notify_realloc (heap.c:270) ==31084== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31084== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31084== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31084== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31084== by 0x4D5D063: msi_create_table (table.c:796) ==31084== by 0x4D005A2: CREATE_execute (create.c:72) ==31084== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31084== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31084== by 0x4A46959: test_msiinsert (db.c:318) ==31084== by 0x4A7D2D1: func_db (db.c:9732) ==31084== by 0x4B5CBFE: run_test (test.h:589) ==31084== by 0x4B5D02A: main (test.h:671) ==31084== Address 0x48d2e20 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==31084== at 0x7BC5067C: notify_alloc (heap.c:254) ==31084== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31084== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31084== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31084== by 0x4D5C5C4: get_table (table.c:620) ==31084== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31084== by 0x4D5CF37: msi_create_table (table.c:775) ==31084== by 0x4D005A2: CREATE_execute (create.c:72) ==31084== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31084== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31084== by 0x4A46959: test_msiinsert (db.c:318) ==31084== by 0x4A7D2D1: func_db (db.c:9732) ==31084== by 0x4B5CBFE: run_test (test.h:589) ==31084== by 0x4B5D02A: main (test.h:671) ==31084== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:MsiViewExecute fun:test_msiinsert fun:func_db fun:run_test fun:main } ==31084== Invalid free() / delete / delete[] / realloc() ==31084== at 0x7BC50772: notify_realloc (heap.c:270) ==31084== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31084== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31084== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31084== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31084== by 0x4D5D063: msi_create_table (table.c:796) ==31084== by 0x4D005A2: CREATE_execute (create.c:72) ==31084== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31084== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31084== by 0x4A46959: test_msiinsert (db.c:318) ==31084== by 0x4A7D2D1: func_db (db.c:9732) ==31084== by 0x4B5CBFE: run_test (test.h:589) ==31084== by 0x4B5D02A: main (test.h:671) ==31084== Address 0x48d2e38 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==31084== at 0x7BC5067C: notify_alloc (heap.c:254) ==31084== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31084== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31084== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31084== by 0x4D5C5C4: get_table (table.c:620) ==31084== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31084== by 0x4D5CF37: msi_create_table (table.c:775) ==31084== by 0x4D005A2: CREATE_execute (create.c:72) ==31084== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31084== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31084== by 0x4A46959: test_msiinsert (db.c:318) ==31084== by 0x4A7D2D1: func_db (db.c:9732) ==31084== by 0x4B5CBFE: run_test (test.h:589) ==31084== by 0x4B5D02A: main (test.h:671) ==31084== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:MsiViewExecute fun:test_msiinsert fun:func_db fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so format && touch format.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31094== Invalid free() / delete / delete[] / realloc() ==31094== at 0x7BC50772: notify_realloc (heap.c:270) ==31094== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31094== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31094== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31094== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31094== by 0x4D5D063: msi_create_table (table.c:796) ==31094== by 0x4D005A2: CREATE_execute (create.c:72) ==31094== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31094== by 0x4D38387: create_temp_property_table (package.c:375) ==31094== by 0x4D3A75B: MSI_CreatePackage (package.c:1101) ==31094== by 0x4D3BB2A: MSI_OpenPackageW (package.c:1543) ==31094== by 0x4D3C100: MsiOpenPackageExW (package.c:1632) ==31094== by 0x4D3C1F6: MsiOpenPackageExA (package.c:1661) ==31094== by 0x4D3C245: MsiOpenPackageA (package.c:1670) ==31094== by 0x4A7E12A: package_from_db (format.c:239) ==31094== by 0x4A7E708: helper_createpackage (format.c:326) ==31094== by 0x4A7E78B: test_createpackage (format.c:342) ==31094== by 0x4A923E0: func_format (format.c:2788) ==31094== by 0x4B5CBFE: run_test (test.h:589) ==31094== by 0x4B5D02A: main (test.h:671) ==31094== Address 0x4906860 is 0 bytes after a block of size 0 alloc'd ==31094== at 0x7BC5067C: notify_alloc (heap.c:254) ==31094== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31094== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31094== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31094== by 0x4D5C5C4: get_table (table.c:620) ==31094== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31094== by 0x4D5CF37: msi_create_table (table.c:775) ==31094== by 0x4D005A2: CREATE_execute (create.c:72) ==31094== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31094== by 0x4D38387: create_temp_property_table (package.c:375) ==31094== by 0x4D3A75B: MSI_CreatePackage (package.c:1101) ==31094== by 0x4D3BB2A: MSI_OpenPackageW (package.c:1543) ==31094== by 0x4D3C100: MsiOpenPackageExW (package.c:1632) ==31094== by 0x4D3C1F6: MsiOpenPackageExA (package.c:1661) ==31094== by 0x4D3C245: MsiOpenPackageA (package.c:1670) ==31094== by 0x4A7E12A: package_from_db (format.c:239) ==31094== by 0x4A7E708: helper_createpackage (format.c:326) ==31094== by 0x4A7E78B: test_createpackage (format.c:342) ==31094== by 0x4A923E0: func_format (format.c:2788) ==31094== by 0x4B5CBFE: run_test (test.h:589) ==31094== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:create_temp_property_table fun:MSI_CreatePackage fun:MSI_OpenPackageW fun:MsiOpenPackageExW fun:MsiOpenPackageExA fun:MsiOpenPackageA fun:package_from_db fun:helper_createpackage fun:test_createpackage fun:func_format fun:run_test fun:main } ==31094== Invalid free() / delete / delete[] / realloc() ==31094== at 0x7BC50772: notify_realloc (heap.c:270) ==31094== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31094== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31094== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31094== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31094== by 0x4D5D063: msi_create_table (table.c:796) ==31094== by 0x4D005A2: CREATE_execute (create.c:72) ==31094== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31094== by 0x4D38387: create_temp_property_table (package.c:375) ==31094== by 0x4D3A75B: MSI_CreatePackage (package.c:1101) ==31094== by 0x4D3BB2A: MSI_OpenPackageW (package.c:1543) ==31094== by 0x4D3C100: MsiOpenPackageExW (package.c:1632) ==31094== by 0x4D3C1F6: MsiOpenPackageExA (package.c:1661) ==31094== by 0x4D3C245: MsiOpenPackageA (package.c:1670) ==31094== by 0x4A7E12A: package_from_db (format.c:239) ==31094== by 0x4A7E708: helper_createpackage (format.c:326) ==31094== by 0x4A7E78B: test_createpackage (format.c:342) ==31094== by 0x4A923E0: func_format (format.c:2788) ==31094== by 0x4B5CBFE: run_test (test.h:589) ==31094== by 0x4B5D02A: main (test.h:671) ==31094== Address 0x4906878 is 0 bytes after a block of size 0 alloc'd ==31094== at 0x7BC5067C: notify_alloc (heap.c:254) ==31094== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31094== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31094== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31094== by 0x4D5C5C4: get_table (table.c:620) ==31094== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31094== by 0x4D5CF37: msi_create_table (table.c:775) ==31094== by 0x4D005A2: CREATE_execute (create.c:72) ==31094== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31094== by 0x4D38387: create_temp_property_table (package.c:375) ==31094== by 0x4D3A75B: MSI_CreatePackage (package.c:1101) ==31094== by 0x4D3BB2A: MSI_OpenPackageW (package.c:1543) ==31094== by 0x4D3C100: MsiOpenPackageExW (package.c:1632) ==31094== by 0x4D3C1F6: MsiOpenPackageExA (package.c:1661) ==31094== by 0x4D3C245: MsiOpenPackageA (package.c:1670) ==31094== by 0x4A7E12A: package_from_db (format.c:239) ==31094== by 0x4A7E708: helper_createpackage (format.c:326) ==31094== by 0x4A7E78B: test_createpackage (format.c:342) ==31094== by 0x4A923E0: func_format (format.c:2788) ==31094== by 0x4B5CBFE: run_test (test.h:589) ==31094== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:create_temp_property_table fun:MSI_CreatePackage fun:MSI_OpenPackageW fun:MsiOpenPackageExW fun:MsiOpenPackageExA fun:MsiOpenPackageA fun:package_from_db fun:helper_createpackage fun:test_createpackage fun:func_format fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so install && touch install.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31102== Invalid free() / delete / delete[] / realloc() ==31102== at 0x7BC50772: notify_realloc (heap.c:270) ==31102== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31102== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31102== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31102== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31102== by 0x4D5D063: msi_create_table (table.c:796) ==31102== by 0x4D005A2: CREATE_execute (create.c:72) ==31102== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31102== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31102== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31102== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31102== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31102== by 0x4A94276: create_database_wordcount (install.c:2404) ==31102== by 0x4A9729D: test_MsiSetComponentState (install.c:2770) ==31102== by 0x4AA7091: func_install (install.c:5990) ==31102== by 0x4B5CBFE: run_test (test.h:589) ==31102== by 0x4B5D02A: main (test.h:671) ==31102== Address 0x4918ae8 is 0 bytes after a block of size 0 alloc'd ==31102== at 0x7BC5067C: notify_alloc (heap.c:254) ==31102== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31102== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31102== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31102== by 0x4D5C5C4: get_table (table.c:620) ==31102== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31102== by 0x4D5CF37: msi_create_table (table.c:775) ==31102== by 0x4D005A2: CREATE_execute (create.c:72) ==31102== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31102== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31102== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31102== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31102== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31102== by 0x4A94276: create_database_wordcount (install.c:2404) ==31102== by 0x4A9729D: test_MsiSetComponentState (install.c:2770) ==31102== by 0x4AA7091: func_install (install.c:5990) ==31102== by 0x4B5CBFE: run_test (test.h:589) ==31102== by 0x4B5D02A: main (test.h:671) ==31102== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_MsiSetComponentState fun:func_install fun:run_test fun:main } ==31102== Invalid free() / delete / delete[] / realloc() ==31102== at 0x7BC50772: notify_realloc (heap.c:270) ==31102== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31102== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31102== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31102== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31102== by 0x4D5D063: msi_create_table (table.c:796) ==31102== by 0x4D005A2: CREATE_execute (create.c:72) ==31102== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31102== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31102== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31102== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31102== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31102== by 0x4A94276: create_database_wordcount (install.c:2404) ==31102== by 0x4A9729D: test_MsiSetComponentState (install.c:2770) ==31102== by 0x4AA7091: func_install (install.c:5990) ==31102== by 0x4B5CBFE: run_test (test.h:589) ==31102== by 0x4B5D02A: main (test.h:671) ==31102== Address 0x4918b00 is 0 bytes after a block of size 0 alloc'd ==31102== at 0x7BC5067C: notify_alloc (heap.c:254) ==31102== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31102== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31102== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31102== by 0x4D5C5C4: get_table (table.c:620) ==31102== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31102== by 0x4D5CF37: msi_create_table (table.c:775) ==31102== by 0x4D005A2: CREATE_execute (create.c:72) ==31102== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31102== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31102== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31102== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31102== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31102== by 0x4A94276: create_database_wordcount (install.c:2404) ==31102== by 0x4A9729D: test_MsiSetComponentState (install.c:2770) ==31102== by 0x4AA7091: func_install (install.c:5990) ==31102== by 0x4B5CBFE: run_test (test.h:589) ==31102== by 0x4B5D02A: main (test.h:671) ==31102== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_MsiSetComponentState fun:func_install fun:run_test fun:main } install.c:4443: Tests skipped: Run in interactive mode to run source path tests. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31112== 20 bytes in 1 blocks are possibly lost in loss record 129 of 594 ==31112== at 0x7BC5067C: notify_alloc (heap.c:254) ==31112== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31112== by 0x7BC7D4A6: RtlCreateUnicodeString (rtlstr.c:281) ==31112== by 0x7BC58B47: alloc_module (loader.c:955) ==31112== by 0x7BC5A868: load_builtin_callback (loader.c:1588) ==31112== by 0x403F0DF: wine_dll_set_callback (loader.c:545) ==31112== by 0x7BC5F994: __wine_process_init (loader.c:3295) ==31112== by 0x403F59A: wine_init (loader.c:956) ==31112== by 0x7C000F7F: main (main.c:254) ==31112== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlCreateUnicodeString fun:alloc_module fun:load_builtin_callback fun:wine_dll_set_callback fun:__wine_process_init fun:wine_init fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31116== 20 bytes in 1 blocks are possibly lost in loss record 129 of 594 ==31116== at 0x7BC5067C: notify_alloc (heap.c:254) ==31116== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31116== by 0x7BC7D4A6: RtlCreateUnicodeString (rtlstr.c:281) ==31116== by 0x7BC58B47: alloc_module (loader.c:955) ==31116== by 0x7BC5A868: load_builtin_callback (loader.c:1588) ==31116== by 0x403F0DF: wine_dll_set_callback (loader.c:545) ==31116== by 0x7BC5F994: __wine_process_init (loader.c:3295) ==31116== by 0x403F59A: wine_init (loader.c:956) ==31116== by 0x7C000F7F: main (main.c:254) ==31116== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlCreateUnicodeString fun:alloc_module fun:load_builtin_callback fun:wine_dll_set_callback fun:__wine_process_init fun:wine_init fun:main } ==31118== 20 bytes in 1 blocks are possibly lost in loss record 128 of 590 ==31118== at 0x7BC5067C: notify_alloc (heap.c:254) ==31118== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31118== by 0x7BC7D4A6: RtlCreateUnicodeString (rtlstr.c:281) ==31118== by 0x7BC58B47: alloc_module (loader.c:955) ==31118== by 0x7BC5A868: load_builtin_callback (loader.c:1588) ==31118== by 0x403F0DF: wine_dll_set_callback (loader.c:545) ==31118== by 0x7BC5F994: __wine_process_init (loader.c:3295) ==31118== by 0x403F59A: wine_init (loader.c:956) ==31118== by 0x7C000F7F: main (main.c:254) ==31118== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlCreateUnicodeString fun:alloc_module fun:load_builtin_callback fun:wine_dll_set_callback fun:__wine_process_init fun:wine_init fun:main } ==31102== Invalid free() / delete / delete[] / realloc() ==31102== at 0x7BC50772: notify_realloc (heap.c:270) ==31102== by 0x7BC550C8: RtlReAllocateHeap (heap.c:1860) ==31102== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31102== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31102== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31102== by 0x4D5D063: msi_create_table (table.c:796) ==31102== by 0x4D005A2: CREATE_execute (create.c:72) ==31102== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31102== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31102== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31102== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31102== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31102== by 0x4A94276: create_database_wordcount (install.c:2404) ==31102== by 0x4AA4632: test_package_validation (install.c:5520) ==31102== by 0x4AA7136: func_install (install.c:6023) ==31102== by 0x4B5CBFE: run_test (test.h:589) ==31102== by 0x4B5D02A: main (test.h:671) ==31102== Address 0x48d60a8 is 16 bytes after a recently re-allocated block of size 192 alloc'd ==31102== at 0x7BC5067C: notify_alloc (heap.c:254) ==31102== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31102== by 0x4D5AA32: msi_alloc (msipriv.h:1206) ==31102== by 0x4D5CD9F: msi_create_table (table.c:752) ==31102== by 0x4D005A2: CREATE_execute (create.c:72) ==31102== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31102== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31102== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31102== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31102== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31102== by 0x4A94276: create_database_wordcount (install.c:2404) ==31102== by 0x4AA4632: test_package_validation (install.c:5520) ==31102== by 0x4AA7136: func_install (install.c:6023) ==31102== by 0x4B5CBFE: run_test (test.h:589) ==31102== by 0x4B5D02A: main (test.h:671) ==31102== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_package_validation fun:func_install fun:run_test fun:main } install.c:5683: Tests skipped: this test must be run on 64-bit ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so msi && touch msi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31125== Invalid free() / delete / delete[] / realloc() ==31125== at 0x7BC50772: notify_realloc (heap.c:270) ==31125== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31125== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31125== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31125== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31125== by 0x4D5D063: msi_create_table (table.c:796) ==31125== by 0x4D005A2: CREATE_execute (create.c:72) ==31125== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31125== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31125== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31125== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31125== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31125== by 0x4AA908F: create_database_wordcount (msi.c:1116) ==31125== by 0x4AB7202: test_MsiProvideComponent (msi.c:3456) ==31125== by 0x4B04F62: func_msi (msi.c:14562) ==31125== by 0x4B5CBFE: run_test (test.h:589) ==31125== by 0x4B5D02A: main (test.h:671) ==31125== Address 0x48e3050 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==31125== at 0x7BC5067C: notify_alloc (heap.c:254) ==31125== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31125== by 0x56AA360: create_family (freetype.c:1584) ==31125== by 0x56AAC76: load_font_list_from_cache (freetype.c:1758) ==31125== by 0x56B3671: WineEngInit (freetype.c:4397) ==31125== by 0x56C23D9: DllMain (gdiobj.c:658) ==31125== by 0x56E02D7: __wine_spec_dll_entry (dll_entry.c:40) ==31125== by 0x7BC56CF1: ??? (loader.c:143) ==31125== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==31125== by 0x7BC59AF9: process_attach (loader.c:1215) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==31125== by 0x404019C: ??? (port.c:78) ==31125== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_MsiProvideComponent fun:func_msi fun:run_test fun:main } ==31125== Invalid free() / delete / delete[] / realloc() ==31125== at 0x7BC50772: notify_realloc (heap.c:270) ==31125== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31125== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31125== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31125== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31125== by 0x4D5D063: msi_create_table (table.c:796) ==31125== by 0x4D005A2: CREATE_execute (create.c:72) ==31125== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31125== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31125== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31125== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31125== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31125== by 0x4AA908F: create_database_wordcount (msi.c:1116) ==31125== by 0x4AB7202: test_MsiProvideComponent (msi.c:3456) ==31125== by 0x4B04F62: func_msi (msi.c:14562) ==31125== by 0x4B5CBFE: run_test (test.h:589) ==31125== by 0x4B5D02A: main (test.h:671) ==31125== Address 0x48e2cb0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==31125== at 0x7BC5067C: notify_alloc (heap.c:254) ==31125== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31125== by 0x56AA360: create_family (freetype.c:1584) ==31125== by 0x56AAC76: load_font_list_from_cache (freetype.c:1758) ==31125== by 0x56B3671: WineEngInit (freetype.c:4397) ==31125== by 0x56C23D9: DllMain (gdiobj.c:658) ==31125== by 0x56E02D7: __wine_spec_dll_entry (dll_entry.c:40) ==31125== by 0x7BC56CF1: ??? (loader.c:143) ==31125== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==31125== by 0x7BC59AF9: process_attach (loader.c:1215) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC59A44: process_attach (loader.c:1203) ==31125== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==31125== by 0x404019C: ??? (port.c:78) ==31125== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database_wordcount fun:test_MsiProvideComponent fun:func_msi fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so package && touch package.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31155== Invalid free() / delete / delete[] / realloc() ==31155== at 0x7BC50772: notify_realloc (heap.c:270) ==31155== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31155== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31155== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31155== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31155== by 0x4D5D063: msi_create_table (table.c:796) ==31155== by 0x4D005A2: CREATE_execute (create.c:72) ==31155== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31155== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31155== by 0x4B06325: run_query (package.c:440) ==31155== by 0x4B07D06: create_package_db (package.c:806) ==31155== by 0x4B08294: test_createpackage (package.c:948) ==31155== by 0x4B3BB5B: func_package (package.c:8992) ==31155== by 0x4B5CBFE: run_test (test.h:589) ==31155== by 0x4B5D02A: main (test.h:671) ==31155== Address 0x4917d20 is 0 bytes after a block of size 0 alloc'd ==31155== at 0x7BC5067C: notify_alloc (heap.c:254) ==31155== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31155== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31155== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31155== by 0x4D5C5C4: get_table (table.c:620) ==31155== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31155== by 0x4D5CF37: msi_create_table (table.c:775) ==31155== by 0x4D005A2: CREATE_execute (create.c:72) ==31155== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31155== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31155== by 0x4B06325: run_query (package.c:440) ==31155== by 0x4B07D06: create_package_db (package.c:806) ==31155== by 0x4B08294: test_createpackage (package.c:948) ==31155== by 0x4B3BB5B: func_package (package.c:8992) ==31155== by 0x4B5CBFE: run_test (test.h:589) ==31155== by 0x4B5D02A: main (test.h:671) ==31155== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:MsiViewExecute fun:run_query fun:create_package_db fun:test_createpackage fun:func_package fun:run_test fun:main } ==31155== Invalid free() / delete / delete[] / realloc() ==31155== at 0x7BC50772: notify_realloc (heap.c:270) ==31155== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31155== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31155== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31155== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31155== by 0x4D5D063: msi_create_table (table.c:796) ==31155== by 0x4D005A2: CREATE_execute (create.c:72) ==31155== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31155== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31155== by 0x4B06325: run_query (package.c:440) ==31155== by 0x4B07D06: create_package_db (package.c:806) ==31155== by 0x4B08294: test_createpackage (package.c:948) ==31155== by 0x4B3BB5B: func_package (package.c:8992) ==31155== by 0x4B5CBFE: run_test (test.h:589) ==31155== by 0x4B5D02A: main (test.h:671) ==31155== Address 0x4917d38 is 0 bytes after a block of size 0 alloc'd ==31155== at 0x7BC5067C: notify_alloc (heap.c:254) ==31155== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31155== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31155== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31155== by 0x4D5C5C4: get_table (table.c:620) ==31155== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31155== by 0x4D5CF37: msi_create_table (table.c:775) ==31155== by 0x4D005A2: CREATE_execute (create.c:72) ==31155== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31155== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31155== by 0x4B06325: run_query (package.c:440) ==31155== by 0x4B07D06: create_package_db (package.c:806) ==31155== by 0x4B08294: test_createpackage (package.c:948) ==31155== by 0x4B3BB5B: func_package (package.c:8992) ==31155== by 0x4B5CBFE: run_test (test.h:589) ==31155== by 0x4B5D02A: main (test.h:671) ==31155== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:MsiViewExecute fun:run_query fun:create_package_db fun:test_createpackage fun:func_package fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so patch && touch patch.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31165== Invalid free() / delete / delete[] / realloc() ==31165== at 0x7BC50772: notify_realloc (heap.c:270) ==31165== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31165== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31165== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31165== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31165== by 0x4D5D063: msi_create_table (table.c:796) ==31165== by 0x4D005A2: CREATE_execute (create.c:72) ==31165== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31165== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31165== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31165== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31165== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31165== by 0x4B3C818: create_database (patch.c:332) ==31165== by 0x4B3D02E: test_simple_patch (patch.c:740) ==31165== by 0x4B40345: func_patch (patch.c:1372) ==31165== by 0x4B5CBFE: run_test (test.h:589) ==31165== by 0x4B5D02A: main (test.h:671) ==31165== Address 0x49106a8 is 0 bytes after a block of size 0 alloc'd ==31165== at 0x7BC5067C: notify_alloc (heap.c:254) ==31165== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31165== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31165== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31165== by 0x4D5C5C4: get_table (table.c:620) ==31165== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31165== by 0x4D5CF37: msi_create_table (table.c:775) ==31165== by 0x4D005A2: CREATE_execute (create.c:72) ==31165== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31165== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31165== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31165== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31165== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31165== by 0x4B3C818: create_database (patch.c:332) ==31165== by 0x4B3D02E: test_simple_patch (patch.c:740) ==31165== by 0x4B40345: func_patch (patch.c:1372) ==31165== by 0x4B5CBFE: run_test (test.h:589) ==31165== by 0x4B5D02A: main (test.h:671) ==31165== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database fun:test_simple_patch fun:func_patch fun:run_test fun:main } ==31165== Invalid free() / delete / delete[] / realloc() ==31165== at 0x7BC50772: notify_realloc (heap.c:270) ==31165== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31165== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31165== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31165== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31165== by 0x4D5D063: msi_create_table (table.c:796) ==31165== by 0x4D005A2: CREATE_execute (create.c:72) ==31165== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31165== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31165== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31165== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31165== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31165== by 0x4B3C818: create_database (patch.c:332) ==31165== by 0x4B3D02E: test_simple_patch (patch.c:740) ==31165== by 0x4B40345: func_patch (patch.c:1372) ==31165== by 0x4B5CBFE: run_test (test.h:589) ==31165== by 0x4B5D02A: main (test.h:671) ==31165== Address 0x49106c0 is 0 bytes after a block of size 0 alloc'd ==31165== at 0x7BC5067C: notify_alloc (heap.c:254) ==31165== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31165== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31165== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31165== by 0x4D5C5C4: get_table (table.c:620) ==31165== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31165== by 0x4D5CF37: msi_create_table (table.c:775) ==31165== by 0x4D005A2: CREATE_execute (create.c:72) ==31165== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31165== by 0x4D07158: msi_add_table_to_db (database.c:622) ==31165== by 0x4D07941: MSI_DatabaseImport (database.c:835) ==31165== by 0x4D07B52: MsiDatabaseImportW (database.c:883) ==31165== by 0x4D07C60: MsiDatabaseImportA (database.c:910) ==31165== by 0x4B3C818: create_database (patch.c:332) ==31165== by 0x4B3D02E: test_simple_patch (patch.c:740) ==31165== by 0x4B40345: func_patch (patch.c:1372) ==31165== by 0x4B5CBFE: run_test (test.h:589) ==31165== by 0x4B5D02A: main (test.h:671) ==31165== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:msi_add_table_to_db fun:MSI_DatabaseImport fun:MsiDatabaseImportW fun:MsiDatabaseImportA fun:create_database fun:test_simple_patch fun:func_patch fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so record && touch record.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31173== Invalid free() / delete / delete[] / realloc() ==31173== at 0x7BC50772: notify_realloc (heap.c:270) ==31173== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31173== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31173== by 0x4D5EB3B: table_create_new_row (table.c:1443) ==31173== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31173== by 0x4D5D063: msi_create_table (table.c:796) ==31173== by 0x4D005A2: CREATE_execute (create.c:72) ==31173== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31173== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31173== by 0x4B443CC: test_fieldzero (record.c:558) ==31173== by 0x4B44B3F: func_record (record.c:623) ==31173== by 0x4B5CBFE: run_test (test.h:589) ==31173== by 0x4B5D02A: main (test.h:671) ==31173== Address 0x4910ac8 is 0 bytes after a block of size 0 alloc'd ==31173== at 0x7BC5067C: notify_alloc (heap.c:254) ==31173== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31173== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31173== by 0x4D5BCB4: read_table_from_storage (table.c:426) ==31173== by 0x4D5C5C4: get_table (table.c:620) ==31173== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31173== by 0x4D5CF37: msi_create_table (table.c:775) ==31173== by 0x4D005A2: CREATE_execute (create.c:72) ==31173== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31173== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31173== by 0x4B443CC: test_fieldzero (record.c:558) ==31173== by 0x4B44B3F: func_record (record.c:623) ==31173== by 0x4B5CBFE: run_test (test.h:589) ==31173== by 0x4B5D02A: main (test.h:671) ==31173== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:MsiViewExecute fun:test_fieldzero fun:func_record fun:run_test fun:main } ==31173== Invalid free() / delete / delete[] / realloc() ==31173== at 0x7BC50772: notify_realloc (heap.c:270) ==31173== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==31173== by 0x4D5AA82: msi_realloc (msipriv.h:1218) ==31173== by 0x4D5EB9A: table_create_new_row (table.c:1454) ==31173== by 0x4D5F450: TABLE_insert_row (table.c:1664) ==31173== by 0x4D5D063: msi_create_table (table.c:796) ==31173== by 0x4D005A2: CREATE_execute (create.c:72) ==31173== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31173== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31173== by 0x4B443CC: test_fieldzero (record.c:558) ==31173== by 0x4B44B3F: func_record (record.c:623) ==31173== by 0x4B5CBFE: run_test (test.h:589) ==31173== by 0x4B5D02A: main (test.h:671) ==31173== Address 0x4910ae0 is 0 bytes after a block of size 0 alloc'd ==31173== at 0x7BC5067C: notify_alloc (heap.c:254) ==31173== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31173== by 0x4D5AA5A: msi_alloc_zero (msipriv.h:1212) ==31173== by 0x4D5BCDE: read_table_from_storage (table.c:429) ==31173== by 0x4D5C5C4: get_table (table.c:620) ==31173== by 0x4D609A2: TABLE_CreateView (table.c:2181) ==31173== by 0x4D5CF37: msi_create_table (table.c:775) ==31173== by 0x4D005A2: CREATE_execute (create.c:72) ==31173== by 0x4D358B3: MSI_ViewExecute (msiquery.c:456) ==31173== by 0x4D35990: MsiViewExecute (msiquery.c:482) ==31173== by 0x4B443CC: test_fieldzero (record.c:558) ==31173== by 0x4B44B3F: func_record (record.c:623) ==31173== by 0x4B5CBFE: run_test (test.h:589) ==31173== by 0x4B5D02A: main (test.h:671) ==31173== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:msi_realloc fun:table_create_new_row fun:TABLE_insert_row fun:msi_create_table fun:CREATE_execute fun:MSI_ViewExecute fun:MsiViewExecute fun:test_fieldzero fun:func_record fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so source && touch source.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msi.dll -p msi_test.exe.so suminfo && touch suminfo.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msrle32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msrle32.dll -p msrle32_test.exe.so msrle && touch msrle.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msrle32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msscript.ocx/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msscript.ocx -p msscript.ocx_test.exe.so msscript && touch msscript.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msscript.ocx/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/mstask/tests' ../../../tools/runtest -q -P wine -T ../../.. -M mstask.dll -p mstask_test.exe.so task && touch task.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mstask.dll -p mstask_test.exe.so task_scheduler && touch task_scheduler.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M mstask.dll -p mstask_test.exe.so task_trigger && touch task_trigger.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/mstask/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcirt/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcirt.dll -p msvcirt_test.exe.so msvcirt && touch msvcirt.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31255== Invalid write of size 1 ==31255== at 0x402DEF8: strcpy (vg_replace_strmem.c:506) ==31255== by 0x7BC8FC90: NTDLL_strcpy (string.c:117) ==31255== by 0x4A26FA8: test_strstreambuf (msvcirt.c:2168) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== Address 0x4c4215d is 0 bytes after a block of size 5 alloc'd ==31255== at 0x7BC5067C: notify_alloc (heap.c:254) ==31255== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31255== by 0x4BB9EB6: msvcrt_heap_alloc (heap.c:70) ==31255== by 0x4BBA125: MSVCRT_operator_new (heap.c:138) ==31255== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==31255== by 0x4A26ED3: test_strstreambuf (msvcirt.c:2162) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== { Memcheck:Addr1 fun:strcpy fun:NTDLL_strcpy fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } ==31255== Invalid write of size 1 ==31255== at 0x4D72B9E: strstreambuf_overflow (msvcirt.c:1481) ==31255== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== Address 0x4c42205 is 1 bytes after a block of size 20 alloc'd ==31255== at 0x7BC5067C: notify_alloc (heap.c:254) ==31255== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31255== by 0x4BB9EB6: msvcrt_heap_alloc (heap.c:70) ==31255== by 0x4BBA125: MSVCRT_operator_new (heap.c:138) ==31255== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==31255== by 0x4D72B41: strstreambuf_overflow (msvcirt.c:1474) ==31255== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== { Memcheck:Addr1 fun:strstreambuf_overflow fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } ==31255== Invalid read of size 1 ==31255== at 0x4A28A08: test_strstreambuf (msvcirt.c:2305) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== Address 0x4c42205 is 1 bytes after a block of size 20 alloc'd ==31255== at 0x7BC5067C: notify_alloc (heap.c:254) ==31255== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31255== by 0x4BB9EB6: msvcrt_heap_alloc (heap.c:70) ==31255== by 0x4BBA125: MSVCRT_operator_new (heap.c:138) ==31255== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==31255== by 0x4D72B41: strstreambuf_overflow (msvcirt.c:1474) ==31255== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== { Memcheck:Addr1 fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } ==31255== Invalid read of size 1 ==31255== at 0x4A28A17: test_strstreambuf (msvcirt.c:2305) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== Address 0x4c42205 is 1 bytes after a block of size 20 alloc'd ==31255== at 0x7BC5067C: notify_alloc (heap.c:254) ==31255== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31255== by 0x4BB9EB6: msvcrt_heap_alloc (heap.c:70) ==31255== by 0x4BBA125: MSVCRT_operator_new (heap.c:138) ==31255== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==31255== by 0x4D72B41: strstreambuf_overflow (msvcirt.c:1474) ==31255== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==31255== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==31255== by 0x4A64412: run_test (test.h:589) ==31255== by 0x4A6483D: main (test.h:671) ==31255== { Memcheck:Addr1 fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcirt/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcp100/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcp100.dll -p msvcp100_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcp100.dll -p msvcp100_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcp100/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcp110/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcp110.dll -p msvcp110_test.exe.so msvcp110 && touch msvcp110.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcp110/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcp120/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcp120.dll -p msvcp120_test.exe.so msvcp120 && touch msvcp120.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcp120/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcp140/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcp140.dll -p msvcp140_test.exe.so msvcp140 && touch msvcp140.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcp140/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcp60/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcp60.dll -p msvcp60_test.exe.so ios && touch ios.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcp60.dll -p msvcp60_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcp60/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcp90/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcp90.dll -p msvcp90_test.exe.so ios && touch ios.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcp90.dll -p msvcp90_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcp90.dll -p msvcp90_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcp90/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcr100/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcr100.dll -p msvcr100_test.exe.so msvcr100 && touch msvcr100.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcr100/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcr120/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcr120.dll -p msvcr120_test.exe.so msvcr120 && touch msvcr120.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcr120/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcr90/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcr90.dll -p msvcr90_test.exe.so msvcr90 && touch msvcr90.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcr90/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcrt/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so cpp && touch cpp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so data && touch data.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so dir && touch dir.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so environ && touch environ.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 OK ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so file && touch file.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so headers && touch headers.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so heap && touch heap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so locale && touch locale.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so printf && touch printf.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so scanf && touch scanf.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so signal && touch signal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvcrt.dll -p msvcrt_test.exe.so time && touch time.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcrt/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvcrtd/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvcrtd.dll -p msvcrtd_test.exe.so debug && touch debug.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvcrtd/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msvfw32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msvfw32.dll -p msvfw32_test.exe.so drawdib && touch drawdib.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msvfw32.dll -p msvfw32_test.exe.so msvfw && touch msvfw.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msvfw32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/msxml3/tests' ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so domdoc && touch domdoc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31699== Invalid free() / delete / delete[] / realloc() ==31699== at 0x7BC506EB: notify_free (heap.c:262) ==31699== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==31699== by 0x5DF63D3: heap_free (msxml_private.h:189) ==31699== by 0x5DF6B9F: free_properties (domdoc.c:358) ==31699== by 0x5DF74A6: xmldoc_release_refs (domdoc.c:622) ==31699== by 0x5DF74E3: xmldoc_release (domdoc.c:633) ==31699== by 0x5E2105A: destroy_xmlnode (node.c:1479) ==31699== by 0x5DF83BD: domdoc_Release (domdoc.c:964) ==31699== by 0x4A51073: IXMLDOMDocument2_Release (msxml2.h:5224) ==31699== by 0x4A51073: test_get_ownerDocument (???:0) ==31699== by 0x4A74782: func_domdoc (domdoc.c:12222) ==31699== by 0x4AAEF8B: run_test (test.h:589) ==31699== by 0x4AAF3B7: main (test.h:671) ==31699== Address 0x48e4188 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==31699== at 0x7BC5067C: notify_alloc (heap.c:254) ==31699== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31699== by 0x5451360: create_family (freetype.c:1584) ==31699== by 0x5451C76: load_font_list_from_cache (freetype.c:1758) ==31699== by 0x545A671: WineEngInit (freetype.c:4397) ==31699== by 0x54693D9: DllMain (gdiobj.c:658) ==31699== by 0x54872D7: __wine_spec_dll_entry (dll_entry.c:40) ==31699== by 0x7BC56CF1: ??? (loader.c:143) ==31699== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==31699== by 0x7BC59AF9: process_attach (loader.c:1215) ==31699== by 0x7BC59A44: process_attach (loader.c:1203) ==31699== by 0x7BC59A44: process_attach (loader.c:1203) ==31699== by 0x7BC59A44: process_attach (loader.c:1203) ==31699== by 0x7BC59A44: process_attach (loader.c:1203) ==31699== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==31699== by 0x404019C: ??? (port.c:78) ==31699== { Memcheck:Free fun:notify_free fun:RtlFreeHeap fun:heap_free fun:free_properties fun:xmldoc_release_refs fun:xmldoc_release fun:destroy_xmlnode fun:domdoc_Release fun:IXMLDOMDocument2_Release fun:test_get_ownerDocument fun:func_domdoc fun:run_test fun:main } ==31699== Invalid free() / delete / delete[] / realloc() ==31699== at 0x7BC506EB: notify_free (heap.c:262) ==31699== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==31699== by 0x5DF63D3: heap_free (msxml_private.h:189) ==31699== by 0x5DF6BBF: free_properties (domdoc.c:360) ==31699== by 0x5DF74A6: xmldoc_release_refs (domdoc.c:622) ==31699== by 0x5DF74E3: xmldoc_release (domdoc.c:633) ==31699== by 0x5E2105A: destroy_xmlnode (node.c:1479) ==31699== by 0x5DF83BD: domdoc_Release (domdoc.c:964) ==31699== by 0x4A51073: IXMLDOMDocument2_Release (msxml2.h:5224) ==31699== by 0x4A51073: test_get_ownerDocument (???:0) ==31699== by 0x4A74782: func_domdoc (domdoc.c:12222) ==31699== by 0x4AAEF8B: run_test (test.h:589) ==31699== by 0x4AAF3B7: main (test.h:671) ==31699== Address 0x48d73d0 is 24 bytes inside a block of size 327 free'd ==31699== at 0x7BC506EB: notify_free (heap.c:262) ==31699== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==31699== by 0x7BC7D2A0: RtlFreeAnsiString (rtlstr.c:173) ==31699== by 0x7BC4DEE2: NtQueryAttributesFile (file.c:3005) ==31699== by 0x7BC44157: RtlDoesFileExists_U (directory.c:3038) ==31699== by 0x7BC6BEAB: RtlDosSearchPath_U (path.c:481) ==31699== by 0x7BC5C639: find_dll_file (loader.c:2142) ==31699== by 0x7BC5CA39: load_dll (loader.c:2232) ==31699== by 0x7BC578FF: import_dll (loader.c:601) ==31699== by 0x7BC589E4: fixup_imports (loader.c:915) ==31699== by 0x7BC5A9BF: load_builtin_callback (loader.c:1607) ==31699== by 0x403EFEE: __wine_dll_register (loader.c:514) ==31699== by 0x5222BA5: __wine_spec_init (init.c:35) ==31699== by 0x400EDED: call_init.part.0 (dl-init.c:58) ==31699== by 0x400EF3F: call_init (dl-init.c:30) ==31699== by 0x400EF3F: _dl_init (dl-init.c:120) ==31699== by 0x4013206: dl_open_worker (dl-open.c:564) ==31699== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==31699== by 0x40128C8: _dl_open (dl-open.c:649) ==31699== by 0x440EC64: dlopen_doit (dlopen.c:66) ==31699== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==31699== Block was alloc'd at ==31699== at 0x7BC5067C: notify_alloc (heap.c:254) ==31699== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31699== by 0x7BC43BE9: wine_nt_to_unix_file_name (directory.c:2938) ==31699== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==31699== by 0x7BC4DE28: NtQueryAttributesFile (file.c:2990) ==31699== by 0x7BC44157: RtlDoesFileExists_U (directory.c:3038) ==31699== by 0x7BC6BEAB: RtlDosSearchPath_U (path.c:481) ==31699== by 0x7BC5C639: find_dll_file (loader.c:2142) ==31699== by 0x7BC5CA39: load_dll (loader.c:2232) ==31699== by 0x7BC578FF: import_dll (loader.c:601) ==31699== by 0x7BC589E4: fixup_imports (loader.c:915) ==31699== by 0x7BC5A9BF: load_builtin_callback (loader.c:1607) ==31699== by 0x403EFEE: __wine_dll_register (loader.c:514) ==31699== by 0x5222BA5: __wine_spec_init (init.c:35) ==31699== by 0x400EDED: call_init.part.0 (dl-init.c:58) ==31699== by 0x400EF3F: call_init (dl-init.c:30) ==31699== by 0x400EF3F: _dl_init (dl-init.c:120) ==31699== by 0x4013206: dl_open_worker (dl-open.c:564) ==31699== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==31699== by 0x40128C8: _dl_open (dl-open.c:649) ==31699== by 0x440EC64: dlopen_doit (dlopen.c:66) ==31699== { Memcheck:Free fun:notify_free fun:RtlFreeHeap fun:heap_free fun:free_properties fun:xmldoc_release_refs fun:xmldoc_release fun:destroy_xmlnode fun:domdoc_Release fun:IXMLDOMDocument2_Release fun:test_get_ownerDocument fun:func_domdoc fun:run_test fun:main } ==31699== 60 (24 direct, 36 indirect) bytes in 1 blocks are definitely lost in loss record 1,091 of 1,778 ==31699== at 0x402B267: malloc (vg_replace_malloc.c:299) ==31699== by 0x5F4BD63: xmlNewNs (tree.c:751) ==31699== by 0x5DFB73B: domdoc_createNode (domdoc.c:2035) ==31699== by 0x4A73C72: IXMLDOMDocument_createNode (msxml.h:2045) ==31699== by 0x4A73C72: test_create_attribute (???:0) ==31699== by 0x4A74796: func_domdoc (domdoc.c:12226) ==31699== by 0x4AAEF8B: run_test (test.h:589) ==31699== by 0x4AAF3B7: main (test.h:671) ==31699== { Memcheck:Leak match-leak-kinds: definite fun:malloc fun:xmlNewNs fun:domdoc_createNode fun:IXMLDOMDocument_createNode fun:test_create_attribute fun:func_domdoc fun:run_test fun:main } ==31699== 315 (168 direct, 147 indirect) bytes in 7 blocks are definitely lost in loss record 1,550 of 1,778 ==31699== at 0x402B267: malloc (vg_replace_malloc.c:299) ==31699== by 0x5F4BD63: xmlNewNs (tree.c:751) ==31699== by 0x5DFB73B: domdoc_createNode (domdoc.c:2035) ==31699== by 0x4A736EB: IXMLDOMDocument_createNode (msxml.h:2045) ==31699== by 0x4A736EB: test_create_attribute (???:0) ==31699== by 0x4A74796: func_domdoc (domdoc.c:12226) ==31699== by 0x4AAEF8B: run_test (test.h:589) ==31699== by 0x4AAF3B7: main (test.h:671) ==31699== { Memcheck:Leak match-leak-kinds: definite fun:malloc fun:xmlNewNs fun:domdoc_createNode fun:IXMLDOMDocument_createNode fun:test_create_attribute fun:func_domdoc fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so httpreq && touch httpreq.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31709== 96 bytes in 1 blocks are possibly lost in loss record 466 of 721 ==31709== at 0x7BC5067C: notify_alloc (heap.c:254) ==31709== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31709== by 0x8BAB0F1: heap_alloc_zero (internet.h:99) ==31709== by 0x8BAC3E4: create_netconn (netconnection.c:348) ==31709== by 0x8B9BA82: open_http_connection (http.c:4848) ==31709== by 0x8B9C1C1: HTTP_HttpSendRequestW (http.c:4989) ==31709== by 0x8B9D098: AsyncHttpSendRequestProc (http.c:5258) ==31709== by 0x8BA9020: INTERNET_WorkerThreadFunc (internet.c:3724) ==31709== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==31709== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==31709== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==31709== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==31709== by 0x7BC8F869: ??? (signal_i386.c:2709) ==31709== by 0x7BC9953E: start_thread (thread.c:453) ==31709== by 0x4243250: start_thread (pthread_create.c:334) ==31709== by 0x4341B2D: clone (clone.S:122) ==31709== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so saxreader && touch saxreader.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so schema && touch schema.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so xmldoc && touch xmldoc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so xmlparser && touch xmlparser.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M msxml3.dll -p msxml3_test.exe.so xmlview && touch xmlview.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==31756== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp31756_43c022e8 is empty ==31756== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==31756== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp31756_43c022e8 is empty ==31756== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==31756== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp31756_43c022e8 is empty ==31756== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==31756== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp31756_43c022e8 is empty ==31756== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==31756== 12 bytes in 1 blocks are definitely lost in loss record 206 of 2,519 ==31756== at 0x7BC5067C: notify_alloc (heap.c:254) ==31756== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31756== by 0x8FCEE08: heap_alloc (mshtml_private.h:1155) ==31756== by 0x8FD571F: nsSupportsWeakReference_GetWeakReference (nsembed.c:1952) ==31756== by 0x6BB64A55: ??? ==31756== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:nsSupportsWeakReference_GetWeakReference obj:* } ==31756== 128 bytes in 4 blocks are possibly lost in loss record 1,762 of 2,519 ==31756== at 0x7BC5067C: notify_alloc (heap.c:254) ==31756== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31756== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==31756== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==31756== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==31756== by 0x6A0D8113: ??? ==31756== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==31756== 304 bytes in 4 blocks are possibly lost in loss record 1,983 of 2,519 ==31756== at 0x7BC5067C: notify_alloc (heap.c:254) ==31756== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==31756== by 0x4EAB870: IMalloc_fnAlloc (ifs.c:187) ==31756== by 0x4EAC10F: IMalloc_Alloc (objidl.h:1508) ==31756== by 0x4EAC10F: CoTaskMemAlloc (???:0) ==31756== by 0x4C089BE: alloc_bstr (oleaut.c:177) ==31756== by 0x4C08D85: SysAllocStringLen (oleaut.c:355) ==31756== by 0x5AE8B8B: pre_process_uri (uri.c:786) ==31756== by 0x5AF607E: CreateUri (uri.c:5738) ==31756== by 0x8FF4D32: create_uri (persist.c:185) ==31756== by 0x8FE57CB: nsIOServiceHook_NewURI (nsio.c:3890) ==31756== by 0x69F3AFD9: ??? ==31756== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==31756== 560 bytes in 3 blocks are possibly lost in loss record 2,096 of 2,519 ==31756== at 0x7BC5067C: notify_alloc (heap.c:254) ==31756== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==31756== by 0xA9F9FF2: msvcrt_heap_realloc (heap.c:102) ==31756== by 0xA9FABA5: MSVCRT_realloc (heap.c:457) ==31756== by 0x69E78C00: ??? ==31756== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/msxml3/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/netapi32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M netapi32.dll -p netapi32_test.exe.so access && touch access.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M netapi32.dll -p netapi32_test.exe.so apibuf && touch apibuf.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M netapi32.dll -p netapi32_test.exe.so ds && touch ds.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M netapi32.dll -p netapi32_test.exe.so wksta && touch wksta.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/netapi32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/netcfgx/tests' ../../../tools/runtest -q -P wine -T ../../.. -M netcfgx.dll -p netcfgx_test.exe.so netcfgx && touch netcfgx.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/netcfgx/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/netprofm/tests' ../../../tools/runtest -q -P wine -T ../../.. -M netprofm.dll -p netprofm_test.exe.so list && touch list.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/netprofm/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ntdll/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so atom && touch atom.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so change && touch change.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so directory && touch directory.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 directory.c:839: Tests skipped: Wow64 redirection not supported ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so env && touch env.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so error && touch error.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so file && touch file.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 file.c:3084: Tests skipped: Not running on WoW64, skipping test. file.c:3219: Tests skipped: Not running on WoW64, skipping test. ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so info && touch info.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so large_int && touch large_int.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so om && touch om.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so path && touch path.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so pipe && touch pipe.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so port && touch port.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so reg && touch reg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so rtl && touch rtl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 rtl.c:1228: Tests skipped: RtlIpv4StringToAddress not available ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so rtlbitmap && touch rtlbitmap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so rtlstr && touch rtlstr.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 rtlstr.c:2101: Tests skipped: RtlUnicodeToUTF8N unavailable rtlstr.c:2404: Tests skipped: RtlUTF8ToUnicodeN unavailable ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so threadpool && touch threadpool.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ntdll.dll -p ntdll_test.exe.so time && touch time.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ntdll/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ntdsapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ntdsapi.dll -p ntdsapi_test.exe.so ntdsapi && touch ntdsapi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ntdsapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ntprint/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ntprint.dll -p ntprint_test.exe.so ntprint && touch ntprint.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ntprint/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/odbccp32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M odbccp32.dll -p odbccp32_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/odbccp32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ole32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so compobj && touch compobj.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so defaulthandler && touch defaulthandler.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so dragdrop && touch dragdrop.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so errorinfo && touch errorinfo.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so hglobalstream && touch hglobalstream.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so moniker && touch moniker.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so ole2 && touch ole2.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so ole_server && touch ole_server.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so propvariant && touch propvariant.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so stg_prop && touch stg_prop.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so storage32 && touch storage32.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so usrmarshal && touch usrmarshal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ole32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/oleacc/tests' ../../../tools/runtest -q -P wine -T ../../.. -M oleacc.dll -p oleacc_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/oleacc/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/oleaut32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so dispatch && touch dispatch.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so olefont && touch olefont.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so olepicture && touch olepicture.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 01 00 09 00 00 03 19 00 01 00 09 00 00 03 19 00 00 00 00 00 0d 00 00 00 00 00 0d 00 00 00 32 0a 16 00 0b 00 04 00 00 00 54 65 73 74 03 00 05 00 08 00 0c 00 03 00 00 00 00 00 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so safearray && touch safearray.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so tmarshal && touch tmarshal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so typelib && touch typelib.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so usrmarshal && touch usrmarshal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so varformat && touch varformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so vartest && touch vartest.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p oleaut32_test.exe.so vartype && touch vartype.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 vartype.c:6378: Tests skipped: BSTR cache is disabled, some tests will be skipped. vartype.c:3736: Test failed: expected 0xbfffffff 0xffffff23 (3221225471,4294967075), got (3221225472,0); hres=0x00000000 vartype.c:3739: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3743: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3819: Test failed: expected 2147483647ul 4294951488ul (2147483647,4294951488), got (2147483647,4294951936); hres=0x00000000 vartype.c:3820: Test failed: expected 2147483647ul 4294961488ul (2147483647,4294961488), got (2147483647,4294961152); hres=0x00000000 vartype.c:3821: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3822: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3842: Test failed: expected 0xbfffffff 0xffffff23 (3221225471,4294967075), got (3221225472,0); hres=0x00000000 vartype.c:3848: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3849: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3890: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3893: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3906: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3919: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3920: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3931: Test failed: expected 2147483647ul 4294951488ul (2147483647,4294951488), got (2147483647,4294951936); hres=0x00000000 vartype.c:3932: Test failed: expected 2147483647ul 4294951488ul (2147483647,4294951488), got (2147483647,4294951936); hres=0x00000000 vartype.c:3942: Test failed: expected 2147483648ul 15808 (2147483648,15808), got (2147483648,15360); hres=0x00000000 vartype.c:3943: Test failed: expected 2147483647ul 4294951488ul (2147483647,4294951488), got (2147483647,4294951936); hres=0x00000000 vartype.c:3958: Test failed: expected 2147483647ul 4294951488ul (2147483647,4294951488), got (2147483647,4294951936); hres=0x00000000 vartype.c:3959: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 vartype.c:3974: Test failed: expected 2147483647ul 4294951488ul (2147483647,4294951488), got (2147483647,4294951936); hres=0x00000000 vartype.c:3975: Test failed: expected DISP_E_OVERFLOW, got hres=0x00000000 Makefile:468: recipe for target 'vartype.ok' failed make[1]: *** [vartype.ok] Error 23 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/oleaut32/tests' Makefile:14236: recipe for target 'dlls/oleaut32/tests/test' failed make: *** [dlls/oleaut32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/oledb32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M oledb32.dll -p oledb32_test.exe.so convert && touch convert.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oledb32.dll -p oledb32_test.exe.so database && touch database.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M oledb32.dll -p oledb32_test.exe.so marshal && touch marshal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/oledb32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/oledlg/tests' ../../../tools/runtest -q -P wine -T ../../.. -M oledlg.dll -p oledlg_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/oledlg/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/opengl32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M opengl32.dll -p opengl32_test.exe.so opengl && touch opengl.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x64f977c (thread 0133), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x064f977c). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:064f977c ESP:04b0e9f0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06933000 ECX:0471fa38 EDX:00200000 ESI:046a8db0 EDI:0471fa38 Stack dump: 0x04b0e9f0: 04b0ea2c 04719384 00000003 00000002 0x04b0ea00: 00007f30 00007f44 00000082 00007f4c 0x04b0ea10: 00800000 00000000 00007f24 00007f28 0x04b0ea20: 00007f2c 00000000 046a8590 00007f54 0x04b0ea30: 00000000 00000000 00000000 00000000 0x04b0ea40: 00000000 00000000 00000000 58176400 Backtrace: =>0 0x064f977c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x064dffab in radeonsi_dri.so (+0x670faa) (0x046a7928) 2 0x064e0332 in radeonsi_dri.so (+0x671331) (0x04b0eb88) 3 0x065606df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0eb88) 4 0x05e9f6fc in radeonsi_dri.so (+0x306fb) (0x046a4368) 5 0x062d7f00 in radeonsi_dri.so (+0x468eff) (0x046a4368) 6 0x062d793d in radeonsi_dri.so (+0x46893c) (0x046a4368) 7 0x0619881b in radeonsi_dri.so (+0x32981a) (0x046a4368) 8 0x06194846 in radeonsi_dri.so (+0x325845) (0x046a42e0) 9 0x05a54722 in libgl.so.1 (+0x43721) (0x045f46f8) 10 0x05a29a42 in libgl.so.1 (+0x18a41) (0x045f21d0) 11 0x05a2560b in libgl.so.1 (+0x1460a) (0x04b0f644) 12 0x05a25784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0f644) 13 0x055f517f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0f718) 14 0x055f6bd7 init_opengl+0xfbe(once=0x5653e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f928) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f978) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f9a8) 17 0x055f7052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f9d8) 18 0x055ff0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f9f8) 19 0x055e9e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x49003c8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0fa28) 20 0x04c45c23 windrv_wine_get_wgl_driver+0x64(dev=0x49003c8, version=0xf) [/home/austin/wine-valgrind/dlls/gdi32/dibdrv/dc.c:1021] in gdi32 (0x04b0fa48) 21 0x04cbc459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0fa78) 22 0x7a8abee9 get_dc_funcs+0x1e(hdc=0x1e0038) [/home/austin/wine-valgrind/dlls/opengl32/wgl.c:99] in opengl32 (0x04b0fab8) 23 0x7a8acbdf wglDescribePixelFormat+0x1d(hdc=, format=, size=, descr=) [/home/austin/wine-valgrind/dlls/opengl32/wgl.c:443] in opengl32 (0x04b0fae8) 24 0x7a8acdde wglChoosePixelFormat+0x1c9(hdc=0x1e0038, ppfd=0x4b0fc94) [/home/austin/wine-valgrind/dlls/opengl32/wgl.c:463] in opengl32 (0x04b0fc08) 25 0x04cbc506 ChoosePixelFormat+0x8b(hdc=, pfd=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:75] in gdi32 (0x04b0fc48) 26 0x0482c033 func_opengl+0xf7() [/home/austin/wine-valgrind/dlls/opengl32/tests/opengl.c:1633] in opengl32_test (0x04b0fcc8) 27 0x0482d34f run_test+0x96(name="opengl") [/home/austin/wine-valgrind/dlls/opengl32/tests/../../../include/wine/test.h:589] in opengl32_test (0x04b0fd08) 28 0x0482d77a main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/opengl32/tests/../../../include/wine/test.h:671] in opengl32_test (0x04b0fdd8) 29 0x0482d80b __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in opengl32_test (0x04b0fe18) 30 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 31 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 32 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 33 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 34 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 35 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 36 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 37 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9cb288) 38 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe9cb308) 39 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9cc1b8) 40 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9cc1f8) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe9cc734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe9cc248) 42 0x7c000f80 main+0x145(argc=, argv=0xfe9cc734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9cc688) 43 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x064f977c: repe Modules: Module Address Debug info Name (113 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4833000 Dwarf opengl32_test \-PE 4820000- 4833000 \ opengl32_test ELF 4844000- 485f000 Deferred version \-PE 4850000- 485f000 \ version ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4c10000- 4d54000 Dwarf gdi32 \-PE 4c20000- 4d54000 \ gdi32 ELF 4d54000- 4dd5000 Deferred advapi32 \-PE 4d60000- 4dd5000 \ advapi32 ELF 4dd5000- 4f49000 Deferred user32 \-PE 4df0000- 4f49000 \ user32 ELF 5195000- 524d000 Deferred libfreetype.so.6 ELF 544d000- 5464000 Deferred libz.so.1 ELF 546c000- 547e000 Deferred libbz2.so.1 ELF 5482000- 54c0000 Deferred libpng16.so.16 ELF 54c4000- 5501000 Deferred libfontconfig.so.1 ELF 5509000- 5533000 Deferred libexpat.so.1 ELF 553f000- 554b000 Deferred libxcursor.so.1 ELF 554f000- 5556000 Deferred libxfixes.so.3 ELF 556a000- 556d000 Deferred libxshmfence.so.1 ELF 5586000- 55ab000 Deferred imm32 \-PE 5590000- 55ab000 \ imm32 ELF 55b7000- 5657000 Dwarf winex11 \-PE 55c0000- 5657000 \ winex11 ELF 566b000- 566f000 Deferred libxinerama.so.1 ELF 5673000- 5679000 Deferred libxxf86vm.so.1 ELF 567d000- 5689000 Deferred libxrender.so.1 ELF 568d000- 569a000 Deferred libxrandr.so.2 ELF 569e000- 56a2000 Deferred libxcomposite.so.1 ELF 56af000- 56c2000 Deferred libxext.so.6 ELF 56c6000- 5817000 Deferred libx11.so.6 ELF 581b000- 5847000 Deferred libxcb.so.1 ELF 584b000- 584f000 Deferred libxau.so.6 ELF 584f000- 5856000 Deferred libxdmcp.so.6 ELF 585a000- 5876000 Deferred libbsd.so.0 ELF 58c6000- 58d9000 Deferred libxi.so.6 ELF 590d000- 5910000 Deferred libx11-xcb.so.1 ELF 591e000- 5922000 Deferred libxcb-dri3.so.0 ELF 5922000- 5926000 Deferred libxcb-present.so.0 ELF 59e5000- 5a0d000 Deferred libudev.so.1 ELF 5a11000- 5a88000 Dwarf libgl.so.1 ELF 5b88000- 5b90000 Deferred libxcb-sync.so.1 ELF 5b94000- 5bcb000 Deferred libglapi.so.0 ELF 5bd3000- 5bd7000 Deferred libxdamage.so.1 ELF 5bdb000- 5bf8000 Deferred libxcb-glx.so.0 ELF 5bfc000- 5c02000 Deferred libxcb-dri2.so.0 ELF 5c06000- 5c18000 Deferred libdrm.so.2 ELF 5c18000- 5c1b000 Deferred libllvmamdgpuutils.so.3.7 ELF 5e33000- 5e58000 Deferred libdrm_intel.so.1 ELF 5e60000- 5e6a000 Deferred libdrm_nouveau.so.2 ELF 5e6f000- 6b31000 Dwarf radeonsi_dri.so ELF 6d39000- 6d3f000 Deferred libtxc_dxtn.so ELF 6d71000- 6db1000 Deferred libnettle.so.6 ELF 6db1000- 6dbf000 Deferred libdrm_radeon.so.1 ELF 6dbf000- 6dca000 Deferred libdrm_amdgpu.so.1 ELF 6dce000- 6deb000 Deferred libelf.so.1 ELF 6f0f000- 6f12000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6f2e000- 6f31000 Deferred libllvmx86info.so.3.7 ELF 7645000- 77b4000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7ab4000- 7b7c000 Deferred libllvmipo.so.3.7 ELF 7b7c000- 7ba6000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 7f87000- 802f000 Deferred libllvmvectorize.so.3.7 ELF 802f000- 8089000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8089000- 8155000 Deferred libllvmamdgpudesc.so.3.7 ELF 8155000- 8191000 Deferred libllvmbitwriter.so.3.7 ELF 8191000- 82f9000 Deferred libllvmx86disassembler.so.3.7 ELF 82f9000- 839c000 Deferred libllvmx86asmparser.so.3.7 ELF 83a8000- 83e9000 Deferred libllvmprofiledata.so.3.7 ELF 8419000- 8422000 Deferred libllvmmcdisassembler.so.3.7 ELF 888c000- 8b12000 Deferred libllvmx86codegen.so.3.7 ELF 8b12000- 8be0000 Deferred libllvmasmprinter.so.3.7 ELF 8be0000- 8bec000 Deferred libllvmx86utils.so.3.7 ELF 8bf0000- 8c00000 Deferred libllvmmcjit.so.3.7 ELF 9555000- 958c000 Deferred libllvmipa.so.3.7 ELF 9752000- 9a5b000 Deferred libllvmselectiondag.so.3.7 ELF a0f8000- a5e6000 Deferred libllvmcodegen.so.3.7 ELF a5e6000- a8a8000 Deferred libllvmscalaropts.so.3.7 ELF aaa8000- aabc000 Deferred libllvmtarget.so.3.7 ELF aca2000- ad91000 Deferred libllvminstcombine.so.3.7 ELF b0af000- b0fa000 Deferred libllvmx86asmprinter.so.3.7 ELF b6b7000- b75f000 Deferred libllvminstrumentation.so.3.7 ELF b75f000- b789000 Deferred libllvmexecutionengine.so.3.7 ELF b789000- b807000 Deferred libllvmruntimedyld.so.3.7 ELF b807000- b823000 Deferred libgcc_s.so.1 ELF b827000- b832000 Deferred libpciaccess.so.0 ELF bcff000- be65000 Deferred libllvmtransformutils.so.3.7 ELF c235000- c392000 Deferred libllvmx86desc.so.3.7 ELF c392000- c67f000 Deferred libllvmanalysis.so.3.7 ELF c77f000- c826000 Deferred libllvmobject.so.3.7 ELF c826000- c863000 Deferred libllvmmcparser.so.3.7 ELF ca8d000- cade000 Deferred libllvmbitreader.so.3.7 ELF cade000- cb9d000 Deferred libllvmmc.so.3.7 ELF cd9d000- cdfb000 Deferred libncurses.so.6 ELF d25f000- d5c5000 Deferred libllvmcore.so.3.7 ELF d6c5000- d7e2000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Dwarf opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 00000154 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000a8 0 000000af 0 000000ae 0 000000ad 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 00000118 (D) Z:\home\austin\wine-valgrind\dlls\opengl32\tests\opengl32_test.exe 00000133 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 Makefile:171: recipe for target 'opengl.ok' failed make[1]: *** [opengl.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/opengl32/tests' Makefile:14553: recipe for target 'dlls/opengl32/tests/test' failed make: *** [dlls/opengl32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/packager/tests' ../../../tools/runtest -q -P wine -T ../../.. -M packager.dll -p packager_test.exe.so oleobj && touch oleobj.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/packager/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/pdh/tests' ../../../tools/runtest -q -P wine -T ../../.. -M pdh.dll -p pdh_test.exe.so pdh && touch pdh.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/pdh/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/propsys/tests' ../../../tools/runtest -q -P wine -T ../../.. -M propsys.dll -p propsys_test.exe.so propstore && touch propstore.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 propstore.c:217: Tests skipped: IPersistSerializedPropStorage not supported ../../../tools/runtest -q -P wine -T ../../.. -M propsys.dll -p propsys_test.exe.so propsys && touch propsys.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/propsys/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/psapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M psapi.dll -p psapi_test.exe.so psapi_main && touch psapi_main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/psapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/qcap/tests' ../../../tools/runtest -q -P wine -T ../../.. -M qcap.dll -p qcap_test.exe.so qcap && touch qcap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M qcap.dll -p qcap_test.exe.so smartteefilter && touch smartteefilter.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==32669== 72 bytes in 1 blocks are definitely lost in loss record 347 of 665 ==32669== at 0x7BC5067C: notify_alloc (heap.c:254) ==32669== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==32669== by 0x4E0B870: IMalloc_fnAlloc (ifs.c:187) ==32669== by 0x4E0C10F: IMalloc_Alloc (objidl.h:1508) ==32669== by 0x4E0C10F: CoTaskMemAlloc (???:0) ==32669== by 0x5DA6240: ??? ==32669== by 0x4A21359: IMediaSample_SetMediaType (strmif.h:2713) ==32669== by 0x4A21359: media_thread (???:0) ==32669== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==32669== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==32669== by 0x7BC8F869: ??? (signal_i386.c:2709) ==32669== by 0x7BC9953E: start_thread (thread.c:453) ==32669== by 0x4243250: start_thread (pthread_create.c:334) ==32669== by 0x4341B2D: clone (clone.S:122) ==32669== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc obj:* fun:IMediaSample_SetMediaType fun:media_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==32669== 72 bytes in 1 blocks are definitely lost in loss record 348 of 665 ==32669== at 0x7BC5067C: notify_alloc (heap.c:254) ==32669== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==32669== by 0x4E0B870: IMalloc_fnAlloc (ifs.c:187) ==32669== by 0x4E0C10F: IMalloc_Alloc (objidl.h:1508) ==32669== by 0x4E0C10F: CoTaskMemAlloc (???:0) ==32669== by 0x5DA6240: ??? ==32669== by 0x5D3353E: ??? ==32669== by 0x5D3376F: ??? ==32669== by 0x5D3CDA0: ??? ==32669== by 0x4A21442: IMemInputPin_Receive (strmif.h:3683) ==32669== by 0x4A21442: media_thread (???:0) ==32669== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==32669== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==32669== by 0x7BC8F869: ??? (signal_i386.c:2709) ==32669== by 0x7BC9953E: start_thread (thread.c:453) ==32669== by 0x4243250: start_thread (pthread_create.c:334) ==32669== by 0x4341B2D: clone (clone.S:122) ==32669== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc obj:* obj:* obj:* obj:* fun:IMemInputPin_Receive fun:media_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==32669== 72 bytes in 1 blocks are definitely lost in loss record 350 of 665 ==32669== at 0x7BC5067C: notify_alloc (heap.c:254) ==32669== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==32669== by 0x4E0B870: IMalloc_fnAlloc (ifs.c:187) ==32669== by 0x4E0C10F: IMalloc_Alloc (objidl.h:1508) ==32669== by 0x4E0C10F: CoTaskMemAlloc (???:0) ==32669== by 0x5DA6240: ??? ==32669== by 0x5D3353E: ??? ==32669== by 0x5D3380D: ??? ==32669== by 0x5D3CDA0: ??? ==32669== by 0x4A21442: IMemInputPin_Receive (strmif.h:3683) ==32669== by 0x4A21442: media_thread (???:0) ==32669== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==32669== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==32669== by 0x7BC8F869: ??? (signal_i386.c:2709) ==32669== by 0x7BC9953E: start_thread (thread.c:453) ==32669== by 0x4243250: start_thread (pthread_create.c:334) ==32669== by 0x4341B2D: clone (clone.S:122) ==32669== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc obj:* obj:* obj:* obj:* fun:IMemInputPin_Receive fun:media_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/qcap/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/qedit/tests' ../../../tools/runtest -q -P wine -T ../../.. -M qedit.dll -p qedit_test.exe.so mediadet && touch mediadet.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M qedit.dll -p qedit_test.exe.so timeline && touch timeline.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/qedit/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/qmgr/tests' ../../../tools/runtest -q -P wine -T ../../.. -M qmgr.dll -p qmgr_test.exe.so enum_files && touch enum_files.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M qmgr.dll -p qmgr_test.exe.so enum_jobs && touch enum_jobs.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M qmgr.dll -p qmgr_test.exe.so file && touch file.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M qmgr.dll -p qmgr_test.exe.so job && touch job.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M qmgr.dll -p qmgr_test.exe.so qmgr && touch qmgr.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/qmgr/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/quartz/tests' ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so avisplitter && touch avisplitter.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 avisplitter.c:341: Tests skipped: Could not read test file "test.avi", skipping test ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so dsoundrender && touch dsoundrender.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so filtergraph && touch filtergraph.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so filtermapper && touch filtermapper.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so memallocator && touch memallocator.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so mpegsplit && touch mpegsplit.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so referenceclock && touch referenceclock.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M quartz.dll -p quartz_test.exe.so videorenderer && touch videorenderer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/quartz/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/rasapi32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M rasapi32.dll -p rasapi32_test.exe.so rasapi && touch rasapi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/rasapi32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/riched20/tests' ../../../tools/runtest -q -P wine -T ../../.. -M riched20.dll -p riched20_test.exe.so editor && touch editor.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 editor.c:492: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:1764: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:1803: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:4356: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:4957: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:4897: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:8510: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:5261: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:5261: Tests skipped: Skip multibyte character tests on non-Japanese platform ../../../tools/runtest -q -P wine -T ../../.. -M riched20.dll -p riched20_test.exe.so richole && touch richole.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M riched20.dll -p riched20_test.exe.so txtsrv && touch txtsrv.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 txtsrv.c:758: Tests skipped: TxGetNaturalSize measurements not performed (xdim = 0, ydim = 0, result = 80004001, error = deadbeef) make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/riched20/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/riched32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M riched32.dll -p riched32_test.exe.so editor && touch editor.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 editor.c:579: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:619: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:153: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:515: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:1335: Tests skipped: Skip multibyte character tests on non-Japanese platform editor.c:1397: Tests skipped: Skip multibyte character tests on non-Japanese platform make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/riched32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/rpcrt4/tests' ../../../tools/runtest -q -P wine -T ../../.. -M rpcrt4.dll -p rpcrt4_test.exe.so cstub && touch cstub.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M rpcrt4.dll -p rpcrt4_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M rpcrt4.dll -p rpcrt4_test.exe.so ndr_marshall && touch ndr_marshall.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M rpcrt4.dll -p rpcrt4_test.exe.so rpc && touch rpc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M rpcrt4.dll -p rpcrt4_test.exe.so rpc_async && touch rpc_async.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M rpcrt4.dll -p rpcrt4_test.exe.so server && touch server.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/rpcrt4/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/rsaenh/tests' ../../../tools/runtest -q -P wine -T ../../.. -M rsaenh.dll -p rsaenh_test.exe.so rsaenh && touch rsaenh.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/rsaenh/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/schannel/tests' ../../../tools/runtest -q -P wine -T ../../.. -M schannel.dll -p schannel_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/schannel/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/schedsvc/tests' ../../../tools/runtest -q -P wine -T ../../.. -M schedsvc.dll -p schedsvc_test.exe.so rpcapi && touch rpcapi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 rpcapi.c:32: Tests skipped: Can't connect to Scheduler service: 0x6d9 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/schedsvc/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/scrrun/tests' ../../../tools/runtest -q -P wine -T ../../.. -M scrrun.dll -p scrrun_test.exe.so dictionary && touch dictionary.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M scrrun.dll -p scrrun_test.exe.so filesystem && touch filesystem.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 filesystem.c:1917: Tests skipped: No drive with type 0x2 found, skipping test L"R:\\". make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/scrrun/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/secur32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M secur32.dll -p secur32_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M secur32.dll -p secur32_test.exe.so negotiate && touch negotiate.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory negotiate.c:178: Test failed: InitializeSecurityContext didn't change buffer size negotiate.c:253: Test failed: client returned 80090304, more tests will fail negotiate.c:259: Test failed: server returned 80090308, more tests will fail negotiate.c:269: Tests skipped: authentication failed, skipping remaining tests Makefile:187: recipe for target 'negotiate.ok' failed make[1]: *** [negotiate.ok] Error 3 ../../../tools/runtest -q -P wine -T ../../.. -M secur32.dll -p secur32_test.exe.so ntlm && touch ntlm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory ntlm.c:431: Test failed: expected SEC_E_BUFFER_TOO_SMALL, got SEC_E_INTERNAL_ERROR ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory ntlm.c:453: Test failed: expected SEC_E_BUFFER_TOO_SMALL, got SEC_E_INTERNAL_ERROR ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory ntlm.c:465: Test failed: expected SEC_E_BUFFER_TOO_SMALL, got SEC_E_INTERNAL_ERROR ntlm_auth: error opening config file /etc/samba/smb.conf. Error was No such file or directory ntlm.c:486: Test failed: InitializeSecurityContext set buffer size to 1904 ntlm.c:846: Test failed: Running the client returned SEC_E_INTERNAL_ERROR, more tests will fail. ntlm.c:869: Tests skipped: Authentication failed, skipping test. wine: Unhandled page fault on read access to 0x007400a8 at address 0x4b38f0f (thread 004d), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: page fault on read access to 0x007400a8 in 32-bit code (0x04b38f0f). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:04b38f0f ESP:04b0fbb0 EBP:04b0fbe8 EFLAGS:00200004( - -- - -P- ) EAX:00740000 EBX:04b45000 ECX:04b0fc00 EDX:04b0fc64 ESI:04b0fc00 EDI:7c000aa0 Stack dump: 0x04b0fbb0: 00000057 0483a000 04825fb1 04828d4f 0x04b0fbc0: 048d0000 0483a8fa 00000008 04832f79 0x04b0fbd0: 04834c67 00000001 04201000 04b0fc00 0x04b0fbe0: 0483a000 04b0fdf0 04b0fca8 0482acc1 0x04b0fbf0: 04b0fdf0 0483a000 04b0fca8 0482acc1 0x04b0fc00: 04b0fc64 00000365 04834bca 0482a6f9 Backtrace: =>0 0x04b38f0f DeleteSecurityContext+0x8e(phContext=) [/home/austin/wine-valgrind/dlls/secur32/wrapper.c:466] in secur32 (0x04b0fbe8) 1 0x0482acc1 testAuth+0x5d6(data_rep=0x10, fake=0x1) [/home/austin/wine-valgrind/dlls/secur32/tests/ntlm.c:903] in secur32_test (0x04b0fca8) 2 0x0482d110 func_ntlm+0x98() [/home/austin/wine-valgrind/dlls/secur32/tests/ntlm.c:1462] in secur32_test (0x04b0fcc8) 3 0x0483383a run_test+0x96(name="ntlm") [/home/austin/wine-valgrind/dlls/secur32/tests/../../../include/wine/test.h:589] in secur32_test (0x04b0fd08) 4 0x04833c66 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/secur32/tests/../../../include/wine/test.h:671] in secur32_test (0x04b0fdd8) 5 0x04833cf7 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in secur32_test (0x04b0fe18) 6 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 7 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 8 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 9 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 10 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 11 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 12 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 13 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe8de298) 14 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe8de318) 15 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe8df1c8) 16 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe8df208) 17 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe8df744, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe8df258) 18 0x7c000f80 main+0x145(argc=, argv=0xfe8df744) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe8df698) 19 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x04b38f0f DeleteSecurityContext+0x8e [/home/austin/wine-valgrind/dlls/secur32/wrapper.c:466] in secur32: movl 0xa8(%eax),%eax 466 package->provider->fnTableW.DeleteSecurityContext) Modules: Module Address Debug info Name (51 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483b000 Dwarf secur32_test \-PE 4820000- 483b000 \ secur32_test ELF 4844000- 485c000 Deferred libresolv.so.2 ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4b47000 Dwarf secur32 \-PE 4b20000- 4b47000 \ secur32 ELF 4b47000- 4b7a000 Deferred netapi32 \-PE 4b50000- 4b7a000 \ netapi32 ELF 4b7a000- 4ba6000 Deferred iphlpapi \-PE 4b80000- 4ba6000 \ iphlpapi ELF 4ba6000- 4bdf000 Deferred ws2_32 \-PE 4bb0000- 4bdf000 \ ws2_32 ELF 4bf2000- 4c73000 Deferred advapi32 \-PE 4c00000- 4c73000 \ advapi32 ELF 4c73000- 4d53000 Deferred crypt32 \-PE 4c80000- 4d53000 \ crypt32 ELF 4d53000- 4ec7000 Deferred user32 \-PE 4d70000- 4ec7000 \ user32 ELF 50c7000- 520b000 Deferred gdi32 \-PE 50d0000- 520b000 \ gdi32 ELF 520b000- 5226000 Deferred version \-PE 5210000- 5226000 \ version ELF 527a000- 53b0000 Deferred libgnutls.so.28 ELF 56b0000- 56c7000 Deferred libz.so.1 ELF 56cb000- 56e0000 Deferred libtasn1.so.6 ELF 56e0000- 5720000 Deferred libnettle.so.6 ELF 5720000- 5757000 Deferred libhogweed.so.4 ELF 575b000- 57d2000 Deferred libgmp.so.10 ELF 57e2000- 589a000 Deferred libfreetype.so.6 ELF 59a2000- 59b4000 Deferred libbz2.so.1 ELF 59bc000- 59fa000 Deferred libpng16.so.16 ELF 59fe000- 5a3b000 Deferred libfontconfig.so.1 ELF 5a3f000- 5a69000 Deferred libexpat.so.1 ELF 5ac0000- 5ae5000 Deferred imm32 \-PE 5ad0000- 5ae5000 \ imm32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 00000132 0 00000183 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 00000081 0 000001c0 0 000000a8 0 000000ae 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000018e svchost.exe 000001ae 0 00000151 0 0000014d 0 0000012b 0 00000130 0 0000012f 0 00000180 0 00000055 (D) Z:\home\austin\wine-valgrind\dlls\secur32\tests\secur32_test.exe 0000004d 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==1246== 8 bytes in 1 blocks are definitely lost in loss record 12 of 328 ==1246== at 0x7BC5067C: notify_alloc (heap.c:254) ==1246== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==1246== by 0x4B3809E: SECUR32_makeSecHandle (wrapper.c:44) ==1246== by 0x4B38246: AcquireCredentialsHandleA (wrapper.c:90) ==1246== by 0x4828E4E: setupClient (ntlm.c:331) ==1246== by 0x482A804: testAuth (ntlm.c:818) ==1246== by 0x482D10F: func_ntlm (ntlm.c:1462) ==1246== by 0x4833839: run_test (test.h:589) ==1246== by 0x4833C65: main (test.h:671) ==1246== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:SECUR32_makeSecHandle fun:AcquireCredentialsHandleA fun:setupClient fun:testAuth fun:func_ntlm fun:run_test fun:main } Makefile:218: recipe for target 'ntlm.ok' failed make[1]: *** [ntlm.ok] Error 5 ../../../tools/runtest -q -P wine -T ../../.. -M secur32.dll -p secur32_test.exe.so schannel && touch schannel.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 GnuTLS error: An unexpected TLS packet was received. GnuTLS error: The specified session has been invalidated for some reason. ../../../tools/runtest -q -P wine -T ../../.. -M secur32.dll -p secur32_test.exe.so secur32 && touch secur32.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/secur32/tests' Makefile:15684: recipe for target 'dlls/secur32/tests/test' failed make: *** [dlls/secur32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/serialui/tests' ../../../tools/runtest -q -P wine -T ../../.. -M serialui.dll -p serialui_test.exe.so confdlg && touch confdlg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/serialui/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/setupapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so devinst && touch devinst.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so diskspace && touch diskspace.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so install && touch install.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so parser && touch parser.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so query && touch query.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so setupcab && touch setupcab.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M setupapi.dll -p setupapi_test.exe.so stringtable && touch stringtable.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/setupapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/shdocvw/tests' ../../../tools/runtest -q -P wine -T ../../.. -M shdocvw.dll -p shdocvw_test.exe.so shdocvw && touch shdocvw.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shdocvw.dll -p shdocvw_test.exe.so shortcut && touch shortcut.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/shdocvw/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/shell32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so appbar && touch appbar.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so assoc && touch assoc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so autocomplete && touch autocomplete.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so brsfolder && touch brsfolder.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so ebrowser && touch ebrowser.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so progman_dde && touch progman_dde.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so recyclebin && touch recyclebin.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shelldispatch && touch shelldispatch.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==1550== Invalid read of size 1 ==1550== at 0x4C06C9D: _ILIsValue (pidl.c:1869) ==1550== by 0x4C6884F: ItemMenu_Constructor (shlview_cmenu.c:637) ==1550== by 0x4C44C08: ShellFolder2_GetUIObjectOf (shfldr_unixfs.c:1191) ==1550== by 0x4C106AA: IShellFolder_GetUIObjectOf (shobjidl.h:1684) ==1550== by 0x4C106AA: FolderItemVerbs_Constructor (???:0) ==1550== by 0x4C11833: FolderItemImpl_Verbs (shelldispatch.c:871) ==1550== by 0x4A3276F: FolderItem_Verbs (shldisp.h:2168) ==1550== by 0x4A3276F: test_Verbs (???:0) ==1550== by 0x4A330C8: func_shelldispatch (shelldispatch.c:1025) ==1550== by 0x4A84EF7: run_test (test.h:589) ==1550== by 0x4A85323: main (test.h:671) ==1550== Address 0x48d283a is 386 bytes inside a block of size 2,048 free'd ==1550== at 0x7BC506EB: notify_free (heap.c:262) ==1550== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==1550== by 0x7B449730: HeapFree (heap.c:276) ==1550== by 0x7B469719: set_additional_environment (process.c:563) ==1550== by 0x7B46B411: __wine_kernel_init (process.c:1259) ==1550== by 0x7BC5FA63: __wine_process_init (loader.c:3312) ==1550== by 0x403F59A: wine_init (loader.c:956) ==1550== by 0x7C000F7F: main (main.c:254) ==1550== Block was alloc'd at ==1550== at 0x7BC5067C: notify_alloc (heap.c:254) ==1550== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==1550== by 0x7B449700: HeapAlloc (heap.c:271) ==1550== by 0x7B4693E6: get_reg_value (process.c:486) ==1550== by 0x7B4695B8: set_additional_environment (process.c:543) ==1550== by 0x7B46B411: __wine_kernel_init (process.c:1259) ==1550== by 0x7BC5FA63: __wine_process_init (loader.c:3312) ==1550== by 0x403F59A: wine_init (loader.c:956) ==1550== by 0x7C000F7F: main (main.c:254) ==1550== { Memcheck:Addr1 fun:_ILIsValue fun:ItemMenu_Constructor fun:ShellFolder2_GetUIObjectOf fun:IShellFolder_GetUIObjectOf fun:FolderItemVerbs_Constructor fun:FolderItemImpl_Verbs fun:FolderItem_Verbs fun:test_Verbs fun:func_shelldispatch fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shelllink && touch shelllink.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==1598== Syscall param writev(vector[...]) points to uninitialised byte(s) ==1598== at 0x4339523: __writev_nocancel (syscall-template.S:84) ==1598== by 0x7BC87A4F: send_request (server.c:228) ==1598== by 0x7BC87C02: wine_server_call (server.c:309) ==1598== by 0x7BC88A1E: server_select (server.c:607) ==1598== by 0x7BC46130: wait_suspend (exception.c:126) ==1598== by 0x7BC8E998: usr1_handler (signal_i386.c:2294) ==1598== by 0x424D18F: ??? (in /lib32/libpthread-2.22.so) ==1598== Address 0x4206eb0 is on thread 1's stack ==1598== in frame #3, created by server_select (server.c:586) ==1598== Uninitialised value was created by a stack allocation ==1598== at 0x7B445DE2: DeviceIoControl (file.c:2598) ==1598== { Memcheck:Param writev(vector[...]) fun:__writev_nocancel fun:send_request fun:wine_server_call fun:server_select fun:wait_suspend fun:usr1_handler obj:/lib32/libpthread-2.22.so } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shellole && touch shellole.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shellpath && touch shellpath.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shfldr_special && touch shfldr_special.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shlexec && touch shlexec.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1108: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtfb94.tmp\drawback_file.noassoc foo.shlexec") WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1130: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtfb94.tmp\drawback_nonexist.noassoc foo.shlexec") WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1693: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtfb94.tmp\test file.shlexec") WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1693: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtfb94.tmp\%nasty% $file.shlexec") WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1717: Test failed: ShellExecute(file="C:\users\austin\Temp\wtfb94.tmp\%nasty% $file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\%nasty% $file.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\test file.shlexec' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1717: Test failed: ShellExecute(file="C:/users/austin/Temp/wtfb94.tmp/test file.shlexec") argvA4 expected 'C:/users/austin/Temp/wtfb94.tmp/test file.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\%nasty% $file.shlexec' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1717: Test failed: ShellExecute(file="C:\users\austin\Temp\wtfb94.tmp\test file.noassoc.shlexec") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\test file.noassoc.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\test file.shlexec' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1715: Test failed: ShellExecute(verb="QuotedLowerL", file="C:\users\austin\Temp\wtfb94.tmp\test file.shlexec") argvA3 expected 'QuotedLowerL', got 'Open' shlexec.c:1717: Test failed: ShellExecute(verb="QuotedLowerL", file="C:\users\austin\Temp\wtfb94.tmp\test file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\test file.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\test file.noassoc.shlexec' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1715: Test failed: ShellExecute(verb="QuotedUpperL", file="C:\users\austin\Temp\wtfb94.tmp\test file.shlexec") argvA3 expected 'QuotedUpperL', got 'Open' shlexec.c:1717: Test failed: ShellExecute(verb="QuotedUpperL", file="C:\users\austin\Temp\wtfb94.tmp\test file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\test file.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\test file.noassoc.shlexec' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1715: Test failed: ShellExecute(verb="averb", file="C:\users\austin\Temp\wtfb94.tmp\test file.sha") argvA3 expected 'averb', got 'QuotedLowerL' shlexec.c:1717: Test failed: ShellExecute(verb="averb", file="C:\users\austin\Temp\wtfb94.tmp\test file.sha") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\test file.sha', got 'C:\users\austin\Temp\wtfb94.tmp\test file.shlexec' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1715: Test failed: ShellExecute(file="C:\users\austin\Temp\wtfb94.tmp\masked file.shlexec") argvA3 expected 'Open', got 'AVerb' shlexec.c:1717: Test failed: ShellExecute(file="C:\users\austin\Temp\wtfb94.tmp\masked file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\masked file.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\test file.sha' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1775: Test failed: ShellExecute(file=""C:\users\austin\Temp\wtfb94.tmp\test file.shlexec"") argcA expected 5, but got 6 shlexec.c:1776: Test failed: ShellExecute(file=""C:\users\austin\Temp\wtfb94.tmp\test file.shlexec"") argvA3 expected 'Open', got 'UpperL' shlexec.c:1778: Test failed: ShellExecute(file=""C:\users\austin\Temp\wtfb94.tmp\test file.shlexec"") argvA4 expected 'C:\users\austin\Temp\wtfb94.tmp\test file.shlexec', got 'C:\users\austin\Temp\wtfb94.tmp\test' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1888: Test succeeded inside todo block: ShellExecute(verb="", file="file://///C|/users/austin/Temp/wtfb94.tmp/test_shortcut_shlexec.lnk") WaitForSingleObject returned 0 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1946: Test failed: ShellExecute(file="shlproto://foo/bar") WaitForSingleObject returned 258 shlexec.c:1949: Test failed: ShellExecute(file="shlproto://foo/bar") argvA3 expected 'URL', but key not found or empty shlexec.c:1950: Test failed: ShellExecute(file="shlproto://foo/bar") argvA4 expected 'shlproto://foo/bar', but key not found or empty preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1971: Test failed: ShellExecute(verb="averb", file="shlproto://foo/bar") argvA3 expected 'AVerb', but key not found or empty shlexec.c:1972: Test failed: ShellExecute(verb="averb", file="shlproto://foo/bar") argvA4 expected 'shlproto://foo/bar', but key not found or empty shlexec.c:1976: Test succeeded inside todo block: ShellExecute(verb="", file="shlproto://foo/bar.lnk") WaitForSingleObject returned 0 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1983: Test failed: ShellExecute(file="shlproto://foo/bar.exe") WaitForSingleObject returned 258 shlexec.c:1986: Test failed: ShellExecute(file="shlproto://foo/bar.exe") argvA3 expected 'URL', but key not found or empty shlexec.c:1987: Test failed: ShellExecute(file="shlproto://foo/bar.exe") argvA4 expected 'shlproto://foo/bar.exe', but key not found or empty preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:1990: Test failed: ShellExecute(file="shlproto://foo/bar", params="shlexec.shlexec") WaitForSingleObject returned 258 shlexec.c:1993: Test failed: ShellExecute(file="shlproto://foo/bar", params="shlexec.shlexec") argvA3 expected 'URL', but key not found or empty shlexec.c:1994: Test failed: ShellExecute(file="shlproto://foo/bar", params="shlexec.shlexec") argvA4 expected 'shlproto://foo/bar', but key not found or empty preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:2007: Test failed: ShellExecute(verb="", file="%urlprefix%foo") WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:2183: Test succeeded inside todo block: ShellExecuteEx(mask="0x808240", file="%TMPDIR%\test_shortcut_shlexec.lnk") WaitForSingleObject returned 0 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlexec.c:2276: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtfb94.tmp\test file.noassoc", params="shlexec "C:\users\austin\Temp\wtfb94.tmp\wtfbc9.tmp" Exec") WaitForSingleObject returned 258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Usage: Z:\home\austin\wine-valgrind\dlls\shell32\tests\shell32_test.exe.so test_name Valid test names: appbar assoc autocomplete brsfolder ebrowser generated progman_dde recyclebin shelldispatch shelllink shellole shellpath shfldr_special shlexec shlfileop shlfolder shlview string systray shlexec.c:2298: Test succeeded inside todo block: ShellExecuteEx(mask="0x8440", verb="notaverb", file="Z:\home\austin\wine-valgrind\dlls\shell32\tests\shell32_test.exe.so") WaitForSingleObject returned 0 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Makefile:654: recipe for target 'shlexec.ok' failed make[1]: *** [shlexec.ok] Error 35 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shlfileop && touch shlfileop.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 shlfileop.c:649: Tests skipped: Test would show a dialog box ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shlfolder && touch shlfolder.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so shlview && touch shlview.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shell32.dll -p shell32_test.exe.so systray && touch systray.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/shell32/tests' Makefile:16029: recipe for target 'dlls/shell32/tests/test' failed make: *** [dlls/shell32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/shlwapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so assoc && touch assoc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so clist && touch clist.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so clsid && touch clsid.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so istream && touch istream.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so ordinal && touch ordinal.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ordinal.c:220: Tests skipped: RegOpenKey(Software\Microsoft\Internet Explorer\International) failed: 2 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ordinal.c:2140: Tests skipped: No compatibility class data found ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so path && touch path.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so shreg && touch shreg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so thread && touch thread.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M shlwapi.dll -p shlwapi_test.exe.so url && touch url.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/shlwapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/slc/tests' ../../../tools/runtest -q -P wine -T ../../.. -M slc.dll -p slc_test.exe.so slc && touch slc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/slc/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/snmpapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M snmpapi.dll -p snmpapi_test.exe.so util && touch util.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/snmpapi/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/spoolss/tests' ../../../tools/runtest -q -P wine -T ../../.. -M spoolss.dll -p spoolss_test.exe.so spoolss && touch spoolss.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/spoolss/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/sti/tests' ../../../tools/runtest -q -P wine -T ../../.. -M sti.dll -p sti_test.exe.so sti && touch sti.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/sti/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/sxs/tests' ../../../tools/runtest -q -P wine -T ../../.. -M sxs.dll -p sxs_test.exe.so cache && touch cache.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M sxs.dll -p sxs_test.exe.so name && touch name.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/sxs/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/t2embed/tests' ../../../tools/runtest -q -P wine -T ../../.. -M t2embed.dll -p t2embed_test.exe.so t2embed && touch t2embed.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/t2embed/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/taskschd/tests' ../../../tools/runtest -q -P wine -T ../../.. -M taskschd.dll -p taskschd_test.exe.so scheduler && touch scheduler.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/taskschd/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/twain_32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M twain_32.dll -p twain_32_test.exe.so dsm && touch dsm.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/twain_32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ucrtbase/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ucrtbase.dll -p ucrtbase_test.exe.so cpp && touch cpp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ucrtbase.dll -p ucrtbase_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ucrtbase.dll -p ucrtbase_test.exe.so printf && touch printf.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ucrtbase.dll -p ucrtbase_test.exe.so string && touch string.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ucrtbase/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/urlmon/tests' ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so misc && touch misc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so protocol && touch protocol.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 protocol.c:1078: Test failed: unexpected call ReportResult protocol.c:1083: Test failed: hrResult = 00000000, expected: 80004004 protocol.c:2964: Test failed: Read failed: 00000001 ==2983== 192 bytes in 2 blocks are possibly lost in loss record 663 of 907 ==2983== at 0x7BC5067C: notify_alloc (heap.c:254) ==2983== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==2983== by 0x5B690F1: heap_alloc_zero (internet.h:99) ==2983== by 0x5B6A3E4: create_netconn (netconnection.c:348) ==2983== by 0x5B59A82: open_http_connection (http.c:4848) ==2983== by 0x5B5A1C1: HTTP_HttpSendRequestW (http.c:4989) ==2983== by 0x5B5B098: AsyncHttpSendRequestProc (http.c:5258) ==2983== by 0x5B67020: INTERNET_WorkerThreadFunc (internet.c:3724) ==2983== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==2983== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==2983== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==2983== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==2983== by 0x7BC8F869: ??? (signal_i386.c:2709) ==2983== by 0x7BC9953E: start_thread (thread.c:453) ==2983== by 0x4243250: start_thread (pthread_create.c:334) ==2983== by 0x4341B2D: clone (clone.S:122) ==2983== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } Makefile:239: recipe for target 'protocol.ok' failed make[1]: *** [protocol.ok] Error 3 ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so sec_mgr && touch sec_mgr.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so stream && touch stream.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so uri && touch uri.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M urlmon.dll -p urlmon_test.exe.so url && touch url.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3060== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp3060_529248b0 is empty ==3060== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==3060== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp3060_529248b0 is empty ==3060== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==3060== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp3060_529248b0 is empty ==3060== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==3060== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp3060_529248b0 is empty ==3060== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==3060== 8 bytes in 1 blocks are definitely lost in loss record 125 of 2,682 ==3060== at 0x7BC5067C: notify_alloc (heap.c:254) ==3060== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3060== by 0x958E09E: SECUR32_makeSecHandle (wrapper.c:44) ==3060== by 0x958EB1C: InitializeSecurityContextW (wrapper.c:354) ==3060== by 0x5B5A833: netcon_secure_connect_setup (netconnection.c:467) ==3060== by 0x5B5B170: NETCON_secure_connect (netconnection.c:617) ==3060== by 0x5B4A234: HTTP_HttpSendRequestW (http.c:4998) ==3060== by 0x5B4B098: AsyncHttpSendRequestProc (http.c:5258) ==3060== by 0x5B57020: INTERNET_WorkerThreadFunc (internet.c:3724) ==3060== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==3060== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==3060== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3060== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3060== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3060== by 0x7BC9953E: start_thread (thread.c:453) ==3060== by 0x4243250: start_thread (pthread_create.c:334) ==3060== by 0x4341B2D: clone (clone.S:122) ==3060== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:SECUR32_makeSecHandle fun:InitializeSecurityContextW fun:netcon_secure_connect_setup fun:NETCON_secure_connect fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3060== 96 bytes in 1 blocks are definitely lost in loss record 1,803 of 2,682 ==3060== at 0x7BC5067C: notify_alloc (heap.c:254) ==3060== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3060== by 0x5B590F1: heap_alloc_zero (internet.h:99) ==3060== by 0x5B5A3E4: create_netconn (netconnection.c:348) ==3060== by 0x5B49A82: open_http_connection (http.c:4848) ==3060== by 0x5B4A1C1: HTTP_HttpSendRequestW (http.c:4989) ==3060== by 0x5B4B098: AsyncHttpSendRequestProc (http.c:5258) ==3060== by 0x5B57020: INTERNET_WorkerThreadFunc (internet.c:3724) ==3060== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==3060== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==3060== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3060== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3060== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3060== by 0x7BC9953E: start_thread (thread.c:453) ==3060== by 0x4243250: start_thread (pthread_create.c:334) ==3060== by 0x4341B2D: clone (clone.S:122) ==3060== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3060== 128 bytes in 4 blocks are possibly lost in loss record 1,902 of 2,682 ==3060== at 0x7BC5067C: notify_alloc (heap.c:254) ==3060== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3060== by 0x7BC3BBAB: RtlInitializeCriticalSectionEx (critsection.c:326) ==3060== by 0x7B47E20B: InitializeCriticalSectionEx (sync.c:359) ==3060== by 0x7B47E1D9: InitializeCriticalSectionAndSpinCount (sync.c:337) ==3060== by 0x6A0D8113: ??? ==3060== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==3060== 384 bytes in 4 blocks are possibly lost in loss record 2,203 of 2,682 ==3060== at 0x7BC5067C: notify_alloc (heap.c:254) ==3060== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3060== by 0x5B590F1: heap_alloc_zero (internet.h:99) ==3060== by 0x5B5A3E4: create_netconn (netconnection.c:348) ==3060== by 0x5B49A82: open_http_connection (http.c:4848) ==3060== by 0x5B4A1C1: HTTP_HttpSendRequestW (http.c:4989) ==3060== by 0x5B4B098: AsyncHttpSendRequestProc (http.c:5258) ==3060== by 0x5B57020: INTERNET_WorkerThreadFunc (internet.c:3724) ==3060== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==3060== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==3060== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3060== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3060== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3060== by 0x7BC9953E: start_thread (thread.c:453) ==3060== by 0x4243250: start_thread (pthread_create.c:334) ==3060== by 0x4341B2D: clone (clone.S:122) ==3060== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3060== 864 bytes in 13 blocks are possibly lost in loss record 2,375 of 2,682 ==3060== at 0x7BC5067C: notify_alloc (heap.c:254) ==3060== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3060== by 0x4CD7870: IMalloc_fnAlloc (ifs.c:187) ==3060== by 0x4CD810F: IMalloc_Alloc (objidl.h:1508) ==3060== by 0x4CD810F: CoTaskMemAlloc (???:0) ==3060== by 0x54EE9BE: alloc_bstr (oleaut.c:177) ==3060== by 0x54EED85: SysAllocStringLen (oleaut.c:355) ==3060== by 0x4C04B8B: pre_process_uri (uri.c:786) ==3060== by 0x4C1207E: CreateUri (uri.c:5738) ==3060== by 0x757AD32: create_uri (persist.c:185) ==3060== by 0x756B7CB: nsIOServiceHook_NewURI (nsio.c:3890) ==3060== by 0x69F3AFD9: ??? ==3060== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc fun:alloc_bstr fun:SysAllocStringLen fun:pre_process_uri fun:CreateUri fun:create_uri fun:nsIOServiceHook_NewURI obj:* } ==3060== 986 bytes in 3 blocks are possibly lost in loss record 2,389 of 2,682 ==3060== at 0x7BC5067C: notify_alloc (heap.c:254) ==3060== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==3060== by 0x8F0DFF2: msvcrt_heap_realloc (heap.c:102) ==3060== by 0x8F0EBA5: MSVCRT_realloc (heap.c:457) ==3060== by 0x69E78C00: ??? ==3060== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/urlmon/tests' Makefile:16984: recipe for target 'dlls/urlmon/tests/test' failed make: *** [dlls/urlmon/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/user32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so broadcast && touch broadcast.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so class && touch class.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so clipboard && touch clipboard.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3332== Syscall param writev(vector[...]) points to uninitialised byte(s) ==3332== at 0x4339523: __writev_nocancel (syscall-template.S:84) ==3332== by 0x7BC87A4F: send_request (server.c:228) ==3332== by 0x7BC87C02: wine_server_call (server.c:309) ==3332== by 0x4CFD5E2: SetClipboardData (clipboard.c:904) ==3332== by 0x4A22D9F: test_RegisterClipboardFormatA (clipboard.c:434) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48ec878 is 8 bytes inside a block of size 9 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Uninitialised value was created by a client request ==3332== at 0x7BC5044B: mark_block_uninitialized (heap.c:208) ==3332== by 0x7BC505D7: initialize_block (heap.c:239) ==3332== by 0x7BC54B1D: RtlAllocateHeap (heap.c:1717) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Param writev(vector[...]) fun:__writev_nocancel fun:send_request fun:wine_server_call fun:SetClipboardData fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3341== 8 bytes in 1 blocks are possibly lost in loss record 47 of 573 ==3341== at 0x7BC5067C: notify_alloc (heap.c:254) ==3341== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3341== by 0x7B449700: HeapAlloc (heap.c:271) ==3341== by 0x7B449961: GlobalAlloc (heap.c:377) ==3341== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3341== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3341== by 0x4B23200: run_test (test.h:589) ==3341== by 0x4B2362C: main (test.h:671) ==3341== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3341== 9 bytes in 1 blocks are definitely lost in loss record 49 of 573 ==3341== at 0x7BC5067C: notify_alloc (heap.c:254) ==3341== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3341== by 0x7B449700: HeapAlloc (heap.c:271) ==3341== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3341== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3341== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3341== by 0x4B23200: run_test (test.h:589) ==3341== by 0x4B2362C: main (test.h:671) ==3341== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3341== 100 bytes in 1 blocks are definitely lost in loss record 367 of 573 ==3341== at 0x7BC5067C: notify_alloc (heap.c:254) ==3341== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3341== by 0x7B449700: HeapAlloc (heap.c:271) ==3341== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3341== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3341== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3341== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3341== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3341== by 0x7BC9953E: start_thread (thread.c:453) ==3341== by 0x4243250: start_thread (pthread_create.c:334) ==3341== by 0x4341B2D: clone (clone.S:122) ==3341== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3342== 100 bytes in 1 blocks are definitely lost in loss record 298 of 467 ==3342== at 0x7BC5067C: notify_alloc (heap.c:254) ==3342== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3342== by 0x7B449700: HeapAlloc (heap.c:271) ==3342== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3342== by 0x4A05B5E: set_clipboard_data_process (clipboard.c:118) ==3342== by 0x4A158E6: func_clipboard (clipboard.c:2413) ==3342== by 0x4B08200: run_test (test.h:589) ==3342== by 0x4B0862C: main (test.h:671) ==3342== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_process fun:func_clipboard fun:run_test fun:main } ==3345== 8 bytes in 1 blocks are possibly lost in loss record 47 of 576 ==3345== at 0x7BC5067C: notify_alloc (heap.c:254) ==3345== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3345== by 0x7B449700: HeapAlloc (heap.c:271) ==3345== by 0x7B449961: GlobalAlloc (heap.c:377) ==3345== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3345== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3345== by 0x4B23200: run_test (test.h:589) ==3345== by 0x4B2362C: main (test.h:671) ==3345== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3345== 9 bytes in 1 blocks are definitely lost in loss record 49 of 576 ==3345== at 0x7BC5067C: notify_alloc (heap.c:254) ==3345== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3345== by 0x7B449700: HeapAlloc (heap.c:271) ==3345== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3345== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3345== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3345== by 0x4B23200: run_test (test.h:589) ==3345== by 0x4B2362C: main (test.h:671) ==3345== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3345== 100 bytes in 1 blocks are definitely lost in loss record 369 of 576 ==3345== at 0x7BC5067C: notify_alloc (heap.c:254) ==3345== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3345== by 0x7B449700: HeapAlloc (heap.c:271) ==3345== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3345== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3345== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3345== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3345== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3345== by 0x7BC9953E: start_thread (thread.c:453) ==3345== by 0x4243250: start_thread (pthread_create.c:334) ==3345== by 0x4341B2D: clone (clone.S:122) ==3345== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3351== 8 bytes in 1 blocks are possibly lost in loss record 47 of 577 ==3351== at 0x7BC5067C: notify_alloc (heap.c:254) ==3351== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3351== by 0x7B449700: HeapAlloc (heap.c:271) ==3351== by 0x7B449961: GlobalAlloc (heap.c:377) ==3351== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3351== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3351== by 0x4B23200: run_test (test.h:589) ==3351== by 0x4B2362C: main (test.h:671) ==3351== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3351== 9 bytes in 1 blocks are definitely lost in loss record 49 of 577 ==3351== at 0x7BC5067C: notify_alloc (heap.c:254) ==3351== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3351== by 0x7B449700: HeapAlloc (heap.c:271) ==3351== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3351== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3351== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3351== by 0x4B23200: run_test (test.h:589) ==3351== by 0x4B2362C: main (test.h:671) ==3351== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3351== 100 bytes in 1 blocks are definitely lost in loss record 369 of 577 ==3351== at 0x7BC5067C: notify_alloc (heap.c:254) ==3351== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3351== by 0x7B449700: HeapAlloc (heap.c:271) ==3351== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3351== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3351== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3351== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3351== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3351== by 0x7BC9953E: start_thread (thread.c:453) ==3351== by 0x4243250: start_thread (pthread_create.c:334) ==3351== by 0x4341B2D: clone (clone.S:122) ==3351== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3355== 8 bytes in 1 blocks are possibly lost in loss record 47 of 565 ==3355== at 0x7BC5067C: notify_alloc (heap.c:254) ==3355== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3355== by 0x7B449700: HeapAlloc (heap.c:271) ==3355== by 0x7B449961: GlobalAlloc (heap.c:377) ==3355== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3355== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3355== by 0x4B23200: run_test (test.h:589) ==3355== by 0x4B2362C: main (test.h:671) ==3355== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3355== 9 bytes in 1 blocks are definitely lost in loss record 49 of 565 ==3355== at 0x7BC5067C: notify_alloc (heap.c:254) ==3355== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3355== by 0x7B449700: HeapAlloc (heap.c:271) ==3355== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3355== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3355== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3355== by 0x4B23200: run_test (test.h:589) ==3355== by 0x4B2362C: main (test.h:671) ==3355== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3355== 100 bytes in 1 blocks are definitely lost in loss record 361 of 565 ==3355== at 0x7BC5067C: notify_alloc (heap.c:254) ==3355== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3355== by 0x7B449700: HeapAlloc (heap.c:271) ==3355== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3355== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3355== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3355== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3355== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3355== by 0x7BC9953E: start_thread (thread.c:453) ==3355== by 0x4243250: start_thread (pthread_create.c:334) ==3355== by 0x4341B2D: clone (clone.S:122) ==3355== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3361== 8 bytes in 1 blocks are possibly lost in loss record 47 of 566 ==3361== at 0x7BC5067C: notify_alloc (heap.c:254) ==3361== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3361== by 0x7B449700: HeapAlloc (heap.c:271) ==3361== by 0x7B449961: GlobalAlloc (heap.c:377) ==3361== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3361== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3361== by 0x4B23200: run_test (test.h:589) ==3361== by 0x4B2362C: main (test.h:671) ==3361== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3361== 9 bytes in 1 blocks are definitely lost in loss record 49 of 566 ==3361== at 0x7BC5067C: notify_alloc (heap.c:254) ==3361== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3361== by 0x7B449700: HeapAlloc (heap.c:271) ==3361== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3361== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3361== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3361== by 0x4B23200: run_test (test.h:589) ==3361== by 0x4B2362C: main (test.h:671) ==3361== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3361== 100 bytes in 1 blocks are definitely lost in loss record 361 of 566 ==3361== at 0x7BC5067C: notify_alloc (heap.c:254) ==3361== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3361== by 0x7B449700: HeapAlloc (heap.c:271) ==3361== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3361== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3361== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3361== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3361== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3361== by 0x7BC9953E: start_thread (thread.c:453) ==3361== by 0x4243250: start_thread (pthread_create.c:334) ==3361== by 0x4341B2D: clone (clone.S:122) ==3361== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3332== Thread 2: ==3332== Syscall param writev(vector[...]) points to uninitialised byte(s) ==3332== at 0x433954B: ??? (syscall-template.S:84) ==3332== by 0x7BC87A4F: send_request (server.c:228) ==3332== by 0x7BC87C02: wine_server_call (server.c:309) ==3332== by 0x4CFD5E2: SetClipboardData (clipboard.c:904) ==3332== by 0x4A28919: clipboard_thread (clipboard.c:1318) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x48e1ca0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== Uninitialised value was created by a client request ==3332== at 0x7BC5044B: mark_block_uninitialized (heap.c:208) ==3332== by 0x7BC505D7: initialize_block (heap.c:239) ==3332== by 0x7BC54B1D: RtlAllocateHeap (heap.c:1717) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3332== by 0x4A2890B: clipboard_thread (clipboard.c:1318) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== { Memcheck:Param writev(vector[...]) obj:/lib32/libc-2.22.so fun:send_request fun:wine_server_call fun:SetClipboardData fun:clipboard_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3368== Thread 1 user32_test.exe.so: ==3368== 8 bytes in 1 blocks are possibly lost in loss record 60 of 691 ==3368== at 0x7BC5067C: notify_alloc (heap.c:254) ==3368== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3368== by 0x7B449700: HeapAlloc (heap.c:271) ==3368== by 0x7B449961: GlobalAlloc (heap.c:377) ==3368== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3368== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3368== by 0x4B23200: run_test (test.h:589) ==3368== by 0x4B2362C: main (test.h:671) ==3368== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3368== 9 bytes in 1 blocks are definitely lost in loss record 62 of 691 ==3368== at 0x7BC5067C: notify_alloc (heap.c:254) ==3368== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3368== by 0x7B449700: HeapAlloc (heap.c:271) ==3368== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3368== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3368== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3368== by 0x4B23200: run_test (test.h:589) ==3368== by 0x4B2362C: main (test.h:671) ==3368== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3368== 100 bytes in 1 blocks are definitely lost in loss record 426 of 691 ==3368== at 0x7BC5067C: notify_alloc (heap.c:254) ==3368== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3368== by 0x7B449700: HeapAlloc (heap.c:271) ==3368== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3368== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3368== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3368== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3368== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3368== by 0x7BC9953E: start_thread (thread.c:453) ==3368== by 0x4243250: start_thread (pthread_create.c:334) ==3368== by 0x4341B2D: clone (clone.S:122) ==3368== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3368== 100 bytes in 1 blocks are definitely lost in loss record 427 of 691 ==3368== at 0x7BC5067C: notify_alloc (heap.c:254) ==3368== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3368== by 0x7B449700: HeapAlloc (heap.c:271) ==3368== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3368== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3368== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3368== by 0x4B23200: run_test (test.h:589) ==3368== by 0x4B2362C: main (test.h:671) ==3368== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3372== Thread 1 user32_test.exe.so: ==3372== 8 bytes in 1 blocks are possibly lost in loss record 60 of 691 ==3372== at 0x7BC5067C: notify_alloc (heap.c:254) ==3372== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3372== by 0x7B449700: HeapAlloc (heap.c:271) ==3372== by 0x7B449961: GlobalAlloc (heap.c:377) ==3372== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3372== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3372== by 0x4B23200: run_test (test.h:589) ==3372== by 0x4B2362C: main (test.h:671) ==3372== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3372== 9 bytes in 1 blocks are definitely lost in loss record 62 of 691 ==3372== at 0x7BC5067C: notify_alloc (heap.c:254) ==3372== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3372== by 0x7B449700: HeapAlloc (heap.c:271) ==3372== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3372== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3372== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3372== by 0x4B23200: run_test (test.h:589) ==3372== by 0x4B2362C: main (test.h:671) ==3372== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3372== 100 bytes in 1 blocks are definitely lost in loss record 426 of 691 ==3372== at 0x7BC5067C: notify_alloc (heap.c:254) ==3372== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3372== by 0x7B449700: HeapAlloc (heap.c:271) ==3372== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3372== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3372== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3372== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3372== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3372== by 0x7BC9953E: start_thread (thread.c:453) ==3372== by 0x4243250: start_thread (pthread_create.c:334) ==3372== by 0x4341B2D: clone (clone.S:122) ==3372== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3372== 100 bytes in 1 blocks are definitely lost in loss record 427 of 691 ==3372== at 0x7BC5067C: notify_alloc (heap.c:254) ==3372== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3372== by 0x7B449700: HeapAlloc (heap.c:271) ==3372== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3372== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3372== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3372== by 0x4B23200: run_test (test.h:589) ==3372== by 0x4B2362C: main (test.h:671) ==3372== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3382== Thread 1 user32_test.exe.so: ==3382== 8 bytes in 1 blocks are possibly lost in loss record 60 of 690 ==3382== at 0x7BC5067C: notify_alloc (heap.c:254) ==3382== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3382== by 0x7B449700: HeapAlloc (heap.c:271) ==3382== by 0x7B449961: GlobalAlloc (heap.c:377) ==3382== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3382== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3382== by 0x4B23200: run_test (test.h:589) ==3382== by 0x4B2362C: main (test.h:671) ==3382== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3382== 9 bytes in 1 blocks are definitely lost in loss record 62 of 690 ==3382== at 0x7BC5067C: notify_alloc (heap.c:254) ==3382== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3382== by 0x7B449700: HeapAlloc (heap.c:271) ==3382== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3382== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3382== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3382== by 0x4B23200: run_test (test.h:589) ==3382== by 0x4B2362C: main (test.h:671) ==3382== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3382== 100 bytes in 1 blocks are definitely lost in loss record 425 of 690 ==3382== at 0x7BC5067C: notify_alloc (heap.c:254) ==3382== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3382== by 0x7B449700: HeapAlloc (heap.c:271) ==3382== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3382== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3382== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3382== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3382== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3382== by 0x7BC9953E: start_thread (thread.c:453) ==3382== by 0x4243250: start_thread (pthread_create.c:334) ==3382== by 0x4341B2D: clone (clone.S:122) ==3382== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3382== 100 bytes in 1 blocks are definitely lost in loss record 426 of 690 ==3382== at 0x7BC5067C: notify_alloc (heap.c:254) ==3382== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3382== by 0x7B449700: HeapAlloc (heap.c:271) ==3382== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3382== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3382== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3382== by 0x4B23200: run_test (test.h:589) ==3382== by 0x4B2362C: main (test.h:671) ==3382== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3385== Thread 1 user32_test.exe.so: ==3385== 8 bytes in 1 blocks are possibly lost in loss record 60 of 690 ==3385== at 0x7BC5067C: notify_alloc (heap.c:254) ==3385== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3385== by 0x7B449700: HeapAlloc (heap.c:271) ==3385== by 0x7B449961: GlobalAlloc (heap.c:377) ==3385== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3385== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3385== by 0x4B23200: run_test (test.h:589) ==3385== by 0x4B2362C: main (test.h:671) ==3385== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3385== 9 bytes in 1 blocks are definitely lost in loss record 62 of 690 ==3385== at 0x7BC5067C: notify_alloc (heap.c:254) ==3385== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3385== by 0x7B449700: HeapAlloc (heap.c:271) ==3385== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3385== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3385== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3385== by 0x4B23200: run_test (test.h:589) ==3385== by 0x4B2362C: main (test.h:671) ==3385== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3385== 100 bytes in 1 blocks are definitely lost in loss record 425 of 690 ==3385== at 0x7BC5067C: notify_alloc (heap.c:254) ==3385== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3385== by 0x7B449700: HeapAlloc (heap.c:271) ==3385== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3385== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3385== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3385== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3385== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3385== by 0x7BC9953E: start_thread (thread.c:453) ==3385== by 0x4243250: start_thread (pthread_create.c:334) ==3385== by 0x4341B2D: clone (clone.S:122) ==3385== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3385== 100 bytes in 1 blocks are definitely lost in loss record 426 of 690 ==3385== at 0x7BC5067C: notify_alloc (heap.c:254) ==3385== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3385== by 0x7B449700: HeapAlloc (heap.c:271) ==3385== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3385== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3385== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3385== by 0x4B23200: run_test (test.h:589) ==3385== by 0x4B2362C: main (test.h:671) ==3385== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3332== Thread 1 user32_test.exe.so: ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B421: test_handles (clipboard.c:1735) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d9100 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B87F: test_handles (clipboard.c:1766) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x490bfd8 is 0 bytes after a block of size 0 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x55B0AE3: sync_window_text (window.c:466) ==3332== by 0x55B3E55: create_whole_window (window.c:1523) ==3332== by 0x55B4D7A: X11DRV_create_win_data (window.c:1860) ==3332== by 0x55B5C12: X11DRV_WindowPosChanging (window.c:2214) ==3332== by 0x4D9447B: set_window_pos (winpos.c:2070) ==3332== by 0x4D88471: WIN_CreateWindowEx (win.c:1599) ==3332== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3332== by 0x4A238C2: test_synthesized (clipboard.c:605) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x55B09ED: sync_window_text (window.c:445) ==3332== by 0x55B3E55: create_whole_window (window.c:1523) ==3332== by 0x55B4D7A: X11DRV_create_win_data (window.c:1860) ==3332== by 0x55B5C12: X11DRV_WindowPosChanging (window.c:2214) ==3332== by 0x4D9447B: set_window_pos (winpos.c:2070) ==3332== by 0x4D88471: WIN_CreateWindowEx (win.c:1599) ==3332== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3332== by 0x4A238C2: test_synthesized (clipboard.c:605) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B8BC: test_handles (clipboard.c:1767) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48da660 is 0 bytes inside a block of size 10 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4FCCDD6: load_font_list_from_cache (freetype.c:1781) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCB17C: strdupW (freetype.c:1098) ==3332== by 0x4FCCD41: load_font_list_from_cache (freetype.c:1773) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B8F9: test_handles (clipboard.c:1768) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d9888 is 16 bytes after a recently re-allocated block of size 24 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCB17C: strdupW (freetype.c:1098) ==3332== by 0x4FCC629: load_face (freetype.c:1650) ==3332== by 0x4FCCD9B: load_font_list_from_cache (freetype.c:1778) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B936: test_handles (clipboard.c:1769) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d9428 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B973: test_handles (clipboard.c:1770) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d89e8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C531: test_handles (clipboard.c:1860) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x490bfd8 is 0 bytes after a block of size 0 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x55B0AE3: sync_window_text (window.c:466) ==3332== by 0x55B3E55: create_whole_window (window.c:1523) ==3332== by 0x55B4D7A: X11DRV_create_win_data (window.c:1860) ==3332== by 0x55B5C12: X11DRV_WindowPosChanging (window.c:2214) ==3332== by 0x4D9447B: set_window_pos (winpos.c:2070) ==3332== by 0x4D88471: WIN_CreateWindowEx (win.c:1599) ==3332== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3332== by 0x4A238C2: test_synthesized (clipboard.c:605) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x55B09ED: sync_window_text (window.c:445) ==3332== by 0x55B3E55: create_whole_window (window.c:1523) ==3332== by 0x55B4D7A: X11DRV_create_win_data (window.c:1860) ==3332== by 0x55B5C12: X11DRV_WindowPosChanging (window.c:2214) ==3332== by 0x4D9447B: set_window_pos (winpos.c:2070) ==3332== by 0x4D88471: WIN_CreateWindowEx (win.c:1599) ==3332== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3332== by 0x4A238C2: test_synthesized (clipboard.c:605) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C5A2: test_handles (clipboard.c:1861) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48da660 is 0 bytes inside a block of size 10 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4FCCDD6: load_font_list_from_cache (freetype.c:1781) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCB17C: strdupW (freetype.c:1098) ==3332== by 0x4FCCD41: load_font_list_from_cache (freetype.c:1773) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C613: test_handles (clipboard.c:1862) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d9888 is 16 bytes after a recently re-allocated block of size 24 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCB17C: strdupW (freetype.c:1098) ==3332== by 0x4FCC629: load_face (freetype.c:1650) ==3332== by 0x4FCCD9B: load_font_list_from_cache (freetype.c:1778) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C684: test_handles (clipboard.c:1863) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d9428 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C6F5: test_handles (clipboard.c:1864) ==3332== by 0x4A2DF6A: test_data_handles (clipboard.c:2052) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d89e8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B421: test_handles (clipboard.c:1735) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x490d928 is 19 bytes after a recently re-allocated block of size 13 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A234CF: create_textA (clipboard.c:485) ==3332== by 0x4A2A508: test_handles (clipboard.c:1617) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B87F: test_handles (clipboard.c:1766) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d8138 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B8BC: test_handles (clipboard.c:1767) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d7db0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B8F9: test_handles (clipboard.c:1768) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d76d8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B936: test_handles (clipboard.c:1769) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x490dc80 is 0 bytes inside a block of size 20 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==3332== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==3332== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==3332== by 0x4A24129: test_synthesized (clipboard.c:670) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4CFB9E7: cache_data (clipboard.c:291) ==3332== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==3332== by 0x4A23D96: test_synthesized (clipboard.c:641) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B973: test_handles (clipboard.c:1770) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4901820 is 568 bytes inside a block of size 674 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x7B449730: HeapFree (heap.c:276) ==3332== by 0x7B4450C3: FindClose (file.c:2251) ==3332== by 0x7B463480: GetLongPathNameW (path.c:366) ==3332== by 0x7B46C300: create_startup_info (process.c:1651) ==3332== by 0x7B46D41A: create_process (process.c:2031) ==3332== by 0x7B46E8EC: create_process_impl (process.c:2395) ==3332== by 0x7B46EFA5: CreateProcessA (process.c:2478) ==3332== by 0x4A20EED: run_process (clipboard.c:172) ==3332== by 0x4A222E9: test_ClipboardOwner (clipboard.c:335) ==3332== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B444622: FindFirstFileExW (file.c:2015) ==3332== by 0x7B4453D6: FindFirstFileW (file.c:2312) ==3332== by 0x7B4633DB: GetLongPathNameW (path.c:359) ==3332== by 0x7B46C300: create_startup_info (process.c:1651) ==3332== by 0x7B46D41A: create_process (process.c:2031) ==3332== by 0x7B46E8EC: create_process_impl (process.c:2395) ==3332== by 0x7B46EFA5: CreateProcessA (process.c:2478) ==3332== by 0x4A20EED: run_process (clipboard.c:172) ==3332== by 0x4A222E9: test_ClipboardOwner (clipboard.c:335) ==3332== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C531: test_handles (clipboard.c:1860) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d8138 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C5A2: test_handles (clipboard.c:1861) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d7db0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C613: test_handles (clipboard.c:1862) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48d76d8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4FCC360: create_family (freetype.c:1584) ==3332== by 0x4FCCC76: load_font_list_from_cache (freetype.c:1758) ==3332== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3332== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3332== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3332== by 0x7BC56CF1: ??? (loader.c:143) ==3332== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3332== by 0x7BC59AF9: process_attach (loader.c:1215) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC59A44: process_attach (loader.c:1203) ==3332== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3332== by 0x404019C: ??? (port.c:78) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C684: test_handles (clipboard.c:1863) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x490dc80 is 0 bytes inside a block of size 20 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==3332== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==3332== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==3332== by 0x4A24129: test_synthesized (clipboard.c:670) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4CFB9E7: cache_data (clipboard.c:291) ==3332== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==3332== by 0x4A23D96: test_synthesized (clipboard.c:641) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C6F5: test_handles (clipboard.c:1864) ==3332== by 0x4A2DF7B: test_data_handles (clipboard.c:2053) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4901820 is 568 bytes inside a block of size 674 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x7B449730: HeapFree (heap.c:276) ==3332== by 0x7B4450C3: FindClose (file.c:2251) ==3332== by 0x7B463480: GetLongPathNameW (path.c:366) ==3332== by 0x7B46C300: create_startup_info (process.c:1651) ==3332== by 0x7B46D41A: create_process (process.c:2031) ==3332== by 0x7B46E8EC: create_process_impl (process.c:2395) ==3332== by 0x7B46EFA5: CreateProcessA (process.c:2478) ==3332== by 0x4A20EED: run_process (clipboard.c:172) ==3332== by 0x4A222E9: test_ClipboardOwner (clipboard.c:335) ==3332== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B444622: FindFirstFileExW (file.c:2015) ==3332== by 0x7B4453D6: FindFirstFileW (file.c:2312) ==3332== by 0x7B4633DB: GetLongPathNameW (path.c:359) ==3332== by 0x7B46C300: create_startup_info (process.c:1651) ==3332== by 0x7B46D41A: create_process (process.c:2031) ==3332== by 0x7B46E8EC: create_process_impl (process.c:2395) ==3332== by 0x7B46EFA5: CreateProcessA (process.c:2478) ==3332== by 0x4A20EED: run_process (clipboard.c:172) ==3332== by 0x4A222E9: test_ClipboardOwner (clipboard.c:335) ==3332== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B421: test_handles (clipboard.c:1735) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x49128c0 is 19 bytes after a recently re-allocated block of size 13 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A234CF: create_textA (clipboard.c:485) ==3332== by 0x4A2A508: test_handles (clipboard.c:1617) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C531: test_handles (clipboard.c:1860) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x49161f8 is 0 bytes inside a block of size 20 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==3332== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==3332== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==3332== by 0x4A24779: test_synthesized (clipboard.c:716) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4CFB9E7: cache_data (clipboard.c:291) ==3332== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==3332== by 0x4A25335: test_synthesized (clipboard.c:827) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C5A2: test_handles (clipboard.c:1861) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4916098 is 4 bytes after a block of size 20 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==3332== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==3332== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==3332== by 0x4A24E1E: test_synthesized (clipboard.c:788) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4CFB9E7: cache_data (clipboard.c:291) ==3332== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==3332== by 0x4A24BB8: test_synthesized (clipboard.c:766) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C613: test_handles (clipboard.c:1862) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4912850 is 184 bytes inside a block of size 368 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4F69FBF: free_dc_state (dc.c:171) ==3332== by 0x4F6A0BA: free_dc_ptr (dc.c:193) ==3332== by 0x4FEE75A: CloseMetaFile (init.c:464) ==3332== by 0x4FEBCE5: GetWinMetaFileBits (metafile.c:1277) ==3332== by 0x4CFC419: render_synthesized_metafile (clipboard.c:542) ==3332== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==3332== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==3332== by 0x4A2408A: test_synthesized (clipboard.c:664) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4F69D63: alloc_dc_ptr (dc.c:131) ==3332== by 0x4FEDFB5: MFDRV_AllocMetaFile (init.c:242) ==3332== by 0x4FEE2A4: CreateMetaFileW (init.c:328) ==3332== by 0x4FEBC60: GetWinMetaFileBits (metafile.c:1269) ==3332== by 0x4CFC419: render_synthesized_metafile (clipboard.c:542) ==3332== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==3332== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==3332== by 0x4A2408A: test_synthesized (clipboard.c:664) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C684: test_handles (clipboard.c:1863) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4912888 is 240 bytes inside a block of size 368 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4F69FBF: free_dc_state (dc.c:171) ==3332== by 0x4F6A0BA: free_dc_ptr (dc.c:193) ==3332== by 0x4FEE75A: CloseMetaFile (init.c:464) ==3332== by 0x4FEBCE5: GetWinMetaFileBits (metafile.c:1277) ==3332== by 0x4CFC419: render_synthesized_metafile (clipboard.c:542) ==3332== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==3332== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==3332== by 0x4A2408A: test_synthesized (clipboard.c:664) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4F69D63: alloc_dc_ptr (dc.c:131) ==3332== by 0x4FEDFB5: MFDRV_AllocMetaFile (init.c:242) ==3332== by 0x4FEE2A4: CreateMetaFileW (init.c:328) ==3332== by 0x4FEBC60: GetWinMetaFileBits (metafile.c:1269) ==3332== by 0x4CFC419: render_synthesized_metafile (clipboard.c:542) ==3332== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==3332== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==3332== by 0x4A2408A: test_synthesized (clipboard.c:664) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C6F5: test_handles (clipboard.c:1864) ==3332== by 0x4A2DF89: test_data_handles (clipboard.c:2054) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x490d858 is 16 bytes inside a block of size 20 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==3332== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==3332== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==3332== by 0x4A24129: test_synthesized (clipboard.c:670) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x4CFD519: SetClipboardData (clipboard.c:892) ==3332== by 0x4A23A05: test_synthesized (clipboard.c:617) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3332== Thread 2: ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2B421: test_handles (clipboard.c:1735) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x48d1618 is 19 bytes after a recently re-allocated block of size 13 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A234CF: create_textA (clipboard.c:485) ==3332== by 0x4A2A508: test_handles (clipboard.c:1617) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_handles_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C531: test_handles (clipboard.c:1860) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x48d1588 is 16 bytes after a recently re-allocated block of size 40 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B46A57F: init_windows_dirs (process.c:964) ==3332== by 0x7B46B08E: __wine_kernel_init (process.c:1211) ==3332== by 0x7BC5FA63: __wine_process_init (loader.c:3312) ==3332== by 0x403F59A: wine_init (loader.c:956) ==3332== by 0x7C000F7F: main (main.c:254) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_handles_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C5A2: test_handles (clipboard.c:1861) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x48d14f8 is 16 bytes after a recently re-allocated block of size 48 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x55C6CA0: create_xrender_dc (xrender.c:881) ==3332== by 0x55C6EA4: xrenderdrv_CreateDC (xrender.c:927) ==3332== by 0x559120F: X11DRV_CreateDC (init.c:130) ==3332== by 0x4F6B81D: CreateDCW (dc.c:657) ==3332== by 0x4F6BAEF: CreateICW (dc.c:731) ==3332== by 0x4D740F3: get_display_dc (sysparams.c:611) ==3332== by 0x4D79A05: GetSystemMetrics (sysparams.c:2379) ==3332== by 0x4D85331: WIN_GetRectangles (win.c:838) ==3332== by 0x4D8F4D8: GetClientRect (winpos.c:234) ==3332== by 0x4D909E3: WINPOS_GetMinMaxInfo (winpos.c:764) ==3332== by 0x4D88322: WIN_CreateWindowEx (win.c:1586) ==3332== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3332== by 0x4A2A168: test_messages (clipboard.c:1547) ==3332== by 0x4A30A4A: func_clipboard (clipboard.c:2445) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_handles_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C613: test_handles (clipboard.c:1862) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x48d01f0 is 0 bytes inside a block of size 26 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x7BC5A89A: load_builtin_callback (loader.c:1589) ==3332== by 0x403EFEE: __wine_dll_register (loader.c:514) ==3332== by 0x7B492CFC: __wine_spec_init (init.c:35) ==3332== by 0x400EDED: call_init.part.0 (dl-init.c:58) ==3332== by 0x400EF3F: call_init (dl-init.c:30) ==3332== by 0x400EF3F: _dl_init (dl-init.c:120) ==3332== by 0x4013206: dl_open_worker (dl-open.c:564) ==3332== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==3332== by 0x40128C8: _dl_open (dl-open.c:649) ==3332== by 0x440EC64: dlopen_doit (dlopen.c:66) ==3332== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==3332== by 0x440F310: _dlerror_run (dlerror.c:163) ==3332== by 0x440ED0D: dlopen@@GLIBC_2.1 (dlopen.c:87) ==3332== by 0x403F5DA: wine_dlopen (loader.c:1016) ==3332== by 0x403E995: dlopen_dll (loader.c:292) ==3332== by 0x403F229: wine_dll_load (loader.c:578) ==3332== by 0x7BC5BCAE: load_builtin_dll (loader.c:1939) ==3332== by 0x7BC5F9B0: __wine_process_init (loader.c:3297) ==3332== by 0x403F59A: wine_init (loader.c:956) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7BC5A564: get_builtin_fullname (loader.c:1524) ==3332== by 0x7BC5A7DC: load_builtin_callback (loader.c:1581) ==3332== by 0x403EFEE: __wine_dll_register (loader.c:514) ==3332== by 0x7B492CFC: __wine_spec_init (init.c:35) ==3332== by 0x400EDED: call_init.part.0 (dl-init.c:58) ==3332== by 0x400EF3F: call_init (dl-init.c:30) ==3332== by 0x400EF3F: _dl_init (dl-init.c:120) ==3332== by 0x4013206: dl_open_worker (dl-open.c:564) ==3332== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==3332== by 0x40128C8: _dl_open (dl-open.c:649) ==3332== by 0x440EC64: dlopen_doit (dlopen.c:66) ==3332== by 0x400ECD4: _dl_catch_error (dl-error.c:187) ==3332== by 0x440F310: _dlerror_run (dlerror.c:163) ==3332== by 0x440ED0D: dlopen@@GLIBC_2.1 (dlopen.c:87) ==3332== by 0x403F5DA: wine_dlopen (loader.c:1016) ==3332== by 0x403E995: dlopen_dll (loader.c:292) ==3332== by 0x403F229: wine_dll_load (loader.c:578) ==3332== by 0x7BC5BCAE: load_builtin_dll (loader.c:1939) ==3332== by 0x7BC5F9B0: __wine_process_init (loader.c:3297) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_handles_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C684: test_handles (clipboard.c:1863) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x48d15e0 is 32 bytes inside a block of size 308 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x7BC43F47: wine_nt_to_unix_file_name (directory.c:2980) ==3332== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==3332== by 0x7BC46E72: FILE_CreateFile (file.c:197) ==3332== by 0x7BC473C0: NtCreateFile (file.c:341) ==3332== by 0x7B466AEB: CreateDirectoryW (path.c:1551) ==3332== by 0x7B46A640: init_windows_dirs (process.c:977) ==3332== by 0x7B46B08E: __wine_kernel_init (process.c:1211) ==3332== by 0x7BC5FA63: __wine_process_init (loader.c:3312) ==3332== by 0x403F59A: wine_init (loader.c:956) ==3332== by 0x7C000F7F: main (main.c:254) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7BC43BE9: wine_nt_to_unix_file_name (directory.c:2938) ==3332== by 0x7BC4344F: nt_to_unix_file_name_attr (directory.c:2807) ==3332== by 0x7BC46E72: FILE_CreateFile (file.c:197) ==3332== by 0x7BC473C0: NtCreateFile (file.c:341) ==3332== by 0x7B466AEB: CreateDirectoryW (path.c:1551) ==3332== by 0x7B46A640: init_windows_dirs (process.c:977) ==3332== by 0x7B46B08E: __wine_kernel_init (process.c:1211) ==3332== by 0x7BC5FA63: __wine_process_init (loader.c:3312) ==3332== by 0x403F59A: wine_init (loader.c:956) ==3332== by 0x7C000F7F: main (main.c:254) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_handles_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2C6F5: test_handles (clipboard.c:1864) ==3332== by 0x4A2C94B: test_handles_thread (clipboard.c:1878) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== Address 0x49231d0 is 160 bytes inside a block of size 348 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x7B449730: HeapFree (heap.c:276) ==3332== by 0x7B44A764: GlobalFree (heap.c:752) ==3332== by 0x4CFD6E6: SetClipboardData (clipboard.c:926) ==3332== by 0x4A2484A: test_synthesized (clipboard.c:729) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3332== by 0x4CFB566: marshal_data (clipboard.c:159) ==3332== by 0x4CFD4B6: SetClipboardData (clipboard.c:890) ==3332== by 0x4A2484A: test_synthesized (clipboard.c:729) ==3332== by 0x4A30A45: func_clipboard (clipboard.c:2444) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_handles_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3389== Thread 1 user32_test.exe.so: ==3389== 8 bytes in 1 blocks are possibly lost in loss record 62 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3389== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3389== 8 bytes in 1 blocks are possibly lost in loss record 63 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E084: test_data_handles (clipboard.c:2065) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 8 bytes in 1 blocks are possibly lost in loss record 64 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E0D7: test_data_handles (clipboard.c:2067) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 8 bytes in 1 blocks are possibly lost in loss record 65 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A235EF: create_metafile (clipboard.c:511) ==3389== by 0x4A2E245: test_data_handles (clipboard.c:2075) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_metafile fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 8 bytes in 1 blocks are possibly lost in loss record 66 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A235EF: create_metafile (clipboard.c:511) ==3389== by 0x4A2E2C4: test_data_handles (clipboard.c:2078) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_metafile fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 8 bytes in 1 blocks are possibly lost in loss record 67 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E455: test_data_handles (clipboard.c:2087) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 8 bytes in 1 blocks are possibly lost in loss record 68 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B449961: GlobalAlloc (heap.c:377) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E4AB: test_data_handles (clipboard.c:2089) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 9 bytes in 1 blocks are definitely lost in loss record 70 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3389== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3389== 13 bytes in 1 blocks are definitely lost in loss record 108 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E084: test_data_handles (clipboard.c:2065) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 13 bytes in 1 blocks are definitely lost in loss record 109 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E0D7: test_data_handles (clipboard.c:2067) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 13 bytes in 1 blocks are definitely lost in loss record 110 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E455: test_data_handles (clipboard.c:2087) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 13 bytes in 1 blocks are definitely lost in loss record 111 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A234CF: create_textA (clipboard.c:485) ==3389== by 0x4A2E4AB: test_data_handles (clipboard.c:2089) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 24 bytes in 1 blocks are definitely lost in loss record 222 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A235EF: create_metafile (clipboard.c:511) ==3389== by 0x4A2E245: test_data_handles (clipboard.c:2075) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_metafile fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 24 bytes in 1 blocks are definitely lost in loss record 223 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3389== by 0x4A235EF: create_metafile (clipboard.c:511) ==3389== by 0x4A2E2C4: test_data_handles (clipboard.c:2078) ==3389== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_metafile fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3389== 100 bytes in 1 blocks are definitely lost in loss record 457 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3389== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3389== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3389== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3389== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3389== by 0x7BC9953E: start_thread (thread.c:453) ==3389== by 0x4243250: start_thread (pthread_create.c:334) ==3389== by 0x4341B2D: clone (clone.S:122) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3389== 100 bytes in 1 blocks are definitely lost in loss record 458 of 727 ==3389== at 0x7BC5067C: notify_alloc (heap.c:254) ==3389== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3389== by 0x7B449700: HeapAlloc (heap.c:271) ==3389== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3389== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3389== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3389== by 0x4B23200: run_test (test.h:589) ==3389== by 0x4B2362C: main (test.h:671) ==3389== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3390== 8 bytes in 1 blocks are definitely lost in loss record 36 of 502 ==3390== at 0x7BC5067C: notify_alloc (heap.c:254) ==3390== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3390== by 0x7B449700: HeapAlloc (heap.c:271) ==3390== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3390== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3390== by 0x4A12654: test_handles_process (clipboard.c:1975) ==3390== by 0x4A1596E: func_clipboard (clipboard.c:2423) ==3390== by 0x4B08200: run_test (test.h:589) ==3390== by 0x4B0862C: main (test.h:671) ==3390== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:GetClipboardData fun:test_handles_process fun:func_clipboard fun:run_test fun:main } ==3390== 58 bytes in 1 blocks are possibly lost in loss record 255 of 502 ==3390== at 0x7BC5067C: notify_alloc (heap.c:254) ==3390== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3390== by 0x7B449700: HeapAlloc (heap.c:271) ==3390== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3390== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3390== by 0x4A12490: test_handles_process (clipboard.c:1967) ==3390== by 0x4A1596E: func_clipboard (clipboard.c:2423) ==3390== by 0x4B08200: run_test (test.h:589) ==3390== by 0x4B0862C: main (test.h:671) ==3390== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:GetClipboardData fun:test_handles_process fun:func_clipboard fun:run_test fun:main } ==3390== 348 bytes in 1 blocks are definitely lost in loss record 402 of 502 ==3390== at 0x7BC5067C: notify_alloc (heap.c:254) ==3390== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3390== by 0x7B449700: HeapAlloc (heap.c:271) ==3390== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3390== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3390== by 0x4A1295E: test_handles_process (clipboard.c:1991) ==3390== by 0x4A1596E: func_clipboard (clipboard.c:2423) ==3390== by 0x4B08200: run_test (test.h:589) ==3390== by 0x4B0862C: main (test.h:671) ==3390== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:GetClipboardData fun:test_handles_process fun:func_clipboard fun:run_test fun:main } ==3390== 348 bytes in 1 blocks are definitely lost in loss record 403 of 502 ==3390== at 0x7BC5067C: notify_alloc (heap.c:254) ==3390== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3390== by 0x7B449700: HeapAlloc (heap.c:271) ==3390== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3390== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3390== by 0x4A12A89: test_handles_process (clipboard.c:1998) ==3390== by 0x4A1596E: func_clipboard (clipboard.c:2423) ==3390== by 0x4B08200: run_test (test.h:589) ==3390== by 0x4B0862C: main (test.h:671) ==3390== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:GetClipboardData fun:test_handles_process fun:func_clipboard fun:run_test fun:main } ==3393== Thread 1 user32_test.exe.so: ==3393== 8 bytes in 1 blocks are possibly lost in loss record 59 of 691 ==3393== at 0x7BC5067C: notify_alloc (heap.c:254) ==3393== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3393== by 0x7B449700: HeapAlloc (heap.c:271) ==3393== by 0x7B449961: GlobalAlloc (heap.c:377) ==3393== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3393== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3393== by 0x4B23200: run_test (test.h:589) ==3393== by 0x4B2362C: main (test.h:671) ==3393== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3393== 8 bytes in 1 blocks are possibly lost in loss record 60 of 691 ==3393== at 0x7BC5067C: notify_alloc (heap.c:254) ==3393== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3393== by 0x7B449700: HeapAlloc (heap.c:271) ==3393== by 0x7B449961: GlobalAlloc (heap.c:377) ==3393== by 0x4A234CF: create_textA (clipboard.c:485) ==3393== by 0x4A2E737: test_data_handles (clipboard.c:2110) ==3393== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3393== by 0x4B23200: run_test (test.h:589) ==3393== by 0x4B2362C: main (test.h:671) ==3393== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3393== 9 bytes in 1 blocks are definitely lost in loss record 62 of 691 ==3393== at 0x7BC5067C: notify_alloc (heap.c:254) ==3393== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3393== by 0x7B449700: HeapAlloc (heap.c:271) ==3393== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3393== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3393== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3393== by 0x4B23200: run_test (test.h:589) ==3393== by 0x4B2362C: main (test.h:671) ==3393== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3393== 13 bytes in 1 blocks are definitely lost in loss record 99 of 691 ==3393== at 0x7BC5067C: notify_alloc (heap.c:254) ==3393== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3393== by 0x7B449700: HeapAlloc (heap.c:271) ==3393== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3393== by 0x4A234CF: create_textA (clipboard.c:485) ==3393== by 0x4A2E737: test_data_handles (clipboard.c:2110) ==3393== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3393== by 0x4B23200: run_test (test.h:589) ==3393== by 0x4B2362C: main (test.h:671) ==3393== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:create_textA fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3393== 100 bytes in 1 blocks are definitely lost in loss record 425 of 691 ==3393== at 0x7BC5067C: notify_alloc (heap.c:254) ==3393== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3393== by 0x7B449700: HeapAlloc (heap.c:271) ==3393== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3393== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3393== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3393== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3393== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3393== by 0x7BC9953E: start_thread (thread.c:453) ==3393== by 0x4243250: start_thread (pthread_create.c:334) ==3393== by 0x4341B2D: clone (clone.S:122) ==3393== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3393== 100 bytes in 1 blocks are definitely lost in loss record 426 of 691 ==3393== at 0x7BC5067C: notify_alloc (heap.c:254) ==3393== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3393== by 0x7B449700: HeapAlloc (heap.c:271) ==3393== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3393== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3393== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3393== by 0x4B23200: run_test (test.h:589) ==3393== by 0x4B2362C: main (test.h:671) ==3393== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3394== 8 bytes in 1 blocks are possibly lost in loss record 9 of 241 ==3394== at 0x7BC5067C: notify_alloc (heap.c:254) ==3394== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3394== by 0x7B449700: HeapAlloc (heap.c:271) ==3394== by 0x7B449961: GlobalAlloc (heap.c:377) ==3394== by 0x4A12CEA: test_handles_process_open (clipboard.c:2015) ==3394== by 0x4A159AC: func_clipboard (clipboard.c:2428) ==3394== by 0x4B08200: run_test (test.h:589) ==3394== by 0x4B0862C: main (test.h:671) ==3394== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_handles_process_open fun:func_clipboard fun:run_test fun:main } ==3394== 15 bytes in 1 blocks are definitely lost in loss record 20 of 241 ==3394== at 0x7BC5067C: notify_alloc (heap.c:254) ==3394== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3394== by 0x7B449700: HeapAlloc (heap.c:271) ==3394== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3394== by 0x4A12CEA: test_handles_process_open (clipboard.c:2015) ==3394== by 0x4A159AC: func_clipboard (clipboard.c:2428) ==3394== by 0x4B08200: run_test (test.h:589) ==3394== by 0x4B0862C: main (test.h:671) ==3394== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_handles_process_open fun:func_clipboard fun:run_test fun:main } ==3332== Thread 1 user32_test.exe.so: ==3332== Invalid read of size 2 ==3332== at 0x7B44AAD8: GlobalSize (heap.c:839) ==3332== by 0x4A2A441: is_freed (clipboard.c:1593) ==3332== by 0x4A2E96C: test_data_handles (clipboard.c:2127) ==3332== by 0x4A30A4F: func_clipboard (clipboard.c:2446) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x48ec930 is 0 bytes inside a block of size 9 free'd ==3332== at 0x7BC506EB: notify_free (heap.c:262) ==3332== by 0x7BC54C5A: RtlFreeHeap (heap.c:1762) ==3332== by 0x7B449730: HeapFree (heap.c:276) ==3332== by 0x7B44A7FD: GlobalFree (heap.c:772) ==3332== by 0x4CFBB20: free_cached_data (clipboard.c:329) ==3332== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==3332== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==3332== by 0x4A2321D: test_RegisterClipboardFormatA (clipboard.c:461) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Block was alloc'd at ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A22EBB: test_RegisterClipboardFormatA (clipboard.c:439) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==3397== 8 bytes in 1 blocks are possibly lost in loss record 59 of 691 ==3397== at 0x7BC5067C: notify_alloc (heap.c:254) ==3397== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3397== by 0x7B449700: HeapAlloc (heap.c:271) ==3397== by 0x7B449961: GlobalAlloc (heap.c:377) ==3397== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3397== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3397== by 0x4B23200: run_test (test.h:589) ==3397== by 0x4B2362C: main (test.h:671) ==3397== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3397== 9 bytes in 1 blocks are definitely lost in loss record 61 of 691 ==3397== at 0x7BC5067C: notify_alloc (heap.c:254) ==3397== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3397== by 0x7B449700: HeapAlloc (heap.c:271) ==3397== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3397== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3397== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3397== by 0x4B23200: run_test (test.h:589) ==3397== by 0x4B2362C: main (test.h:671) ==3397== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3397== 100 bytes in 1 blocks are definitely lost in loss record 425 of 691 ==3397== at 0x7BC5067C: notify_alloc (heap.c:254) ==3397== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3397== by 0x7B449700: HeapAlloc (heap.c:271) ==3397== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3397== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3397== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3397== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3397== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3397== by 0x7BC9953E: start_thread (thread.c:453) ==3397== by 0x4243250: start_thread (pthread_create.c:334) ==3397== by 0x4341B2D: clone (clone.S:122) ==3397== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3397== 100 bytes in 1 blocks are definitely lost in loss record 426 of 691 ==3397== at 0x7BC5067C: notify_alloc (heap.c:254) ==3397== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3397== by 0x7B449700: HeapAlloc (heap.c:271) ==3397== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3397== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3397== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3397== by 0x4B23200: run_test (test.h:589) ==3397== by 0x4B2362C: main (test.h:671) ==3397== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3403== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3403== at 0x7BC5067C: notify_alloc (heap.c:254) ==3403== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3403== by 0x7B449700: HeapAlloc (heap.c:271) ==3403== by 0x7B449961: GlobalAlloc (heap.c:377) ==3403== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3403== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3403== by 0x4B23200: run_test (test.h:589) ==3403== by 0x4B2362C: main (test.h:671) ==3403== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3403== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3403== at 0x7BC5067C: notify_alloc (heap.c:254) ==3403== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3403== by 0x7B449700: HeapAlloc (heap.c:271) ==3403== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3403== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3403== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3403== by 0x4B23200: run_test (test.h:589) ==3403== by 0x4B2362C: main (test.h:671) ==3403== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3403== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3403== at 0x7BC5067C: notify_alloc (heap.c:254) ==3403== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3403== by 0x7B449700: HeapAlloc (heap.c:271) ==3403== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3403== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3403== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3403== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3403== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3403== by 0x7BC9953E: start_thread (thread.c:453) ==3403== by 0x4243250: start_thread (pthread_create.c:334) ==3403== by 0x4341B2D: clone (clone.S:122) ==3403== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3403== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3403== at 0x7BC5067C: notify_alloc (heap.c:254) ==3403== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3403== by 0x7B449700: HeapAlloc (heap.c:271) ==3403== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3403== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3403== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3403== by 0x4B23200: run_test (test.h:589) ==3403== by 0x4B2362C: main (test.h:671) ==3403== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3405== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3405== at 0x7BC5067C: notify_alloc (heap.c:254) ==3405== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3405== by 0x7B449700: HeapAlloc (heap.c:271) ==3405== by 0x7B449961: GlobalAlloc (heap.c:377) ==3405== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3405== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3405== by 0x4B23200: run_test (test.h:589) ==3405== by 0x4B2362C: main (test.h:671) ==3405== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3405== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3405== at 0x7BC5067C: notify_alloc (heap.c:254) ==3405== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3405== by 0x7B449700: HeapAlloc (heap.c:271) ==3405== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3405== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3405== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3405== by 0x4B23200: run_test (test.h:589) ==3405== by 0x4B2362C: main (test.h:671) ==3405== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3405== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3405== at 0x7BC5067C: notify_alloc (heap.c:254) ==3405== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3405== by 0x7B449700: HeapAlloc (heap.c:271) ==3405== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3405== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3405== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3405== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3405== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3405== by 0x7BC9953E: start_thread (thread.c:453) ==3405== by 0x4243250: start_thread (pthread_create.c:334) ==3405== by 0x4341B2D: clone (clone.S:122) ==3405== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3405== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3405== at 0x7BC5067C: notify_alloc (heap.c:254) ==3405== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3405== by 0x7B449700: HeapAlloc (heap.c:271) ==3405== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3405== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3405== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3405== by 0x4B23200: run_test (test.h:589) ==3405== by 0x4B2362C: main (test.h:671) ==3405== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3407== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3407== at 0x7BC5067C: notify_alloc (heap.c:254) ==3407== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3407== by 0x7B449700: HeapAlloc (heap.c:271) ==3407== by 0x7B449961: GlobalAlloc (heap.c:377) ==3407== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3407== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3407== by 0x4B23200: run_test (test.h:589) ==3407== by 0x4B2362C: main (test.h:671) ==3407== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3407== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3407== at 0x7BC5067C: notify_alloc (heap.c:254) ==3407== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3407== by 0x7B449700: HeapAlloc (heap.c:271) ==3407== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3407== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3407== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3407== by 0x4B23200: run_test (test.h:589) ==3407== by 0x4B2362C: main (test.h:671) ==3407== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3407== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3407== at 0x7BC5067C: notify_alloc (heap.c:254) ==3407== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3407== by 0x7B449700: HeapAlloc (heap.c:271) ==3407== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3407== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3407== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3407== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3407== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3407== by 0x7BC9953E: start_thread (thread.c:453) ==3407== by 0x4243250: start_thread (pthread_create.c:334) ==3407== by 0x4341B2D: clone (clone.S:122) ==3407== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3407== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3407== at 0x7BC5067C: notify_alloc (heap.c:254) ==3407== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3407== by 0x7B449700: HeapAlloc (heap.c:271) ==3407== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3407== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3407== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3407== by 0x4B23200: run_test (test.h:589) ==3407== by 0x4B2362C: main (test.h:671) ==3407== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3411== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3411== at 0x7BC5067C: notify_alloc (heap.c:254) ==3411== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3411== by 0x7B449700: HeapAlloc (heap.c:271) ==3411== by 0x7B449961: GlobalAlloc (heap.c:377) ==3411== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3411== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3411== by 0x4B23200: run_test (test.h:589) ==3411== by 0x4B2362C: main (test.h:671) ==3411== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3411== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3411== at 0x7BC5067C: notify_alloc (heap.c:254) ==3411== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3411== by 0x7B449700: HeapAlloc (heap.c:271) ==3411== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3411== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3411== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3411== by 0x4B23200: run_test (test.h:589) ==3411== by 0x4B2362C: main (test.h:671) ==3411== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3411== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3411== at 0x7BC5067C: notify_alloc (heap.c:254) ==3411== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3411== by 0x7B449700: HeapAlloc (heap.c:271) ==3411== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3411== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3411== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3411== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3411== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3411== by 0x7BC9953E: start_thread (thread.c:453) ==3411== by 0x4243250: start_thread (pthread_create.c:334) ==3411== by 0x4341B2D: clone (clone.S:122) ==3411== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3411== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3411== at 0x7BC5067C: notify_alloc (heap.c:254) ==3411== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3411== by 0x7B449700: HeapAlloc (heap.c:271) ==3411== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3411== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3411== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3411== by 0x4B23200: run_test (test.h:589) ==3411== by 0x4B2362C: main (test.h:671) ==3411== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3413== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3413== at 0x7BC5067C: notify_alloc (heap.c:254) ==3413== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3413== by 0x7B449700: HeapAlloc (heap.c:271) ==3413== by 0x7B449961: GlobalAlloc (heap.c:377) ==3413== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3413== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3413== by 0x4B23200: run_test (test.h:589) ==3413== by 0x4B2362C: main (test.h:671) ==3413== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3413== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3413== at 0x7BC5067C: notify_alloc (heap.c:254) ==3413== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3413== by 0x7B449700: HeapAlloc (heap.c:271) ==3413== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3413== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3413== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3413== by 0x4B23200: run_test (test.h:589) ==3413== by 0x4B2362C: main (test.h:671) ==3413== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3413== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3413== at 0x7BC5067C: notify_alloc (heap.c:254) ==3413== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3413== by 0x7B449700: HeapAlloc (heap.c:271) ==3413== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3413== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3413== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3413== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3413== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3413== by 0x7BC9953E: start_thread (thread.c:453) ==3413== by 0x4243250: start_thread (pthread_create.c:334) ==3413== by 0x4341B2D: clone (clone.S:122) ==3413== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3413== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3413== at 0x7BC5067C: notify_alloc (heap.c:254) ==3413== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3413== by 0x7B449700: HeapAlloc (heap.c:271) ==3413== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3413== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3413== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3413== by 0x4B23200: run_test (test.h:589) ==3413== by 0x4B2362C: main (test.h:671) ==3413== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3415== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3415== at 0x7BC5067C: notify_alloc (heap.c:254) ==3415== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3415== by 0x7B449700: HeapAlloc (heap.c:271) ==3415== by 0x7B449961: GlobalAlloc (heap.c:377) ==3415== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3415== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3415== by 0x4B23200: run_test (test.h:589) ==3415== by 0x4B2362C: main (test.h:671) ==3415== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3415== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3415== at 0x7BC5067C: notify_alloc (heap.c:254) ==3415== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3415== by 0x7B449700: HeapAlloc (heap.c:271) ==3415== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3415== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3415== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3415== by 0x4B23200: run_test (test.h:589) ==3415== by 0x4B2362C: main (test.h:671) ==3415== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3415== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3415== at 0x7BC5067C: notify_alloc (heap.c:254) ==3415== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3415== by 0x7B449700: HeapAlloc (heap.c:271) ==3415== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3415== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3415== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3415== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3415== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3415== by 0x7BC9953E: start_thread (thread.c:453) ==3415== by 0x4243250: start_thread (pthread_create.c:334) ==3415== by 0x4341B2D: clone (clone.S:122) ==3415== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3415== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3415== at 0x7BC5067C: notify_alloc (heap.c:254) ==3415== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3415== by 0x7B449700: HeapAlloc (heap.c:271) ==3415== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3415== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3415== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3415== by 0x4B23200: run_test (test.h:589) ==3415== by 0x4B2362C: main (test.h:671) ==3415== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3419== 8 bytes in 1 blocks are possibly lost in loss record 59 of 680 ==3419== at 0x7BC5067C: notify_alloc (heap.c:254) ==3419== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3419== by 0x7B449700: HeapAlloc (heap.c:271) ==3419== by 0x7B449961: GlobalAlloc (heap.c:377) ==3419== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3419== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3419== by 0x4B23200: run_test (test.h:589) ==3419== by 0x4B2362C: main (test.h:671) ==3419== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3419== 9 bytes in 1 blocks are definitely lost in loss record 61 of 680 ==3419== at 0x7BC5067C: notify_alloc (heap.c:254) ==3419== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3419== by 0x7B449700: HeapAlloc (heap.c:271) ==3419== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3419== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3419== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3419== by 0x4B23200: run_test (test.h:589) ==3419== by 0x4B2362C: main (test.h:671) ==3419== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3419== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3419== at 0x7BC5067C: notify_alloc (heap.c:254) ==3419== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3419== by 0x7B449700: HeapAlloc (heap.c:271) ==3419== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3419== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3419== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3419== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3419== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3419== by 0x7BC9953E: start_thread (thread.c:453) ==3419== by 0x4243250: start_thread (pthread_create.c:334) ==3419== by 0x4341B2D: clone (clone.S:122) ==3419== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3419== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3419== at 0x7BC5067C: notify_alloc (heap.c:254) ==3419== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3419== by 0x7B449700: HeapAlloc (heap.c:271) ==3419== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3419== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3419== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3419== by 0x4B23200: run_test (test.h:589) ==3419== by 0x4B2362C: main (test.h:671) ==3419== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3421== 8 bytes in 1 blocks are possibly lost in loss record 59 of 680 ==3421== at 0x7BC5067C: notify_alloc (heap.c:254) ==3421== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3421== by 0x7B449700: HeapAlloc (heap.c:271) ==3421== by 0x7B449961: GlobalAlloc (heap.c:377) ==3421== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3421== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3421== by 0x4B23200: run_test (test.h:589) ==3421== by 0x4B2362C: main (test.h:671) ==3421== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3421== 9 bytes in 1 blocks are definitely lost in loss record 61 of 680 ==3421== at 0x7BC5067C: notify_alloc (heap.c:254) ==3421== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3421== by 0x7B449700: HeapAlloc (heap.c:271) ==3421== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3421== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3421== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3421== by 0x4B23200: run_test (test.h:589) ==3421== by 0x4B2362C: main (test.h:671) ==3421== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3421== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3421== at 0x7BC5067C: notify_alloc (heap.c:254) ==3421== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3421== by 0x7B449700: HeapAlloc (heap.c:271) ==3421== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3421== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3421== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3421== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3421== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3421== by 0x7BC9953E: start_thread (thread.c:453) ==3421== by 0x4243250: start_thread (pthread_create.c:334) ==3421== by 0x4341B2D: clone (clone.S:122) ==3421== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3421== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3421== at 0x7BC5067C: notify_alloc (heap.c:254) ==3421== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3421== by 0x7B449700: HeapAlloc (heap.c:271) ==3421== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3421== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3421== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3421== by 0x4B23200: run_test (test.h:589) ==3421== by 0x4B2362C: main (test.h:671) ==3421== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3332== Invalid write of size 2 ==3332== at 0x4CFB6E5: marshal_data (clipboard.c:194) ==3332== by 0x4CFD4B6: SetClipboardData (clipboard.c:890) ==3332== by 0x4A2FF6B: test_string_data (clipboard.c:2329) ==3332== by 0x4A30A59: func_clipboard (clipboard.c:2448) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4923150 is 0 bytes inside a recently re-allocated block of size 1 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3332== by 0x4A2FDBA: test_string_data (clipboard.c:2316) ==3332== by 0x4A30A59: func_clipboard (clipboard.c:2448) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:marshal_data fun:SetClipboardData fun:test_string_data fun:func_clipboard fun:run_test fun:main } ==3332== Invalid read of size 2 ==3332== at 0x4B22D26: wine_dbgstr_wn (test.h:489) ==3332== by 0x4A3001F: test_string_data (clipboard.c:2332) ==3332== by 0x4A30A59: func_clipboard (clipboard.c:2448) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== Address 0x4923150 is 0 bytes inside a recently re-allocated block of size 1 alloc'd ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3332== by 0x4A2FDBA: test_string_data (clipboard.c:2316) ==3332== by 0x4A30A59: func_clipboard (clipboard.c:2448) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data fun:func_clipboard fun:run_test fun:main } ==3425== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3425== at 0x7BC5067C: notify_alloc (heap.c:254) ==3425== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3425== by 0x7B449700: HeapAlloc (heap.c:271) ==3425== by 0x7B449961: GlobalAlloc (heap.c:377) ==3425== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3425== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3425== by 0x4B23200: run_test (test.h:589) ==3425== by 0x4B2362C: main (test.h:671) ==3425== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3425== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3425== at 0x7BC5067C: notify_alloc (heap.c:254) ==3425== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3425== by 0x7B449700: HeapAlloc (heap.c:271) ==3425== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3425== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3425== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3425== by 0x4B23200: run_test (test.h:589) ==3425== by 0x4B2362C: main (test.h:671) ==3425== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3425== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3425== at 0x7BC5067C: notify_alloc (heap.c:254) ==3425== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3425== by 0x7B449700: HeapAlloc (heap.c:271) ==3425== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3425== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3425== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3425== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3425== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3425== by 0x7BC9953E: start_thread (thread.c:453) ==3425== by 0x4243250: start_thread (pthread_create.c:334) ==3425== by 0x4341B2D: clone (clone.S:122) ==3425== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3425== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3425== at 0x7BC5067C: notify_alloc (heap.c:254) ==3425== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3425== by 0x7B449700: HeapAlloc (heap.c:271) ==3425== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3425== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3425== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3425== by 0x4B23200: run_test (test.h:589) ==3425== by 0x4B2362C: main (test.h:671) ==3425== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3426== Invalid read of size 2 ==3426== at 0x4B07D26: wine_dbgstr_wn (test.h:489) ==3426== by 0x4A15595: test_string_data_process (clipboard.c:2376) ==3426== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3426== by 0x4B08200: run_test (test.h:589) ==3426== by 0x4B0862C: main (test.h:671) ==3426== Address 0x487d3c8 is 0 bytes inside a block of size 1 alloc'd ==3426== at 0x7BC5067C: notify_alloc (heap.c:254) ==3426== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3426== by 0x7B449700: HeapAlloc (heap.c:271) ==3426== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3426== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3426== by 0x4A1543E: test_string_data_process (clipboard.c:2370) ==3426== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3426== by 0x4B08200: run_test (test.h:589) ==3426== by 0x4B0862C: main (test.h:671) ==3426== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==3428== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3428== at 0x7BC5067C: notify_alloc (heap.c:254) ==3428== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3428== by 0x7B449700: HeapAlloc (heap.c:271) ==3428== by 0x7B449961: GlobalAlloc (heap.c:377) ==3428== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3428== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3428== by 0x4B23200: run_test (test.h:589) ==3428== by 0x4B2362C: main (test.h:671) ==3428== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3428== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3428== at 0x7BC5067C: notify_alloc (heap.c:254) ==3428== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3428== by 0x7B449700: HeapAlloc (heap.c:271) ==3428== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3428== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3428== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3428== by 0x4B23200: run_test (test.h:589) ==3428== by 0x4B2362C: main (test.h:671) ==3428== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3428== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3428== at 0x7BC5067C: notify_alloc (heap.c:254) ==3428== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3428== by 0x7B449700: HeapAlloc (heap.c:271) ==3428== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3428== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3428== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3428== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3428== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3428== by 0x7BC9953E: start_thread (thread.c:453) ==3428== by 0x4243250: start_thread (pthread_create.c:334) ==3428== by 0x4341B2D: clone (clone.S:122) ==3428== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3428== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3428== at 0x7BC5067C: notify_alloc (heap.c:254) ==3428== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3428== by 0x7B449700: HeapAlloc (heap.c:271) ==3428== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3428== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3428== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3428== by 0x4B23200: run_test (test.h:589) ==3428== by 0x4B2362C: main (test.h:671) ==3428== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3431== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3431== at 0x7BC5067C: notify_alloc (heap.c:254) ==3431== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3431== by 0x7B449700: HeapAlloc (heap.c:271) ==3431== by 0x7B449961: GlobalAlloc (heap.c:377) ==3431== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3431== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3431== by 0x4B23200: run_test (test.h:589) ==3431== by 0x4B2362C: main (test.h:671) ==3431== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3431== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3431== at 0x7BC5067C: notify_alloc (heap.c:254) ==3431== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3431== by 0x7B449700: HeapAlloc (heap.c:271) ==3431== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3431== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3431== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3431== by 0x4B23200: run_test (test.h:589) ==3431== by 0x4B2362C: main (test.h:671) ==3431== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3431== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3431== at 0x7BC5067C: notify_alloc (heap.c:254) ==3431== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3431== by 0x7B449700: HeapAlloc (heap.c:271) ==3431== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3431== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3431== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3431== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3431== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3431== by 0x7BC9953E: start_thread (thread.c:453) ==3431== by 0x4243250: start_thread (pthread_create.c:334) ==3431== by 0x4341B2D: clone (clone.S:122) ==3431== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3431== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3431== at 0x7BC5067C: notify_alloc (heap.c:254) ==3431== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3431== by 0x7B449700: HeapAlloc (heap.c:271) ==3431== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3431== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3431== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3431== by 0x4B23200: run_test (test.h:589) ==3431== by 0x4B2362C: main (test.h:671) ==3431== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3432== Invalid read of size 2 ==3432== at 0x4B07D26: wine_dbgstr_wn (test.h:489) ==3432== by 0x4A15595: test_string_data_process (clipboard.c:2376) ==3432== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3432== by 0x4B08200: run_test (test.h:589) ==3432== by 0x4B0862C: main (test.h:671) ==3432== Address 0x487d3d4 is 4 bytes inside a block of size 5 alloc'd ==3432== at 0x7BC5067C: notify_alloc (heap.c:254) ==3432== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3432== by 0x7B449700: HeapAlloc (heap.c:271) ==3432== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3432== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3432== by 0x4A1543E: test_string_data_process (clipboard.c:2370) ==3432== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3432== by 0x4B08200: run_test (test.h:589) ==3432== by 0x4B0862C: main (test.h:671) ==3432== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==3435== 8 bytes in 1 blocks are possibly lost in loss record 60 of 680 ==3435== at 0x7BC5067C: notify_alloc (heap.c:254) ==3435== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3435== by 0x7B449700: HeapAlloc (heap.c:271) ==3435== by 0x7B449961: GlobalAlloc (heap.c:377) ==3435== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3435== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3435== by 0x4B23200: run_test (test.h:589) ==3435== by 0x4B2362C: main (test.h:671) ==3435== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3435== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3435== at 0x7BC5067C: notify_alloc (heap.c:254) ==3435== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3435== by 0x7B449700: HeapAlloc (heap.c:271) ==3435== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3435== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3435== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3435== by 0x4B23200: run_test (test.h:589) ==3435== by 0x4B2362C: main (test.h:671) ==3435== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3435== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3435== at 0x7BC5067C: notify_alloc (heap.c:254) ==3435== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3435== by 0x7B449700: HeapAlloc (heap.c:271) ==3435== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3435== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3435== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3435== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3435== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3435== by 0x7BC9953E: start_thread (thread.c:453) ==3435== by 0x4243250: start_thread (pthread_create.c:334) ==3435== by 0x4341B2D: clone (clone.S:122) ==3435== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3435== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3435== at 0x7BC5067C: notify_alloc (heap.c:254) ==3435== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3435== by 0x7B449700: HeapAlloc (heap.c:271) ==3435== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3435== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3435== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3435== by 0x4B23200: run_test (test.h:589) ==3435== by 0x4B2362C: main (test.h:671) ==3435== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3436== Invalid read of size 2 ==3436== at 0x4B07D26: wine_dbgstr_wn (test.h:489) ==3436== by 0x4A15595: test_string_data_process (clipboard.c:2376) ==3436== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3436== by 0x4B08200: run_test (test.h:589) ==3436== by 0x4B0862C: main (test.h:671) ==3436== Address 0x487d3d6 is 6 bytes inside a block of size 7 alloc'd ==3436== at 0x7BC5067C: notify_alloc (heap.c:254) ==3436== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3436== by 0x7B449700: HeapAlloc (heap.c:271) ==3436== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3436== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3436== by 0x4A1543E: test_string_data_process (clipboard.c:2370) ==3436== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3436== by 0x4B08200: run_test (test.h:589) ==3436== by 0x4B0862C: main (test.h:671) ==3436== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==3455== 8 bytes in 1 blocks are possibly lost in loss record 59 of 680 ==3455== at 0x7BC5067C: notify_alloc (heap.c:254) ==3455== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3455== by 0x7B449700: HeapAlloc (heap.c:271) ==3455== by 0x7B449961: GlobalAlloc (heap.c:377) ==3455== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3455== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3455== by 0x4B23200: run_test (test.h:589) ==3455== by 0x4B2362C: main (test.h:671) ==3455== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3455== 9 bytes in 1 blocks are definitely lost in loss record 62 of 680 ==3455== at 0x7BC5067C: notify_alloc (heap.c:254) ==3455== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3455== by 0x7B449700: HeapAlloc (heap.c:271) ==3455== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3455== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3455== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3455== by 0x4B23200: run_test (test.h:589) ==3455== by 0x4B2362C: main (test.h:671) ==3455== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3455== 100 bytes in 1 blocks are definitely lost in loss record 418 of 680 ==3455== at 0x7BC5067C: notify_alloc (heap.c:254) ==3455== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3455== by 0x7B449700: HeapAlloc (heap.c:271) ==3455== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3455== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3455== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3455== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3455== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3455== by 0x7BC9953E: start_thread (thread.c:453) ==3455== by 0x4243250: start_thread (pthread_create.c:334) ==3455== by 0x4341B2D: clone (clone.S:122) ==3455== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3455== 100 bytes in 1 blocks are definitely lost in loss record 419 of 680 ==3455== at 0x7BC5067C: notify_alloc (heap.c:254) ==3455== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3455== by 0x7B449700: HeapAlloc (heap.c:271) ==3455== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3455== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3455== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3455== by 0x4B23200: run_test (test.h:589) ==3455== by 0x4B2362C: main (test.h:671) ==3455== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3456== Invalid read of size 2 ==3456== at 0x4B07D26: wine_dbgstr_wn (test.h:489) ==3456== by 0x4A15595: test_string_data_process (clipboard.c:2376) ==3456== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3456== by 0x4B08200: run_test (test.h:589) ==3456== by 0x4B0862C: main (test.h:671) ==3456== Address 0x487d3d8 is 8 bytes inside a block of size 9 alloc'd ==3456== at 0x7BC5067C: notify_alloc (heap.c:254) ==3456== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3456== by 0x7B449700: HeapAlloc (heap.c:271) ==3456== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3456== by 0x4DEDCF1: GetClipboardData (clipboard.c:1042) ==3456== by 0x4A1543E: test_string_data_process (clipboard.c:2370) ==3456== by 0x4A15A31: func_clipboard (clipboard.c:2438) ==3456== by 0x4B08200: run_test (test.h:589) ==3456== by 0x4B0862C: main (test.h:671) ==3456== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==3332== 8 bytes in 1 blocks are possibly lost in loss record 59 of 675 ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B449961: GlobalAlloc (heap.c:377) ==3332== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3332== 9 bytes in 1 blocks are definitely lost in loss record 62 of 675 ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4499BB: GlobalAlloc (heap.c:389) ==3332== by 0x4A22D91: test_RegisterClipboardFormatA (clipboard.c:434) ==3332== by 0x4A30A3B: func_clipboard (clipboard.c:2442) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_RegisterClipboardFormatA fun:func_clipboard fun:run_test fun:main } ==3332== 100 bytes in 1 blocks are definitely lost in loss record 417 of 675 ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3332== by 0x4A2093E: set_clipboard_data_thread (clipboard.c:93) ==3332== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==3332== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==3332== by 0x7BC8F869: ??? (signal_i386.c:2709) ==3332== by 0x7BC9953E: start_thread (thread.c:453) ==3332== by 0x4243250: start_thread (pthread_create.c:334) ==3332== by 0x4341B2D: clone (clone.S:122) ==3332== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:set_clipboard_data_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==3332== 100 bytes in 1 blocks are definitely lost in loss record 418 of 675 ==3332== at 0x7BC5067C: notify_alloc (heap.c:254) ==3332== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3332== by 0x7B449700: HeapAlloc (heap.c:271) ==3332== by 0x7B4498CD: GlobalAlloc (heap.c:365) ==3332== by 0x4A22580: test_ClipboardOwner (clipboard.c:355) ==3332== by 0x4A30A40: func_clipboard (clipboard.c:2443) ==3332== by 0x4B23200: run_test (test.h:589) ==3332== by 0x4B2362C: main (test.h:671) ==3332== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:GlobalAlloc fun:test_ClipboardOwner fun:func_clipboard fun:run_test fun:main } ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so combo && touch combo.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so cursoricon && touch cursoricon.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so dce && touch dce.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so dialog && touch dialog.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so edit && touch edit.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so input && touch input.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so listbox && touch listbox.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so menu && touch menu.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 menu.c:3665: Tests skipped: interactive alignment tests. menu.c:2356: Tests skipped: test 27: failed to send input ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so monitor && touch monitor.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so msg && touch msg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==3697== Invalid free() / delete / delete[] / realloc() ==3697== at 0x7BC50772: notify_realloc (heap.c:270) ==3697== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==3697== by 0x4D40CC4: MDIClientWndProc_common (mdi.c:1202) ==3697== by 0x4D9A035: MDIClientWndProcA (winproc.c:1106) ==3697== by 0x4D97309: ??? (winproc.c:174) ==3697== by 0x4D97458: call_window_proc (winproc.c:245) ==3697== by 0x4D999AB: CallWindowProcA (winproc.c:964) ==3697== by 0x4A9574E: mdi_client_hook_proc (msg.c:3313) ==3697== by 0x4D97309: ??? (winproc.c:174) ==3697== by 0x4D97458: call_window_proc (winproc.c:245) ==3697== by 0x4D9964A: WINPROC_CallProcWtoA (winproc.c:859) ==3697== by 0x4D997ED: WINPROC_call_window (winproc.c:903) ==3697== by 0x4D5610A: call_window_proc (message.c:2224) ==3697== by 0x4D590CA: send_message (message.c:3266) ==3697== by 0x4D5983B: SendMessageW (message.c:3466) ==3697== by 0x4D846A4: send_parent_notify (win.c:428) ==3697== by 0x4D88970: WIN_CreateWindowEx (win.c:1680) ==3697== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3697== by 0x4A964F4: test_mdi_messages (msg.c:3518) ==3697== by 0x4AC62C2: func_msg (msg.c:16076) ==3697== Address 0x48d9da8 is 18 bytes after a recently re-allocated block of size 70 alloc'd ==3697== at 0x7BC5067C: notify_alloc (heap.c:254) ==3697== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3697== by 0x4FCB17C: strdupW (freetype.c:1098) ==3697== by 0x4FCC629: load_face (freetype.c:1650) ==3697== by 0x4FCCD9B: load_font_list_from_cache (freetype.c:1778) ==3697== by 0x4FD5671: WineEngInit (freetype.c:4397) ==3697== by 0x4FE43D9: DllMain (gdiobj.c:658) ==3697== by 0x50022D7: __wine_spec_dll_entry (dll_entry.c:40) ==3697== by 0x7BC56CF1: ??? (loader.c:143) ==3697== by 0x7BC59623: MODULE_InitDLL (loader.c:1114) ==3697== by 0x7BC59AF9: process_attach (loader.c:1215) ==3697== by 0x7BC59A44: process_attach (loader.c:1203) ==3697== by 0x7BC59A44: process_attach (loader.c:1203) ==3697== by 0x7BC5ECE1: attach_process_dlls (loader.c:2976) ==3697== by 0x404019C: ??? (port.c:78) ==3697== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:MDIClientWndProc_common fun:MDIClientWndProcA obj:/home/austin/wine-valgrind/dlls/user32/user32.dll.so fun:call_window_proc fun:CallWindowProcA fun:mdi_client_hook_proc obj:/home/austin/wine-valgrind/dlls/user32/user32.dll.so fun:call_window_proc fun:WINPROC_CallProcWtoA fun:WINPROC_call_window fun:call_window_proc fun:send_message fun:SendMessageW fun:send_parent_notify fun:WIN_CreateWindowEx fun:CreateWindowExA fun:test_mdi_messages fun:func_msg } msg.c:11535: Tests skipped: Cursor not inside window, skipping TrackMouseEvent tests ==3697== Invalid read of size 2 ==3697== at 0x4D158E3: strlenW (unicode.h:200) ==3697== by 0x4D15DAD: DEFWND_SetTextW (defwnd.c:128) ==3697== by 0x4D17FEB: DefWindowProcW (defwnd.c:930) ==3697== by 0x4AB670E: test_dlg_proc4 (msg.c:12241) ==3697== by 0x4D97309: ??? (winproc.c:174) ==3697== by 0x4D97458: call_window_proc (winproc.c:245) ==3697== by 0x4D9989D: WINPROC_call_window (winproc.c:914) ==3697== by 0x4D5610A: call_window_proc (message.c:2224) ==3697== by 0x4D590CA: send_message (message.c:3266) ==3697== by 0x4D598CD: SendMessageA (message.c:3488) ==3697== by 0x4D88531: WIN_CreateWindowEx (win.c:1607) ==3697== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3697== by 0x4D1A6E9: DIALOG_CreateIndirect (dialog.c:635) ==3697== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==3697== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==3697== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==3697== by 0x4AB70BD: test_dialog_messages (msg.c:12473) ==3697== by 0x4AC637E: func_msg (msg.c:16109) ==3697== by 0x4B23200: run_test (test.h:589) ==3697== by 0x4B2362C: main (test.h:671) ==3697== Address 0x48fdfac is 0 bytes after a recently re-allocated block of size 12 alloc'd ==3697== at 0x7BC5067C: notify_alloc (heap.c:254) ==3697== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3697== by 0x4D1A652: DIALOG_CreateIndirect (dialog.c:631) ==3697== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==3697== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==3697== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==3697== by 0x4AB70BD: test_dialog_messages (msg.c:12473) ==3697== by 0x4AC637E: func_msg (msg.c:16109) ==3697== by 0x4B23200: run_test (test.h:589) ==3697== by 0x4B2362C: main (test.h:671) ==3697== { Memcheck:Addr2 fun:strlenW fun:DEFWND_SetTextW fun:DefWindowProcW fun:test_dlg_proc4 obj:/home/austin/wine-valgrind/dlls/user32/user32.dll.so fun:call_window_proc fun:WINPROC_call_window fun:call_window_proc fun:send_message fun:SendMessageA fun:WIN_CreateWindowEx fun:CreateWindowExA fun:DIALOG_CreateIndirect fun:CreateDialogIndirectParamAorW fun:CreateDialogIndirectParamA fun:CreateDialogParamA fun:test_dialog_messages fun:func_msg fun:run_test fun:main } ==3697== Invalid read of size 2 ==3697== at 0x4D15918: strcpyW (unicode.h:207) ==3697== by 0x4D15E66: DEFWND_SetTextW (defwnd.c:134) ==3697== by 0x4D17FEB: DefWindowProcW (defwnd.c:930) ==3697== by 0x4AB670E: test_dlg_proc4 (msg.c:12241) ==3697== by 0x4D97309: ??? (winproc.c:174) ==3697== by 0x4D97458: call_window_proc (winproc.c:245) ==3697== by 0x4D9989D: WINPROC_call_window (winproc.c:914) ==3697== by 0x4D5610A: call_window_proc (message.c:2224) ==3697== by 0x4D590CA: send_message (message.c:3266) ==3697== by 0x4D598CD: SendMessageA (message.c:3488) ==3697== by 0x4D88531: WIN_CreateWindowEx (win.c:1607) ==3697== by 0x4D88C8D: CreateWindowExA (win.c:1745) ==3697== by 0x4D1A6E9: DIALOG_CreateIndirect (dialog.c:635) ==3697== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==3697== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==3697== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==3697== by 0x4AB70BD: test_dialog_messages (msg.c:12473) ==3697== by 0x4AC637E: func_msg (msg.c:16109) ==3697== by 0x4B23200: run_test (test.h:589) ==3697== by 0x4B2362C: main (test.h:671) ==3697== Address 0x48fdfac is 0 bytes after a recently re-allocated block of size 12 alloc'd ==3697== at 0x7BC5067C: notify_alloc (heap.c:254) ==3697== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==3697== by 0x4D1A652: DIALOG_CreateIndirect (dialog.c:631) ==3697== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==3697== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==3697== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==3697== by 0x4AB70BD: test_dialog_messages (msg.c:12473) ==3697== by 0x4AC637E: func_msg (msg.c:16109) ==3697== by 0x4B23200: run_test (test.h:589) ==3697== by 0x4B2362C: main (test.h:671) ==3697== { Memcheck:Addr2 fun:strcpyW fun:DEFWND_SetTextW fun:DefWindowProcW fun:test_dlg_proc4 obj:/home/austin/wine-valgrind/dlls/user32/user32.dll.so fun:call_window_proc fun:WINPROC_call_window fun:call_window_proc fun:send_message fun:SendMessageA fun:WIN_CreateWindowEx fun:CreateWindowExA fun:DIALOG_CreateIndirect fun:CreateDialogIndirectParamAorW fun:CreateDialogIndirectParamA fun:CreateDialogParamA fun:test_dialog_messages fun:func_msg fun:run_test fun:main } msg.c:12920: Tests skipped: Skipping DBCS WM_CHAR test in SBCS codepage 'ANSI Latin 1' msg.c:13236: Tests skipped: Unable to load Greek keyboard layout msg.c:15048: Test failed: expected QS_HOTKEY << 16 set, got 0 msg.c:15058: Test failed: window hotkey press: 1: the msg 0x0312 was expected, but got msg 0x0100 instead Makefile:436: recipe for target 'msg.ok' failed make[1]: *** [msg.ok] Error 2 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so resource && touch resource.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so scroll && touch scroll.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so static && touch static.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so sysparams && touch sysparams.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 sysparams.c:2490: Tests skipped: Setting depth 24 failed(ret = -2) ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so text && touch text.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so uitools && touch uitools.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so winstation && touch winstation.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 winstation.c:943: Test failed: unexpected foreground window 0xe7012c winstation.c:959: Test succeeded inside todo block: unexpected foreground window (nil) Makefile:595: recipe for target 'winstation.ok' failed make[1]: *** [winstation.ok] Error 2 ../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p user32_test.exe.so wsprintf && touch wsprintf.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/user32/tests' Makefile:17081: recipe for target 'dlls/user32/tests/test' failed make: *** [dlls/user32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/userenv/tests' ../../../tools/runtest -q -P wine -T ../../.. -M userenv.dll -p userenv_test.exe.so userenv && touch userenv.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/userenv/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/usp10/tests' ../../../tools/runtest -q -P wine -T ../../.. -M usp10.dll -p usp10_test.exe.so usp10 && touch usp10.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/usp10/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/uxtheme/tests' ../../../tools/runtest -q -P wine -T ../../.. -M uxtheme.dll -p uxtheme_test.exe.so system && touch system.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 system.c:193: Tests skipped: No active theme, skipping rest of OpenThemeData tests system.c:350: Tests skipped: No active theme, skipping rest of OpenThemeDataEx tests make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/uxtheme/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/vbscript/tests' ../../../tools/runtest -q -P wine -T ../../.. -M vbscript.dll -p vbscript_test.exe.so createobj && touch createobj.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M vbscript.dll -p vbscript_test.exe.so run && touch run.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M vbscript.dll -p vbscript_test.exe.so vbscript && touch vbscript.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/vbscript/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/vcomp/tests' ../../../tools/runtest -q -P wine -T ../../.. -M vcomp.dll -p vcomp_test.exe.so vcomp && touch vcomp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/vcomp/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/version/tests' ../../../tools/runtest -q -P wine -T ../../.. -M version.dll -p version_test.exe.so info && touch info.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M version.dll -p version_test.exe.so install && touch install.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/version/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wbemdisp/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wbemdisp.dll -p wbemdisp_test.exe.so wbemdisp && touch wbemdisp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wbemdisp/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wbemprox/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wbemprox.dll -p wbemprox_test.exe.so query && touch query.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address 0x72c477c (thread 00d3), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: illegal instruction in 32-bit code (0x072c477c). fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:072c477c ESP:04b0e200 EBP:00028350 EFLAGS:00200004( - -- - -P- ) EAX:00000003 EBX:076fe000 ECX:047a9850 EDX:00200000 ESI:04732bc8 EDI:047a9850 Stack dump: 0x04b0e200: 04b0e23c 047a319c 00000003 00000002 0x04b0e210: 00007f30 00007f44 00000082 00007f4c 0x04b0e220: 00800000 00000000 00007f24 00007f28 0x04b0e230: 00007f2c 00000000 047323a8 00007f54 0x04b0e240: 00000000 00000000 00000000 00000000 0x04b0e250: 00000000 00000000 00000000 1158c600 Backtrace: =>0 0x072c477c in radeonsi_dri.so (+0x68a77c) (0x00028350) 1 0x072aafab in radeonsi_dri.so (+0x670faa) (0x04731740) 2 0x072ab332 in radeonsi_dri.so (+0x671331) (0x04b0e398) 3 0x0732b6df radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e398) 4 0x06c6a6fc in radeonsi_dri.so (+0x306fb) (0x0472e180) 5 0x070a2f00 in radeonsi_dri.so (+0x468eff) (0x0472e180) 6 0x070a293d in radeonsi_dri.so (+0x46893c) (0x0472e180) 7 0x06f6381b in radeonsi_dri.so (+0x32981a) (0x0472e180) 8 0x06f5f846 in radeonsi_dri.so (+0x325845) (0x0472e0f8) 9 0x06bd1722 in libgl.so.1 (+0x43721) (0x0467e998) 10 0x06ba6a42 in libgl.so.1 (+0x18a41) (0x0467c470) 11 0x06ba260b in libgl.so.1 (+0x1460a) (0x04b0ee54) 12 0x06ba2784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0ee54) 13 0x0598517f X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0ef28) 14 0x05986bd7 init_opengl+0xfbe(once=0x59e3e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f138) 15 0x7bc969ad RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f188) 16 0x7b482677 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f1b8) 17 0x05987052 has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f1e8) 18 0x0598f0e7 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f208) 19 0x05979e47 X11DRV_wine_get_wgl_driver+0x10(dev=0x490ae68, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f238) 20 0x053a5459 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f268) 21 0x05e64c8b wined3d_adapter_init+0xe0(adapter=0x49078e0, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6247] in wined3d (0x04b0f698) 22 0x05e656bd wined3d_init+0xa5(wined3d=0x49078d0, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6389] in wined3d (0x04b0f6c8) 23 0x05eebb68 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:111] in wined3d (0x04b0f728) 24 0x05d9e58a dxgi_factory_init+0x44(factory=0x49078a0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b0f758) 25 0x05d9e622 dxgi_factory_create+0x51(riid=0x5cea690, factory=0x4b0f824, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b0f7a8) 26 0x05d9cc11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b0f7e8) 27 0x05cd771f fill_videocontroller+0xd6(table=0x5cfb73c, cond=0x4907808) [/home/austin/wine-valgrind/dlls/wbemprox/builtin.c:3106] in wbemprox (0x04b0f9f8) 28 0x05cde058 execute_view+0x6c(view=0x4907828) [/home/austin/wine-valgrind/dlls/wbemprox/query.c:413] in wbemprox (0x04b0fa58) 29 0x05cde316 exec_query+0x59(str="SELECT * FROM Win32_VideoController where availability = '3'", result=0x4b0fbd4) [/home/austin/wine-valgrind/dlls/wbemprox/query.c:480] in wbemprox (0x04b0fa88) 30 0x05ce46b3 wbem_services_ExecQuery+0xd9(iface=, strQueryLanguage=, strQuery=, lFlags=, pCtx=, ppEnum=) [/home/austin/wine-valgrind/dlls/wbemprox/services.c:626] in wbemprox (0x04b0fac8) 31 0x04826178 exec_query+0xc6(services=0x48fdb48, str="SELECT * FROM Win32_VideoController where availability = '3'", result=0x4b0fbd4) [/home/austin/wine-valgrind/dlls/wbemprox/tests/../../../include/wbemcli.h:1166] in wbemprox_test (0x04b0fba8) 32 0x048267ef test_select+0x441(services=0x48fdb48) [/home/austin/wine-valgrind/dlls/wbemprox/tests/query.c:140] in wbemprox_test (0x04b0fc78) 33 0x0482f2d1 func_query+0x191() [/home/austin/wine-valgrind/dlls/wbemprox/tests/query.c:1329] in wbemprox_test (0x04b0fcc8) 34 0x04830af3 run_test+0x96(name="query") [/home/austin/wine-valgrind/dlls/wbemprox/tests/../../../include/wine/test.h:589] in wbemprox_test (0x04b0fd08) 35 0x04830f1f main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/wbemprox/tests/../../../include/wine/test.h:671] in wbemprox_test (0x04b0fdd8) 36 0x04830fac __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in wbemprox_test (0x04b0fe18) 37 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b0fe38) 38 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 39 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 40 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b0ff98) 41 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 42 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b0ffe8) 43 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 44 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec90288) 45 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec90308) 46 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec911b8) 47 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec911f8) 48 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec91734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec91248) 49 0x7c000f80 main+0x145(argc=, argv=0xfec91734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec91688) 50 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x072c477c: repe Modules: Module Address Debug info Name (137 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 483c000 Dwarf wbemprox_test \-PE 4820000- 483c000 \ wbemprox_test ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4b10000- 4c82000 Deferred oleaut32 \-PE 4b30000- 4c82000 \ oleaut32 ELF 4c82000- 4e04000 Deferred ole32 \-PE 4ca0000- 4e04000 \ ole32 ELF 5004000- 5085000 Deferred advapi32 \-PE 5010000- 5085000 \ advapi32 ELF 5085000- 51f9000 Deferred user32 \-PE 50a0000- 51f9000 \ user32 ELF 52f9000- 543d000 Dwarf gdi32 \-PE 5310000- 543d000 \ gdi32 ELF 543d000- 5458000 Deferred version \-PE 5440000- 5458000 \ version ELF 5458000- 54e5000 Deferred rpcrt4 \-PE 5460000- 54e5000 \ rpcrt4 ELF 5531000- 55e9000 Deferred libfreetype.so.6 ELF 57e9000- 5800000 Deferred libz.so.1 ELF 5800000- 5812000 Deferred libbz2.so.1 ELF 5816000- 5854000 Deferred libpng16.so.16 ELF 5858000- 5895000 Deferred libfontconfig.so.1 ELF 5899000- 58c3000 Deferred libexpat.so.1 ELF 58c7000- 58d3000 Deferred libxcursor.so.1 ELF 58d7000- 58de000 Deferred libxfixes.so.3 ELF 58fa000- 58fd000 Deferred libxshmfence.so.1 ELF 591e000- 5943000 Deferred imm32 \-PE 5920000- 5943000 \ imm32 ELF 5947000- 59e7000 Dwarf winex11 \-PE 5950000- 59e7000 \ winex11 ELF 59f3000- 59f7000 Deferred libxinerama.so.1 ELF 59fb000- 5a01000 Deferred libxxf86vm.so.1 ELF 5a05000- 5a11000 Deferred libxrender.so.1 ELF 5a15000- 5a22000 Deferred libxrandr.so.2 ELF 5a26000- 5a2a000 Deferred libxcomposite.so.1 ELF 5a3b000- 5a4e000 Deferred libxext.so.6 ELF 5a52000- 5ba3000 Deferred libx11.so.6 ELF 5bab000- 5bd7000 Deferred libxcb.so.1 ELF 5bdb000- 5bdf000 Deferred libxau.so.6 ELF 5bdf000- 5be6000 Deferred libxdmcp.so.6 ELF 5bee000- 5c0a000 Deferred libbsd.so.0 ELF 5c5a000- 5c6d000 Deferred libxi.so.6 ELF 5c7d000- 5c80000 Deferred libx11-xcb.so.1 ELF 5cad000- 5cb1000 Deferred libxcb-dri3.so.0 ELF 5cb1000- 5cb5000 Deferred libxcb-present.so.0 ELF 5cb5000- 5cbd000 Deferred libxcb-sync.so.1 ELF 5cbe000- 5cfc000 Dwarf wbemprox \-PE 5cc0000- 5cfc000 \ wbemprox ELF 5d04000- 5d48000 Deferred winspool \-PE 5d10000- 5d48000 \ winspool ELF 5d54000- 5d80000 Deferred iphlpapi \-PE 5d60000- 5d80000 \ iphlpapi ELF 5d88000- 5db3000 Dwarf dxgi \-PE 5d90000- 5db3000 \ dxgi ELF 5dd4000- 5dec000 Deferred libresolv.so.2 ELF 5df4000- 5f52000 Dwarf wined3d \-PE 5e00000- 5f52000 \ wined3d ELF 6052000- 608b000 Deferred ws2_32 \-PE 6060000- 608b000 \ ws2_32 ELF 64af000- 64e6000 Deferred libglapi.so.0 ELF 64ea000- 64ee000 Deferred libxdamage.so.1 ELF 64f7000- 657c000 Deferred libcups.so.2 ELF 657c000- 66b2000 Deferred libgnutls.so.28 ELF 69b2000- 69c7000 Deferred libtasn1.so.6 ELF 69c7000- 6a07000 Deferred libnettle.so.6 ELF 6a0b000- 6a42000 Deferred libhogweed.so.4 ELF 6a46000- 6abd000 Deferred libgmp.so.10 ELF 6b5a000- 6b82000 Deferred libudev.so.1 ELF 6b8e000- 6c05000 Dwarf libgl.so.1 ELF 6c05000- 6c22000 Deferred libxcb-glx.so.0 ELF 6c22000- 6c28000 Deferred libxcb-dri2.so.0 ELF 6c28000- 6c3a000 Deferred libdrm.so.2 ELF 6c3a000- 78fc000 Dwarf radeonsi_dri.so ELF 7c00000- 7c06000 Deferred libtxc_dxtn.so ELF 7c3c000- 7c61000 Deferred libdrm_intel.so.1 ELF 7c61000- 7c6b000 Deferred libdrm_nouveau.so.2 ELF 7c6b000- 7c79000 Deferred libdrm_radeon.so.1 ELF 7c7d000- 7c88000 Deferred libdrm_amdgpu.so.1 ELF 7c8c000- 7ca9000 Deferred libelf.so.1 ELF 7dc5000- 7dc8000 Deferred libllvmamdgpuutils.so.3.7 ELF 7dcc000- 7dcf000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7dcf000- 7df9000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 7df9000- 7dfc000 Deferred libllvmx86info.so.3.7 ELF 8510000- 867f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 897f000- 8a47000 Deferred libllvmipo.so.3.7 ELF 8e52000- 8efa000 Deferred libllvmvectorize.so.3.7 ELF 8efa000- 8f54000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8f54000- 9020000 Deferred libllvmamdgpudesc.so.3.7 ELF 9020000- 905c000 Deferred libllvmbitwriter.so.3.7 ELF 905c000- 91c4000 Deferred libllvmx86disassembler.so.3.7 ELF 91c4000- 9267000 Deferred libllvmx86asmparser.so.3.7 ELF 9267000- 92a8000 Deferred libllvmprofiledata.so.3.7 ELF 92c0000- 92f7000 Deferred libllvmipa.so.3.7 ELF 92ff000- 9308000 Deferred libllvmmcdisassembler.so.3.7 ELF 9757000- 99dd000 Deferred libllvmx86codegen.so.3.7 ELF 99dd000- 9aab000 Deferred libllvmasmprinter.so.3.7 ELF 9ab7000- 9ac3000 Deferred libllvmx86utils.so.3.7 ELF a420000- a430000 Deferred libllvmmcjit.so.3.7 ELF a430000- a444000 Deferred libllvmtarget.so.3.7 ELF a61d000- a926000 Deferred libllvmselectiondag.so.3.7 ELF afc3000- b4b1000 Deferred libllvmcodegen.so.3.7 ELF b4b1000- b773000 Deferred libllvmscalaropts.so.3.7 ELF bb6d000- bc5c000 Deferred libllvminstcombine.so.3.7 ELF bc60000- bc6b000 Deferred libpciaccess.so.0 ELF c27d000- c2c8000 Deferred libllvmx86asmprinter.so.3.7 ELF c882000- c92a000 Deferred libllvminstrumentation.so.3.7 ELF cf03000- d069000 Deferred libllvmtransformutils.so.3.7 ELF d069000- d1c6000 Deferred libllvmx86desc.so.3.7 ELF d1c6000- d1f0000 Deferred libllvmexecutionengine.so.3.7 ELF d1f0000- d26e000 Deferred libllvmruntimedyld.so.3.7 ELF d26e000- d28a000 Deferred libgcc_s.so.1 ELF d439000- d726000 Deferred libllvmanalysis.so.3.7 ELF da26000- dacd000 Deferred libllvmobject.so.3.7 ELF dacd000- db0a000 Deferred libllvmmcparser.so.3.7 ELF dc34000- dc85000 Deferred libllvmbitreader.so.3.7 ELF dc85000- dd44000 Deferred libllvmmc.so.3.7 ELF e044000- e0a2000 Deferred libncurses.so.6 ELF e506000- e86c000 Deferred libllvmcore.so.3.7 ELF e96c000- ea89000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 00000112 0 000000e4 0 00000183 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 000000d5 0 00000028 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000c1 0 000000ea 0 000001cd 0 000000ae 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000018e svchost.exe 000001ae 0 00000151 0 0000014d 0 0000012b 0 00000130 0 0000012f 0 00000180 0 000000d1 svchost.exe 00000107 0 00000103 0 0000010d 0 000000f8 0 000000ee 0 0000007e explorer.exe 0000007d 0 000000bc 0 000000be 0 00000088 0 000000e6 0 000000fc (D) Z:\home\austin\wine-valgrind\dlls\wbemprox\tests\wbemprox_test.exe 000000d3 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==4208== 40 bytes in 1 blocks are possibly lost in loss record 858 of 1,434 ==4208== at 0x7BC5067C: notify_alloc (heap.c:254) ==4208== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4208== by 0x5CE2EDC: heap_alloc (wbemprox_private.h:233) ==4208== by 0x5CE514D: WbemServices_create (services.c:888) ==4208== by 0x5CE6DFD: wbem_locator_ConnectServer (wbemlocator.c:198) ==4208== by 0x482F236: IWbemLocator_ConnectServer (wbemcli.h:443) ==4208== by 0x482F236: func_query (???:0) ==4208== by 0x4830AF2: run_test (test.h:589) ==4208== by 0x4830F1E: main (test.h:671) ==4208== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:WbemServices_create fun:wbem_locator_ConnectServer fun:IWbemLocator_ConnectServer fun:func_query fun:run_test fun:main } Makefile:172: recipe for target 'query.ok' failed make[1]: *** [query.ok] Error 29 ../../../tools/runtest -q -P wine -T ../../.. -M wbemprox.dll -p wbemprox_test.exe.so services && touch services.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wbemprox/tests' Makefile:17761: recipe for target 'dlls/wbemprox/tests/test' failed make: *** [dlls/wbemprox/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/webservices/tests' ../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p webservices_test.exe.so channel && touch channel.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p webservices_test.exe.so msg && touch msg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p webservices_test.exe.so proxy && touch proxy.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p webservices_test.exe.so reader && touch reader.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 reader.c:3389: Test failed: 55: got 7ff0000000000000 reader.c:3389: Test failed: 57: got 000000000 Makefile:270: recipe for target 'reader.ok' failed make[1]: *** [reader.ok] Error 2 ../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p webservices_test.exe.so url && touch url.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p webservices_test.exe.so writer && touch writer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Assertion failed at address 0x40009f2 (thread 00a8), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: assertion failed in 32-bit code (0x040009f2). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:040009f2 ESP:04b5f820 EBP:04b5fa88 EFLAGS:00000000( - -- - - - ) EAX:00000000 EBX:000010cb ECX:000010cb EDX:00000006 ESI:00000005 EDI:0440a000 Stack dump: 0x04b5f820: 042858e7 0440a000 04b5f8c4 04286eb9 0x04b5f830: 00000006 04b5f844 00000000 3138382d 0x04b5f840: 30306565 00000020 00000000 00000000 0x04b5f850: 00000000 00000000 00000000 00000000 0x04b5f860: 00000000 00000000 00000000 00000000 0x04b5f870: 00000000 00000000 00000000 00000000 Backtrace: =>0 0x040009f2 GLIBC_2+0x9f2() in ld-linux.so.2 (0x04b5fa88) 1 0x042858e7 gsignal+0x46() in libc.so.6 (0x04b5fa88) 2 0x04286eb9 abort+0x148() in libc.so.6 (0x04b5fa88) 3 0x042c2100 in libc.so.6 (+0x680ff) (0x04b5fa88) 4 0x04352657 __fortify_fail+0x36() in libc.so.6 (0x043b8d63) 5 0x0435261a __stack_chk_fail+0x19() in libc.so.6 (0x04b5fb78) 6 0x04b92214 __stack_chk_fail_local+0x13() in webservices (0x04b5fb78) 7 0x04b8deae text_to_utf8text+0x5ac(text=0x4b5fc78, ret=0x4b5fbac) [/home/austin/wine-valgrind/dlls/webservices/writer.c:1408] in webservices (0x04b5fb78) 8 0x04b8dfbd write_add_text_node+0x8b(writer=0x48eb0d8, value=0x4b5fc78) [/home/austin/wine-valgrind/dlls/webservices/writer.c:1433] in webservices (0x04b5fbc8) 9 0x04b8e16a write_text_node+0x2f(writer=0x48eb0d8, text=0x4b5fc78) [/home/austin/wine-valgrind/dlls/webservices/writer.c:1471] in webservices (0x04b5fbf8) 10 0x04b8e256 WsWriteText+0xad(handle=, text=, error=) [/home/austin/wine-valgrind/dlls/webservices/writer.c:1489] in webservices (0x04b5fc38) 11 0x04a42796 test_double+0x189() [/home/austin/wine-valgrind/dlls/webservices/tests/writer.c:2075] in webservices_test (0x04b5fcb8) 12 0x04a461b0 func_writer+0x7d() [/home/austin/wine-valgrind/dlls/webservices/tests/writer.c:2802] in webservices_test (0x04b5fcc8) 13 0x04a46f79 run_test+0x96(name="writer") [/home/austin/wine-valgrind/dlls/webservices/tests/../../../include/wine/test.h:589] in webservices_test (0x04b5fd08) 14 0x04a473a5 main+0x245(argc=, argv=0x48d1e10) [/home/austin/wine-valgrind/dlls/webservices/tests/../../../include/wine/test.h:671] in webservices_test (0x04b5fdd8) 15 0x04a47436 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in webservices_test (0x04b5fe18) 16 0x7b46ac44 call_process_entry+0xb() in kernel32 (0x04b5fe38) 17 0x7b46ad86 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b5fe88) 18 0x7bc8f88c call_thread_func_wrapper+0xb() in ntdll (0x04b5fea8) 19 0x7bc8f908 call_thread_func+0x71(entry=0x7b46ac46, arg=0x4201000, frame=0x4b5ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2768] in ntdll (0x04b5ff98) 20 0x7bc8f86a call_thread_entry_point+0x11() in ntdll (0x04b5ffb8) 21 0x7bc5ef7c start_process+0x21(kernel_start=0x7b46ac46) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b5ffe8) 22 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 23 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5ef5a, arg=0x7b46ac46, stack=0x4b60000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9e8288) 24 0x7bc5f2cc LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe9e8308) 25 0x7b46b640 __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9e91b8) 26 0x7bc5fa64 __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9e91f8) 27 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe9e9734, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe9e9248) 28 0x7c000f80 main+0x145(argc=, argv=0xfe9e9734) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9e9688) 29 0x0427248e __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x040009f2 GLIBC_2+0x9f2 in ld-linux.so.2: ret Modules: Module Address Debug info Name (50 modules) ELF 4000000- 4024000 Dwarf ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Deferred vgpreload_memcheck-x86-linux.so ELF 4038000- 41f1000 Dwarf libwine.so.1 ELF 4218000- 4222000 Deferred libnss_compat.so.2 ELF 4222000- 423c000 Deferred libnsl.so.1 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440e000 Dwarf libc.so.6 ELF 440e000- 4413000 Deferred libdl.so.2 ELF 4814000- 4832000 Deferred jsproxy \-PE 4820000- 4832000 \ jsproxy ELF 4860000- 48ab000 Deferred libm.so.6 ELF 48ab000- 48b8000 Deferred libnss_nis.so.2 ELF 48b8000- 48cb000 Deferred libnss_files.so.2 ELF 4a04000- 4a55000 Dwarf webservices_test \-PE 4a10000- 4a55000 \ webservices_test ELF 4b60000- 4ba1000 Dwarf webservices \-PE 4b70000- 4ba1000 \ webservices ELF 4ba1000- 4be1000 Deferred winhttp \-PE 4bb0000- 4be1000 \ winhttp ELF 4be1000- 4d53000 Deferred oleaut32 \-PE 4c00000- 4d53000 \ oleaut32 ELF 4e53000- 4fd5000 Deferred ole32 \-PE 4e70000- 4fd5000 \ ole32 ELF 50d5000- 5156000 Deferred advapi32 \-PE 50e0000- 5156000 \ advapi32 ELF 5156000- 52ca000 Deferred user32 \-PE 5170000- 52ca000 \ user32 ELF 53ca000- 550e000 Deferred gdi32 \-PE 53e0000- 550e000 \ gdi32 ELF 550e000- 5529000 Deferred version \-PE 5510000- 5529000 \ version ELF 5529000- 55b6000 Deferred rpcrt4 \-PE 5530000- 55b6000 \ rpcrt4 ELF 55b6000- 55ef000 Deferred ws2_32 \-PE 55c0000- 55ef000 \ ws2_32 ELF 564b000- 5703000 Deferred libfreetype.so.6 ELF 5a07000- 5a1e000 Deferred libz.so.1 ELF 5a26000- 5a38000 Deferred libbz2.so.1 ELF 5a40000- 5a7e000 Deferred libpng16.so.16 ELF 5a82000- 5abf000 Deferred libfontconfig.so.1 ELF 5ac7000- 5af1000 Deferred libexpat.so.1 ELF 5b50000- 5b75000 Deferred imm32 \-PE 5b60000- 5b75000 \ imm32 ELF 5bfc000- 5c18000 Deferred libgcc_s.so.1 ELF 7b400000-7b7f0000 Dwarf kernel32 \-PE 7b410000-7b7f0000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Dwarf Threads: process tid prio (all id:s are in hex) 0000000e services.exe 00000112 0 000000e4 0 00000183 0 000000a7 0 0000001f 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 00000019 0 00000018 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 000000d5 0 00000028 0 00000026 0 00000025 0 00000024 0 00000029 winemine.exe 0000002a 0 000000a5 rpcss.exe 000000c1 0 000000ea 0 000001cd 0 000000ae 0 000000ab 0 000000aa 0 000000a9 0 000000a6 0 0000018e svchost.exe 000001ae 0 00000151 0 0000014d 0 0000012b 0 00000130 0 0000012f 0 00000180 0 000000d1 svchost.exe 00000107 0 00000103 0 0000010d 0 000000f8 0 000000ee 0 0000007e explorer.exe 0000007d 0 000000bc 0 000000be 0 00000088 0 000000e6 0 000000ef (D) Z:\home\austin\wine-valgrind\dlls\webservices\tests\webservices_test.exe 000000a8 0 <== System information: Wine build: wine-1.9.24-203-g0def005 Platform: i386 Version: Windows XP Host system: Linux Host version: 4.8.11-vanilla-workstation-2 ==4299== 736 bytes in 1 blocks are possibly lost in loss record 265 of 290 ==4299== at 0x7BC5067C: notify_alloc (heap.c:254) ==4299== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4299== by 0x4B8A389: heap_alloc_zero (webservices_private.h:157) ==4299== by 0x4B8A3F3: alloc_writer (writer.c:93) ==4299== by 0x4B8A732: WsCreateWriter (writer.c:170) ==4299== by 0x4A4267F: test_double (writer.c:2063) ==4299== by 0x4A461AF: func_writer (writer.c:2802) ==4299== by 0x4A46F78: run_test (test.h:589) ==4299== by 0x4A473A4: main (test.h:671) ==4299== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:alloc_writer fun:WsCreateWriter fun:test_double fun:func_writer fun:run_test fun:main } Makefile:332: recipe for target 'writer.ok' failed make[1]: *** [writer.ok] Error 1 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/webservices/tests' Makefile:17808: recipe for target 'dlls/webservices/tests/test' failed make: *** [dlls/webservices/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wer/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wer.dll -p wer_test.exe.so main && touch main.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wer/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wiaservc/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wiaservc.dll -p wiaservc_test.exe.so wia && touch wia.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wiaservc/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/windowscodecs/tests' ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so bitmap && touch bitmap.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so bmpformat && touch bmpformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so converter && touch converter.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so gifformat && touch gifformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so icoformat && touch icoformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so info && touch info.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so metadata && touch metadata.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so palette && touch palette.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so pngformat && touch pngformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so propertybag && touch propertybag.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so stream && touch stream.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p windowscodecs_test.exe.so tiffformat && touch tiffformat.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/windowscodecs/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/windowscodecsext/tests' ../../../tools/runtest -q -P wine -T ../../.. -M windowscodecsext.dll -p windowscodecsext_test.exe.so transform && touch transform.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/windowscodecsext/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/winhttp/tests' ../../../tools/runtest -q -P wine -T ../../.. -M winhttp.dll -p winhttp_test.exe.so notification && touch notification.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winhttp.dll -p winhttp_test.exe.so url && touch url.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winhttp.dll -p winhttp_test.exe.so winhttp && touch winhttp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/winhttp/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wininet/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wininet.dll -p wininet_test.exe.so ftp && touch ftp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wininet.dll -p wininet_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wininet.dll -p wininet_test.exe.so http && touch http.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==4570== Thread 5: ==4570== Syscall param sendmsg(msg.msg_iov[0]) points to uninitialised byte(s) ==4570== at 0x424C2A7: sendmsg (sendmsg.c:28) ==4570== by 0x55A4509: WS2_send (socket.c:2580) ==4570== by 0x55ACF81: WS2_sendto (socket.c:5619) ==4570== by 0x55ACBA7: WS_send (socket.c:5535) ==4570== by 0x4A29ED0: server_thread (http.c:2403) ==4570== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4570== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4570== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4570== by 0x7BC9953E: start_thread (thread.c:453) ==4570== by 0x4243250: start_thread (pthread_create.c:334) ==4570== by 0x4341B2D: clone (clone.S:122) ==4570== Address 0x49d1a71 is 4,193 bytes inside a recently re-allocated block of size 8,000 alloc'd ==4570== at 0x7BC5067C: notify_alloc (heap.c:254) ==4570== by 0x7BC55190: RtlReAllocateHeap (heap.c:1883) ==4570== by 0x4A28DD5: server_thread (http.c:2116) ==4570== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4570== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4570== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4570== by 0x7BC9953E: start_thread (thread.c:453) ==4570== by 0x4243250: start_thread (pthread_create.c:334) ==4570== by 0x4341B2D: clone (clone.S:122) ==4570== Uninitialised value was created by a client request ==4570== at 0x7BC5044B: mark_block_uninitialized (heap.c:208) ==4570== by 0x7BC505D7: initialize_block (heap.c:239) ==4570== by 0x7BC55251: RtlReAllocateHeap (heap.c:1905) ==4570== by 0x4A28DD5: server_thread (http.c:2116) ==4570== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4570== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4570== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4570== by 0x7BC9953E: start_thread (thread.c:453) ==4570== by 0x4243250: start_thread (pthread_create.c:334) ==4570== by 0x4341B2D: clone (clone.S:122) ==4570== { Memcheck:Param sendmsg(msg.msg_iov[0]) fun:sendmsg fun:WS2_send fun:WS2_sendto fun:WS_send fun:server_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==4570== Thread 1 wininet_test.exe.so: ==4570== 16 bytes in 2 blocks are definitely lost in loss record 100 of 810 ==4570== at 0x7BC5067C: notify_alloc (heap.c:254) ==4570== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4570== by 0x620C09E: SECUR32_makeSecHandle (wrapper.c:44) ==4570== by 0x620CB1C: InitializeSecurityContextW (wrapper.c:354) ==4570== by 0x4BC3833: netcon_secure_connect_setup (netconnection.c:467) ==4570== by 0x4BC4170: NETCON_secure_connect (netconnection.c:617) ==4570== by 0x4BB3234: HTTP_HttpSendRequestW (http.c:4998) ==4570== by 0x4BB4098: AsyncHttpSendRequestProc (http.c:5258) ==4570== by 0x4BC0020: INTERNET_WorkerThreadFunc (internet.c:3724) ==4570== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==4570== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==4570== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4570== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4570== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4570== by 0x7BC9953E: start_thread (thread.c:453) ==4570== by 0x4243250: start_thread (pthread_create.c:334) ==4570== by 0x4341B2D: clone (clone.S:122) ==4570== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:SECUR32_makeSecHandle fun:InitializeSecurityContextW fun:netcon_secure_connect_setup fun:NETCON_secure_connect fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==4570== 288 bytes in 3 blocks are definitely lost in loss record 663 of 810 ==4570== at 0x7BC5067C: notify_alloc (heap.c:254) ==4570== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4570== by 0x4BC20F1: heap_alloc_zero (internet.h:99) ==4570== by 0x4BC33E4: create_netconn (netconnection.c:348) ==4570== by 0x4BB2A82: open_http_connection (http.c:4848) ==4570== by 0x4BB31C1: HTTP_HttpSendRequestW (http.c:4989) ==4570== by 0x4BB4098: AsyncHttpSendRequestProc (http.c:5258) ==4570== by 0x4BC0020: INTERNET_WorkerThreadFunc (internet.c:3724) ==4570== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==4570== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==4570== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4570== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4570== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4570== by 0x7BC9953E: start_thread (thread.c:453) ==4570== by 0x4243250: start_thread (pthread_create.c:334) ==4570== by 0x4341B2D: clone (clone.S:122) ==4570== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==4570== 576 bytes in 6 blocks are possibly lost in loss record 701 of 810 ==4570== at 0x7BC5067C: notify_alloc (heap.c:254) ==4570== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4570== by 0x4BC20F1: heap_alloc_zero (internet.h:99) ==4570== by 0x4BC33E4: create_netconn (netconnection.c:348) ==4570== by 0x4BB2A82: open_http_connection (http.c:4848) ==4570== by 0x4BB31C1: HTTP_HttpSendRequestW (http.c:4989) ==4570== by 0x4BB4098: AsyncHttpSendRequestProc (http.c:5258) ==4570== by 0x4BC0020: INTERNET_WorkerThreadFunc (internet.c:3724) ==4570== by 0x7BC9C2D4: process_rtl_work_item (threadpool.c:349) ==4570== by 0x7BCA01B7: threadpool_worker_proc (threadpool.c:2112) ==4570== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4570== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4570== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4570== by 0x7BC9953E: start_thread (thread.c:453) ==4570== by 0x4243250: start_thread (pthread_create.c:334) ==4570== by 0x4341B2D: clone (clone.S:122) ==4570== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc_zero fun:create_netconn fun:open_http_connection fun:HTTP_HttpSendRequestW fun:AsyncHttpSendRequestProc fun:INTERNET_WorkerThreadFunc fun:process_rtl_work_item fun:threadpool_worker_proc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ../../../tools/runtest -q -P wine -T ../../.. -M wininet.dll -p wininet_test.exe.so internet && touch internet.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wininet.dll -p wininet_test.exe.so url && touch url.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wininet.dll -p wininet_test.exe.so urlcache && touch urlcache.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wininet/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/winmm/tests' ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so capture && touch capture.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==4618== 512 bytes in 1 blocks are definitely lost in loss record 584 of 695 ==4618== at 0x7BC5067C: notify_alloc (heap.c:254) ==4618== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4618== by 0x4CD301B: list_window_children (win.c:319) ==4618== by 0x4CDBADC: WIN_ListChildren (win.c:3300) ==4618== by 0x4CD813B: DestroyWindow (win.c:1882) ==4618== by 0x4B8E087: WINMM_DevicesThreadDone (waveform.c:2446) ==4618== by 0x4B8E44A: WINMM_DevicesThreadProc (waveform.c:2517) ==4618== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4618== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4618== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4618== by 0x7BC9953E: start_thread (thread.c:453) ==4618== by 0x4243250: start_thread (pthread_create.c:334) ==4618== by 0x4341B2D: clone (clone.S:122) ==4618== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:list_window_children fun:WIN_ListChildren fun:DestroyWindow fun:WINMM_DevicesThreadDone fun:WINMM_DevicesThreadProc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so generated && touch generated.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so joystick && touch joystick.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 joystick.c:116: Tests skipped: This test requires a real joystick. ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so mci && touch mci.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==4806== 0 bytes in 2 blocks are definitely lost in loss record 10 of 1,003 ==4806== at 0x7BC5067C: notify_alloc (heap.c:254) ==4806== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4806== by 0x50B1870: IMalloc_fnAlloc (ifs.c:187) ==4806== by 0x50B210F: IMalloc_Alloc (objidl.h:1508) ==4806== by 0x50B210F: CoTaskMemAlloc (???:0) ==4806== by 0x9DA8099: ??? ==4806== by 0x9DACDFF: ??? ==4806== by 0x9DACEE3: ??? ==4806== by 0x9DAD3AC: ??? ==4806== by 0x9DAD8B3: ??? ==4806== by 0x946BE6C: ??? ==4806== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4806== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4806== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4806== by 0x7BC9953E: start_thread (thread.c:453) ==4806== by 0x4243250: start_thread (pthread_create.c:334) ==4806== by 0x4341B2D: clone (clone.S:122) ==4806== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc obj:* obj:* obj:* obj:* obj:* obj:* obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ==4806== 0 bytes in 3 blocks are definitely lost in loss record 11 of 1,003 ==4806== at 0x7BC5067C: notify_alloc (heap.c:254) ==4806== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==4806== by 0x50B1870: IMalloc_fnAlloc (ifs.c:187) ==4806== by 0x50B210F: IMalloc_Alloc (objidl.h:1508) ==4806== by 0x50B210F: CoTaskMemAlloc (???:0) ==4806== by 0x9DA8099: ??? ==4806== by 0x9DACDFF: ??? ==4806== by 0x9DACEE3: ??? ==4806== by 0x9DAD3AC: ??? ==4806== by 0x9DAD8CA: ??? ==4806== by 0x946BE6C: ??? ==4806== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==4806== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==4806== by 0x7BC8F869: ??? (signal_i386.c:2709) ==4806== by 0x7BC9953E: start_thread (thread.c:453) ==4806== by 0x4243250: start_thread (pthread_create.c:334) ==4806== by 0x4341B2D: clone (clone.S:122) ==4806== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:IMalloc_fnAlloc fun:IMalloc_Alloc fun:CoTaskMemAlloc obj:* obj:* obj:* obj:* obj:* obj:* obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so mcicda && touch mcicda.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 mcicda.c:174: Tests skipped: No CD-ROM in drive. ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so midi && touch midi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so mixer && touch mixer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so mmio && touch mmio.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so timer && touch timer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M winmm.dll -p winmm_test.exe.so wave && touch wave.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==5314== 512 bytes in 1 blocks are definitely lost in loss record 597 of 712 ==5314== at 0x7BC5067C: notify_alloc (heap.c:254) ==5314== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5314== by 0x4CD301B: list_window_children (win.c:319) ==5314== by 0x4CDBADC: WIN_ListChildren (win.c:3300) ==5314== by 0x4CD813B: DestroyWindow (win.c:1882) ==5314== by 0x4B8E087: WINMM_DevicesThreadDone (waveform.c:2446) ==5314== by 0x4B8E44A: WINMM_DevicesThreadProc (waveform.c:2517) ==5314== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==5314== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==5314== by 0x7BC8F869: ??? (signal_i386.c:2709) ==5314== by 0x7BC9953E: start_thread (thread.c:453) ==5314== by 0x4243250: start_thread (pthread_create.c:334) ==5314== by 0x4341B2D: clone (clone.S:122) ==5314== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:list_window_children fun:WIN_ListChildren fun:DestroyWindow fun:WINMM_DevicesThreadDone fun:WINMM_DevicesThreadProc obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_thread fun:start_thread fun:clone } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/winmm/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/winspool.drv/tests' ../../../tools/runtest -q -P wine -T ../../.. -M winspool.drv -p winspool.drv_test.exe.so info && touch info.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 info.c:2352: Tests skipped: Level 1 not supported info.c:2352: Tests skipped: Level 3 not supported make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/winspool.drv/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wintab32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wintab32.dll -p wintab32_test.exe.so context && touch context.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wintab32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wintrust/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wintrust.dll -p wintrust_test.exe.so asn && touch asn.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wintrust.dll -p wintrust_test.exe.so crypt && touch crypt.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wintrust.dll -p wintrust_test.exe.so register && touch register.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M wintrust.dll -p wintrust_test.exe.so softpub && touch softpub.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wintrust/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wldap32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wldap32.dll -p wldap32_test.exe.so parse && touch parse.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wldap32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wmiutils/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wmiutils.dll -p wmiutils_test.exe.so path && touch path.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wmiutils/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wmp/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wmp.dll -p wmp_test.exe.so oleobj && touch oleobj.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wmp/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wpc/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wpc.dll -p wpc_test.exe.so wpc && touch wpc.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wpc/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/ws2_32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M ws2_32.dll -p ws2_32_test.exe.so protocol && touch protocol.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M ws2_32.dll -p ws2_32_test.exe.so sock && touch sock.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 sock.c:2540: Tests skipped: SOCK_RAW is not supported sock.c:2586: Test failed: Expected 10047, received 10043 sock.c:2587: Tests skipped: IPX is not supported ==5674== Invalid free() / delete / delete[] / realloc() ==5674== at 0x7BC50772: notify_realloc (heap.c:270) ==5674== by 0x7BC551F6: RtlReAllocateHeap (heap.c:1896) ==5674== by 0x4B84B44: WS_get_local_ips (socket.c:6283) ==5674== by 0x4B84E63: WS_gethostbyname (socket.c:6366) ==5674== by 0x4A30192: test_getsockname (sock.c:4455) ==5674== by 0x4A4DF61: func_sock (sock.c:10072) ==5674== by 0x4A4EDBA: run_test (test.h:589) ==5674== by 0x4A4F1E6: main (test.h:671) ==5674== Address 0x48d7660 is 16 bytes after a recently re-allocated block of size 2,040 alloc'd ==5674== at 0x7BC5067C: notify_alloc (heap.c:254) ==5674== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5674== by 0x4B8495F: WS_get_local_ips (socket.c:6247) ==5674== by 0x4B84E63: WS_gethostbyname (socket.c:6366) ==5674== by 0x4A30192: test_getsockname (sock.c:4455) ==5674== by 0x4A4DF61: func_sock (sock.c:10072) ==5674== by 0x4A4EDBA: run_test (test.h:589) ==5674== by 0x4A4F1E6: main (test.h:671) ==5674== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:WS_get_local_ips fun:WS_gethostbyname fun:test_getsockname fun:func_sock fun:run_test fun:main } ==5674== Invalid free() / delete / delete[] / realloc() ==5674== at 0x7BC50772: notify_realloc (heap.c:270) ==5674== by 0x7BC550C8: RtlReAllocateHeap (heap.c:1860) ==5674== by 0x4B84B44: WS_get_local_ips (socket.c:6283) ==5674== by 0x4B84E63: WS_gethostbyname (socket.c:6366) ==5674== by 0x4A3073B: test_gethostbyname (sock.c:4558) ==5674== by 0x4A4DF7A: func_sock (sock.c:10077) ==5674== by 0x4A4EDBA: run_test (test.h:589) ==5674== by 0x4A4F1E6: main (test.h:671) ==5674== Address 0x5e32c48 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==5674== at 0x7BC5067C: notify_alloc (heap.c:254) ==5674== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5674== by 0x4B849A5: WS_get_local_ips (socket.c:6249) ==5674== by 0x4B84E63: WS_gethostbyname (socket.c:6366) ==5674== by 0x4A3073B: test_gethostbyname (sock.c:4558) ==5674== by 0x4A4DF7A: func_sock (sock.c:10077) ==5674== by 0x4A4EDBA: run_test (test.h:589) ==5674== by 0x4A4F1E6: main (test.h:671) ==5674== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:WS_get_local_ips fun:WS_gethostbyname fun:test_gethostbyname fun:func_sock fun:run_test fun:main } ==5674== Syscall param sendmsg(msg.msg_iov[0]) points to uninitialised byte(s) ==5674== at 0x424C2A7: sendmsg (sendmsg.c:28) ==5674== by 0x4B7A509: WS2_send (socket.c:2580) ==5674== by 0x4B7B790: WS2_transmitfile_base (socket.c:3026) ==5674== by 0x4B7BE2E: WS2_TransmitFile (socket.c:3163) ==5674== by 0x4A436CF: test_TransmitFile (sock.c:8254) ==5674== by 0x4A4DFBC: func_sock (sock.c:10090) ==5674== by 0x4A4EDBA: run_test (test.h:589) ==5674== by 0x4A4F1E6: main (test.h:671) ==5674== Address 0x4b5fa88 is on thread 1's stack ==5674== in frame #4, created by test_TransmitFile (sock.c:8152) ==5674== Uninitialised value was created by a stack allocation ==5674== at 0x4A42FDB: test_TransmitFile (sock.c:8152) ==5674== { Memcheck:Param sendmsg(msg.msg_iov[0]) fun:sendmsg fun:WS2_send fun:WS2_transmitfile_base fun:WS2_TransmitFile fun:test_TransmitFile fun:func_sock fun:run_test fun:main } sock.c:8259: Test failed: TransmitFile header buffer did not match! sock.c:8352: Test failed: TransmitFile header buffer did not match! sock.c:8699: Tests skipped: Cannot test SIO_ADDRESS_LIST_CHANGE, interactive tests must be enabled Makefile:203: recipe for target 'sock.ok' failed make[1]: *** [sock.ok] Error 3 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ws2_32/tests' Makefile:19170: recipe for target 'dlls/ws2_32/tests/test' failed make: *** [dlls/ws2_32/tests/test] Error 2 make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wshom.ocx/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wshom.ocx -p wshom.ocx_test.exe.so wshom && touch wshom.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wshom.ocx/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wsnmp32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wsnmp32.dll -p wsnmp32_test.exe.so wsnmp && touch wsnmp.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wsnmp32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/wtsapi32/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wtsapi32.dll -p wtsapi32_test.exe.so wtsapi && touch wtsapi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wtsapi32/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/xaudio2_7/tests' ../../../tools/runtest -q -P wine -T ../../.. -M xaudio2_7.dll -p xaudio2_7_test.exe.so xaudio2 && touch xaudio2.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==5779== 8 bytes in 1 blocks are definitely lost in loss record 63 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A78C9C: make_xaudio2_factory (xaudio_dll.c:2086) ==5779== by 0x5A79148: XAudio2Create (xaudio_dll.c:2150) ==5779== by 0x482B71D: func_xaudio2 (xaudio2.c:1150) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:make_xaudio2_factory fun:XAudio2Create fun:func_xaudio2 fun:run_test fun:main } ==5779== 12 bytes in 1 blocks are definitely lost in loss record 94 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A719B9: make_xapo_factory (xapofx.c:782) ==5779== by 0x5A71A14: CreateAudioVolumeMeter (xapofx.c:795) ==5779== by 0x482B18E: test_xapo_creation_modern (xaudio2.c:1053) ==5779== by 0x482B44A: test_xapo_creation (xaudio2.c:1089) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:make_xapo_factory fun:CreateAudioVolumeMeter fun:test_xapo_creation_modern fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 12 bytes in 1 blocks are definitely lost in loss record 95 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A719B9: make_xapo_factory (xapofx.c:782) ==5779== by 0x5A71AA1: CreateAudioReverb (xapofx.c:809) ==5779== by 0x482B2BB: test_xapo_creation_modern (xaudio2.c:1067) ==5779== by 0x482B44A: test_xapo_creation (xaudio2.c:1089) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:make_xapo_factory fun:CreateAudioReverb fun:test_xapo_creation_modern fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 12 bytes in 1 blocks are definitely lost in loss record 96 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A719B9: make_xapo_factory (xapofx.c:782) ==5779== by 0x5A71A14: CreateAudioVolumeMeter (xapofx.c:795) ==5779== by 0x48276F0: test_simple_streaming (xaudio2.c:293) ==5779== by 0x482B7E3: func_xaudio2 (xaudio2.c:1158) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:make_xapo_factory fun:CreateAudioVolumeMeter fun:test_simple_streaming fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 339 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A9BE8F: ??? ==5779== by 0x5A9BFE5: ??? ==5779== by 0x482A963: test_xapo_creation_legacy (xaudio2.c:932) ==5779== by 0x482B3D4: test_xapo_creation (xaudio2.c:1083) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:* obj:* fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 340 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5B4BE8F: ??? ==5779== by 0x5B4BFE5: ??? ==5779== by 0x482A963: test_xapo_creation_legacy (xaudio2.c:932) ==5779== by 0x482B3E8: test_xapo_creation (xaudio2.c:1084) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:* obj:* fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 341 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5B4BE8F: ??? ==5779== by 0x5B4BFE5: ??? ==5779== by 0x482A963: test_xapo_creation_legacy (xaudio2.c:932) ==5779== by 0x482B3FC: test_xapo_creation (xaudio2.c:1085) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:* obj:* fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 342 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A41E8F: ??? ==5779== by 0x5A41FE5: ??? ==5779== by 0x482A963: test_xapo_creation_legacy (xaudio2.c:932) ==5779== by 0x482B410: test_xapo_creation (xaudio2.c:1086) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:* obj:* fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 343 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5B4BE8F: ??? ==5779== by 0x5B4BFE5: ??? ==5779== by 0x482A963: test_xapo_creation_legacy (xaudio2.c:932) ==5779== by 0x482B424: test_xapo_creation (xaudio2.c:1087) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:* obj:* fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 344 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5B4BE8F: ??? ==5779== by 0x5B4BFE5: ??? ==5779== by 0x482A963: test_xapo_creation_legacy (xaudio2.c:932) ==5779== by 0x482B438: test_xapo_creation (xaudio2.c:1088) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:* obj:* fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==5779== 48 bytes in 4 blocks are definitely lost in loss record 345 of 741 ==5779== at 0x7BC5067C: notify_alloc (heap.c:254) ==5779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5779== by 0x5A719B9: make_xapo_factory (xapofx.c:782) ==5779== by 0x5A71BDC: CreateFX (xapofx.c:835) ==5779== by 0x482AE80: test_xapo_creation_modern (xaudio2.c:1018) ==5779== by 0x482B44A: test_xapo_creation (xaudio2.c:1089) ==5779== by 0x482B590: func_xaudio2 (xaudio2.c:1122) ==5779== by 0x482C645: run_test (test.h:589) ==5779== by 0x482CA70: main (test.h:671) ==5779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:make_xapo_factory fun:CreateFX fun:test_xapo_creation_modern fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/xaudio2_7/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/xinput1_3/tests' ../../../tools/runtest -q -P wine -T ../../.. -M xinput1_3.dll -p xinput1_3_test.exe.so xinput && touch xinput.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:173: Tests skipped: Controller 0 is not connected xinput.c:173: Tests skipped: Controller 1 is not connected xinput.c:173: Tests skipped: Controller 2 is not connected xinput.c:173: Tests skipped: Controller 3 is not connected xinput.c:202: Tests skipped: Controller 0 is not connected xinput.c:202: Tests skipped: Controller 1 is not connected xinput.c:202: Tests skipped: Controller 2 is not connected xinput.c:202: Tests skipped: Controller 3 is not connected xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:173: Tests skipped: Controller 0 is not connected xinput.c:173: Tests skipped: Controller 1 is not connected xinput.c:173: Tests skipped: Controller 2 is not connected xinput.c:173: Tests skipped: Controller 3 is not connected xinput.c:202: Tests skipped: Controller 0 is not connected xinput.c:202: Tests skipped: Controller 1 is not connected xinput.c:202: Tests skipped: Controller 2 is not connected xinput.c:202: Tests skipped: Controller 3 is not connected xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:173: Tests skipped: Controller 0 is not connected xinput.c:173: Tests skipped: Controller 1 is not connected xinput.c:173: Tests skipped: Controller 2 is not connected xinput.c:173: Tests skipped: Controller 3 is not connected xinput.c:202: Tests skipped: Controller 0 is not connected xinput.c:202: Tests skipped: Controller 1 is not connected xinput.c:202: Tests skipped: Controller 2 is not connected xinput.c:202: Tests skipped: Controller 3 is not connected xinput.c:149: Tests skipped: Controller 0 is not connected xinput.c:149: Tests skipped: Controller 1 is not connected xinput.c:149: Tests skipped: Controller 2 is not connected xinput.c:149: Tests skipped: Controller 3 is not connected xinput.c:237: Tests skipped: Controller 0 is not connected xinput.c:237: Tests skipped: Controller 1 is not connected xinput.c:237: Tests skipped: Controller 2 is not connected xinput.c:237: Tests skipped: Controller 3 is not connected xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:173: Tests skipped: Controller 0 is not connected xinput.c:173: Tests skipped: Controller 1 is not connected xinput.c:173: Tests skipped: Controller 2 is not connected xinput.c:173: Tests skipped: Controller 3 is not connected xinput.c:149: Tests skipped: Controller 0 is not connected xinput.c:149: Tests skipped: Controller 1 is not connected xinput.c:149: Tests skipped: Controller 2 is not connected xinput.c:149: Tests skipped: Controller 3 is not connected xinput.c:237: Tests skipped: Controller 0 is not connected xinput.c:237: Tests skipped: Controller 1 is not connected xinput.c:237: Tests skipped: Controller 2 is not connected xinput.c:237: Tests skipped: Controller 3 is not connected xinput.c:104: Tests skipped: Controller 0 is not connected xinput.c:104: Tests skipped: Controller 1 is not connected xinput.c:104: Tests skipped: Controller 2 is not connected xinput.c:104: Tests skipped: Controller 3 is not connected xinput.c:173: Tests skipped: Controller 0 is not connected xinput.c:173: Tests skipped: Controller 1 is not connected xinput.c:173: Tests skipped: Controller 2 is not connected xinput.c:173: Tests skipped: Controller 3 is not connected xinput.c:202: Tests skipped: Controller 0 is not connected xinput.c:202: Tests skipped: Controller 1 is not connected xinput.c:202: Tests skipped: Controller 2 is not connected xinput.c:202: Tests skipped: Controller 3 is not connected make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/xinput1_3/tests' make[1]: Entering directory '/home/austin/wine-valgrind/dlls/xmllite/tests' ../../../tools/runtest -q -P wine -T ../../.. -M xmllite.dll -p xmllite_test.exe.so reader && touch reader.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ../../../tools/runtest -q -P wine -T ../../.. -M xmllite.dll -p xmllite_test.exe.so writer && touch writer.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==5815== 40 bytes in 1 blocks are definitely lost in loss record 118 of 282 ==5815== at 0x7BC5067C: notify_alloc (heap.c:254) ==5815== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5815== by 0x4B29746: heap_alloc (xmllite_private.h:27) ==5815== by 0x4B2CEAF: create_writer (writer.c:1400) ==5815== by 0x4B2D079: CreateXmlWriterOutputWithEncodingName (writer.c:1437) ==5815== by 0x48310A0: test_writeroutput (writer.c:278) ==5815== by 0x4836F13: func_writer (writer.c:1265) ==5815== by 0x4837CFF: run_test (test.h:589) ==5815== by 0x483812B: main (test.h:671) ==5815== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:create_writer fun:CreateXmlWriterOutputWithEncodingName fun:test_writeroutput fun:func_writer fun:run_test fun:main } ==5815== 40 bytes in 1 blocks are definitely lost in loss record 119 of 282 ==5815== at 0x7BC5067C: notify_alloc (heap.c:254) ==5815== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==5815== by 0x4B29746: heap_alloc (xmllite_private.h:27) ==5815== by 0x4B2CEAF: create_writer (writer.c:1400) ==5815== by 0x4B2D126: CreateXmlWriterOutputWithEncodingCodePage (writer.c:1452) ==5815== by 0x4831206: test_writeroutput (writer.c:292) ==5815== by 0x4836F13: func_writer (writer.c:1265) ==5815== by 0x4837CFF: run_test (test.h:589) ==5815== by 0x483812B: main (test.h:671) ==5815== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:create_writer fun:CreateXmlWriterOutputWithEncodingCodePage fun:test_writeroutput fun:func_writer fun:run_test fun:main } make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/xmllite/tests' make[1]: Entering directory '/home/austin/wine-valgrind/programs/cmd/tests' ../../../tools/runtest -q -P wine -T ../../.. -M cmd.exe -p cmd.exe_test.exe.so batch && touch batch.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/programs/cmd/tests' make[1]: Entering directory '/home/austin/wine-valgrind/programs/reg/tests' ../../../tools/runtest -q -P wine -T ../../.. -M reg.exe -p reg.exe_test.exe.so reg && touch reg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10507== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10507== at 0x7BC5067C: notify_alloc (heap.c:254) ==10507== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10507== by 0x49D3DAE: get_long_key (reg.c:858) ==10507== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10507== by 0x49D4147: wmain (reg.c:975) ==10507== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10507== by 0x7B46AC43: ??? (process.c:1056) ==10507== by 0x7B46AD85: start_process (process.c:1108) ==10507== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10507== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10507== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10507== by 0x7BC5EF7B: start_process (loader.c:3047) ==10507== by 0x404019C: ??? (port.c:78) ==10507== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10509== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10509== at 0x7BC5067C: notify_alloc (heap.c:254) ==10509== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10509== by 0x49D3DAE: get_long_key (reg.c:858) ==10509== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10509== by 0x49D4147: wmain (reg.c:975) ==10509== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10509== by 0x7B46AC43: ??? (process.c:1056) ==10509== by 0x7B46AD85: start_process (process.c:1108) ==10509== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10509== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10509== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10509== by 0x7BC5EF7B: start_process (loader.c:3047) ==10509== by 0x404019C: ??? (port.c:78) ==10509== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10521== 102 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==10521== at 0x7BC5067C: notify_alloc (heap.c:254) ==10521== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10521== by 0x49D3DAE: get_long_key (reg.c:858) ==10521== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10521== by 0x49D4147: wmain (reg.c:975) ==10521== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10521== by 0x7B46AC43: ??? (process.c:1056) ==10521== by 0x7B46AD85: start_process (process.c:1108) ==10521== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10521== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10521== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10521== by 0x7BC5EF7B: start_process (loader.c:3047) ==10521== by 0x404019C: ??? (port.c:78) ==10521== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10525== 100 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==10525== at 0x7BC5067C: notify_alloc (heap.c:254) ==10525== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10525== by 0x49D3DAE: get_long_key (reg.c:858) ==10525== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10525== by 0x49D4147: wmain (reg.c:975) ==10525== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10525== by 0x7B46AC43: ??? (process.c:1056) ==10525== by 0x7B46AD85: start_process (process.c:1108) ==10525== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10525== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10525== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10525== by 0x7BC5EF7B: start_process (loader.c:3047) ==10525== by 0x404019C: ??? (port.c:78) ==10525== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10527== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10527== at 0x7BC5067C: notify_alloc (heap.c:254) ==10527== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10527== by 0x49D3DAE: get_long_key (reg.c:858) ==10527== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10527== by 0x49D4147: wmain (reg.c:975) ==10527== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10527== by 0x7B46AC43: ??? (process.c:1056) ==10527== by 0x7B46AD85: start_process (process.c:1108) ==10527== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10527== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10527== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10527== by 0x7BC5EF7B: start_process (loader.c:3047) ==10527== by 0x404019C: ??? (port.c:78) ==10527== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10529== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10529== at 0x7BC5067C: notify_alloc (heap.c:254) ==10529== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10529== by 0x49D3DAE: get_long_key (reg.c:858) ==10529== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10529== by 0x49D4147: wmain (reg.c:975) ==10529== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10529== by 0x7B46AC43: ??? (process.c:1056) ==10529== by 0x7B46AD85: start_process (process.c:1108) ==10529== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10529== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10529== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10529== by 0x7BC5EF7B: start_process (loader.c:3047) ==10529== by 0x404019C: ??? (port.c:78) ==10529== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10533== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10533== at 0x7BC5067C: notify_alloc (heap.c:254) ==10533== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10533== by 0x49D3DAE: get_long_key (reg.c:858) ==10533== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10533== by 0x49D4147: wmain (reg.c:975) ==10533== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10533== by 0x7B46AC43: ??? (process.c:1056) ==10533== by 0x7B46AD85: start_process (process.c:1108) ==10533== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10533== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10533== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10533== by 0x7BC5EF7B: start_process (loader.c:3047) ==10533== by 0x404019C: ??? (port.c:78) ==10533== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10535== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10535== at 0x7BC5067C: notify_alloc (heap.c:254) ==10535== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10535== by 0x49D3DAE: get_long_key (reg.c:858) ==10535== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10535== by 0x49D4147: wmain (reg.c:975) ==10535== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10535== by 0x7B46AC43: ??? (process.c:1056) ==10535== by 0x7B46AD85: start_process (process.c:1108) ==10535== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10535== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10535== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10535== by 0x7BC5EF7B: start_process (loader.c:3047) ==10535== by 0x404019C: ??? (port.c:78) ==10535== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10539== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10539== at 0x7BC5067C: notify_alloc (heap.c:254) ==10539== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10539== by 0x49D3DAE: get_long_key (reg.c:858) ==10539== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10539== by 0x49D4147: wmain (reg.c:975) ==10539== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10539== by 0x7B46AC43: ??? (process.c:1056) ==10539== by 0x7B46AD85: start_process (process.c:1108) ==10539== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10539== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10539== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10539== by 0x7BC5EF7B: start_process (loader.c:3047) ==10539== by 0x404019C: ??? (port.c:78) ==10539== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10542== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10542== at 0x7BC5067C: notify_alloc (heap.c:254) ==10542== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10542== by 0x49D3DAE: get_long_key (reg.c:858) ==10542== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10542== by 0x49D4147: wmain (reg.c:975) ==10542== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10542== by 0x7B46AC43: ??? (process.c:1056) ==10542== by 0x7B46AD85: start_process (process.c:1108) ==10542== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10542== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10542== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10542== by 0x7BC5EF7B: start_process (loader.c:3047) ==10542== by 0x404019C: ??? (port.c:78) ==10542== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10544== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10544== at 0x7BC5067C: notify_alloc (heap.c:254) ==10544== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10544== by 0x49D3DAE: get_long_key (reg.c:858) ==10544== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10544== by 0x49D4147: wmain (reg.c:975) ==10544== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10544== by 0x7B46AC43: ??? (process.c:1056) ==10544== by 0x7B46AD85: start_process (process.c:1108) ==10544== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10544== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10544== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10544== by 0x7BC5EF7B: start_process (loader.c:3047) ==10544== by 0x404019C: ??? (port.c:78) ==10544== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10549== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10549== at 0x7BC5067C: notify_alloc (heap.c:254) ==10549== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10549== by 0x49D3DAE: get_long_key (reg.c:858) ==10549== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10549== by 0x49D4147: wmain (reg.c:975) ==10549== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10549== by 0x7B46AC43: ??? (process.c:1056) ==10549== by 0x7B46AD85: start_process (process.c:1108) ==10549== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10549== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10549== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10549== by 0x7BC5EF7B: start_process (loader.c:3047) ==10549== by 0x404019C: ??? (port.c:78) ==10549== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10551== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10551== at 0x7BC5067C: notify_alloc (heap.c:254) ==10551== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10551== by 0x49D3DAE: get_long_key (reg.c:858) ==10551== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10551== by 0x49D4147: wmain (reg.c:975) ==10551== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10551== by 0x7B46AC43: ??? (process.c:1056) ==10551== by 0x7B46AD85: start_process (process.c:1108) ==10551== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10551== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10551== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10551== by 0x7BC5EF7B: start_process (loader.c:3047) ==10551== by 0x404019C: ??? (port.c:78) ==10551== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10553== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10553== at 0x7BC5067C: notify_alloc (heap.c:254) ==10553== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10553== by 0x49D3DAE: get_long_key (reg.c:858) ==10553== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10553== by 0x49D4147: wmain (reg.c:975) ==10553== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10553== by 0x7B46AC43: ??? (process.c:1056) ==10553== by 0x7B46AD85: start_process (process.c:1108) ==10553== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10553== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10553== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10553== by 0x7BC5EF7B: start_process (loader.c:3047) ==10553== by 0x404019C: ??? (port.c:78) ==10553== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10557== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10557== at 0x7BC5067C: notify_alloc (heap.c:254) ==10557== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10557== by 0x49D3DAE: get_long_key (reg.c:858) ==10557== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10557== by 0x49D4147: wmain (reg.c:975) ==10557== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10557== by 0x7B46AC43: ??? (process.c:1056) ==10557== by 0x7B46AD85: start_process (process.c:1108) ==10557== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10557== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10557== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10557== by 0x7BC5EF7B: start_process (loader.c:3047) ==10557== by 0x404019C: ??? (port.c:78) ==10557== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10559== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10559== at 0x7BC5067C: notify_alloc (heap.c:254) ==10559== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10559== by 0x49D3DAE: get_long_key (reg.c:858) ==10559== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10559== by 0x49D4147: wmain (reg.c:975) ==10559== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10559== by 0x7B46AC43: ??? (process.c:1056) ==10559== by 0x7B46AD85: start_process (process.c:1108) ==10559== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10559== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10559== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10559== by 0x7BC5EF7B: start_process (loader.c:3047) ==10559== by 0x404019C: ??? (port.c:78) ==10559== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10561== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10561== at 0x7BC5067C: notify_alloc (heap.c:254) ==10561== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10561== by 0x49D3DAE: get_long_key (reg.c:858) ==10561== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10561== by 0x49D4147: wmain (reg.c:975) ==10561== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10561== by 0x7B46AC43: ??? (process.c:1056) ==10561== by 0x7B46AD85: start_process (process.c:1108) ==10561== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10561== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10561== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10561== by 0x7BC5EF7B: start_process (loader.c:3047) ==10561== by 0x404019C: ??? (port.c:78) ==10561== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10565== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10565== at 0x7BC5067C: notify_alloc (heap.c:254) ==10565== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10565== by 0x49D3DAE: get_long_key (reg.c:858) ==10565== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10565== by 0x49D4147: wmain (reg.c:975) ==10565== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10565== by 0x7B46AC43: ??? (process.c:1056) ==10565== by 0x7B46AD85: start_process (process.c:1108) ==10565== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10565== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10565== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10565== by 0x7BC5EF7B: start_process (loader.c:3047) ==10565== by 0x404019C: ??? (port.c:78) ==10565== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10567== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10567== at 0x7BC5067C: notify_alloc (heap.c:254) ==10567== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10567== by 0x49D3DAE: get_long_key (reg.c:858) ==10567== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10567== by 0x49D4147: wmain (reg.c:975) ==10567== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10567== by 0x7B46AC43: ??? (process.c:1056) ==10567== by 0x7B46AD85: start_process (process.c:1108) ==10567== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10567== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10567== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10567== by 0x7BC5EF7B: start_process (loader.c:3047) ==10567== by 0x404019C: ??? (port.c:78) ==10567== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10571== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10571== at 0x7BC5067C: notify_alloc (heap.c:254) ==10571== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10571== by 0x49D3DAE: get_long_key (reg.c:858) ==10571== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10571== by 0x49D4147: wmain (reg.c:975) ==10571== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10571== by 0x7B46AC43: ??? (process.c:1056) ==10571== by 0x7B46AD85: start_process (process.c:1108) ==10571== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10571== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10571== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10571== by 0x7BC5EF7B: start_process (loader.c:3047) ==10571== by 0x404019C: ??? (port.c:78) ==10571== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10573== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10573== at 0x7BC5067C: notify_alloc (heap.c:254) ==10573== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10573== by 0x49D3DAE: get_long_key (reg.c:858) ==10573== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10573== by 0x49D4147: wmain (reg.c:975) ==10573== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10573== by 0x7B46AC43: ??? (process.c:1056) ==10573== by 0x7B46AD85: start_process (process.c:1108) ==10573== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10573== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10573== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10573== by 0x7BC5EF7B: start_process (loader.c:3047) ==10573== by 0x404019C: ??? (port.c:78) ==10573== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10575== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10575== at 0x7BC5067C: notify_alloc (heap.c:254) ==10575== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10575== by 0x49D3DAE: get_long_key (reg.c:858) ==10575== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10575== by 0x49D4147: wmain (reg.c:975) ==10575== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10575== by 0x7B46AC43: ??? (process.c:1056) ==10575== by 0x7B46AD85: start_process (process.c:1108) ==10575== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10575== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10575== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10575== by 0x7BC5EF7B: start_process (loader.c:3047) ==10575== by 0x404019C: ??? (port.c:78) ==10575== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10579== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10579== at 0x7BC5067C: notify_alloc (heap.c:254) ==10579== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10579== by 0x49D3DAE: get_long_key (reg.c:858) ==10579== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10579== by 0x49D4147: wmain (reg.c:975) ==10579== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10579== by 0x7B46AC43: ??? (process.c:1056) ==10579== by 0x7B46AD85: start_process (process.c:1108) ==10579== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10579== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10579== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10579== by 0x7BC5EF7B: start_process (loader.c:3047) ==10579== by 0x404019C: ??? (port.c:78) ==10579== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10599== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10599== at 0x7BC5067C: notify_alloc (heap.c:254) ==10599== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10599== by 0x49D3DAE: get_long_key (reg.c:858) ==10599== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10599== by 0x49D4147: wmain (reg.c:975) ==10599== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10599== by 0x7B46AC43: ??? (process.c:1056) ==10599== by 0x7B46AD85: start_process (process.c:1108) ==10599== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10599== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10599== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10599== by 0x7BC5EF7B: start_process (loader.c:3047) ==10599== by 0x404019C: ??? (port.c:78) ==10599== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10601== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10601== at 0x7BC5067C: notify_alloc (heap.c:254) ==10601== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10601== by 0x49D3DAE: get_long_key (reg.c:858) ==10601== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10601== by 0x49D4147: wmain (reg.c:975) ==10601== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10601== by 0x7B46AC43: ??? (process.c:1056) ==10601== by 0x7B46AD85: start_process (process.c:1108) ==10601== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10601== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10601== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10601== by 0x7BC5EF7B: start_process (loader.c:3047) ==10601== by 0x404019C: ??? (port.c:78) ==10601== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10606== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10606== at 0x7BC5067C: notify_alloc (heap.c:254) ==10606== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10606== by 0x49D3DAE: get_long_key (reg.c:858) ==10606== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10606== by 0x49D4147: wmain (reg.c:975) ==10606== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10606== by 0x7B46AC43: ??? (process.c:1056) ==10606== by 0x7B46AD85: start_process (process.c:1108) ==10606== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10606== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10606== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10606== by 0x7BC5EF7B: start_process (loader.c:3047) ==10606== by 0x404019C: ??? (port.c:78) ==10606== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10608== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10608== at 0x7BC5067C: notify_alloc (heap.c:254) ==10608== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10608== by 0x49D3DAE: get_long_key (reg.c:858) ==10608== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10608== by 0x49D4147: wmain (reg.c:975) ==10608== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10608== by 0x7B46AC43: ??? (process.c:1056) ==10608== by 0x7B46AD85: start_process (process.c:1108) ==10608== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10608== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10608== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10608== by 0x7BC5EF7B: start_process (loader.c:3047) ==10608== by 0x404019C: ??? (port.c:78) ==10608== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10610== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10610== at 0x7BC5067C: notify_alloc (heap.c:254) ==10610== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10610== by 0x49D3DAE: get_long_key (reg.c:858) ==10610== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10610== by 0x49D4147: wmain (reg.c:975) ==10610== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10610== by 0x7B46AC43: ??? (process.c:1056) ==10610== by 0x7B46AD85: start_process (process.c:1108) ==10610== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10610== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10610== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10610== by 0x7BC5EF7B: start_process (loader.c:3047) ==10610== by 0x404019C: ??? (port.c:78) ==10610== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10614== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10614== at 0x7BC5067C: notify_alloc (heap.c:254) ==10614== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10614== by 0x49D3DAE: get_long_key (reg.c:858) ==10614== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10614== by 0x49D4147: wmain (reg.c:975) ==10614== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10614== by 0x7B46AC43: ??? (process.c:1056) ==10614== by 0x7B46AD85: start_process (process.c:1108) ==10614== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10614== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10614== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10614== by 0x7BC5EF7B: start_process (loader.c:3047) ==10614== by 0x404019C: ??? (port.c:78) ==10614== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10616== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10616== at 0x7BC5067C: notify_alloc (heap.c:254) ==10616== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10616== by 0x49D3DAE: get_long_key (reg.c:858) ==10616== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10616== by 0x49D4147: wmain (reg.c:975) ==10616== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10616== by 0x7B46AC43: ??? (process.c:1056) ==10616== by 0x7B46AD85: start_process (process.c:1108) ==10616== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10616== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10616== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10616== by 0x7BC5EF7B: start_process (loader.c:3047) ==10616== by 0x404019C: ??? (port.c:78) ==10616== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10620== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10620== at 0x7BC5067C: notify_alloc (heap.c:254) ==10620== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10620== by 0x49D3DAE: get_long_key (reg.c:858) ==10620== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10620== by 0x49D4147: wmain (reg.c:975) ==10620== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10620== by 0x7B46AC43: ??? (process.c:1056) ==10620== by 0x7B46AD85: start_process (process.c:1108) ==10620== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10620== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10620== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10620== by 0x7BC5EF7B: start_process (loader.c:3047) ==10620== by 0x404019C: ??? (port.c:78) ==10620== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10624== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10624== at 0x7BC5067C: notify_alloc (heap.c:254) ==10624== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10624== by 0x49D3DAE: get_long_key (reg.c:858) ==10624== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10624== by 0x49D4147: wmain (reg.c:975) ==10624== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10624== by 0x7B46AC43: ??? (process.c:1056) ==10624== by 0x7B46AD85: start_process (process.c:1108) ==10624== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10624== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10624== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10624== by 0x7BC5EF7B: start_process (loader.c:3047) ==10624== by 0x404019C: ??? (port.c:78) ==10624== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10626== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10626== at 0x7BC5067C: notify_alloc (heap.c:254) ==10626== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10626== by 0x49D3DAE: get_long_key (reg.c:858) ==10626== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10626== by 0x49D4147: wmain (reg.c:975) ==10626== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10626== by 0x7B46AC43: ??? (process.c:1056) ==10626== by 0x7B46AD85: start_process (process.c:1108) ==10626== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10626== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10626== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10626== by 0x7BC5EF7B: start_process (loader.c:3047) ==10626== by 0x404019C: ??? (port.c:78) ==10626== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10630== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10630== at 0x7BC5067C: notify_alloc (heap.c:254) ==10630== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10630== by 0x49D3DAE: get_long_key (reg.c:858) ==10630== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10630== by 0x49D4147: wmain (reg.c:975) ==10630== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10630== by 0x7B46AC43: ??? (process.c:1056) ==10630== by 0x7B46AD85: start_process (process.c:1108) ==10630== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10630== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10630== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10630== by 0x7BC5EF7B: start_process (loader.c:3047) ==10630== by 0x404019C: ??? (port.c:78) ==10630== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10632== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10632== at 0x7BC5067C: notify_alloc (heap.c:254) ==10632== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10632== by 0x49D3DAE: get_long_key (reg.c:858) ==10632== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10632== by 0x49D4147: wmain (reg.c:975) ==10632== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10632== by 0x7B46AC43: ??? (process.c:1056) ==10632== by 0x7B46AD85: start_process (process.c:1108) ==10632== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10632== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10632== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10632== by 0x7BC5EF7B: start_process (loader.c:3047) ==10632== by 0x404019C: ??? (port.c:78) ==10632== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10634== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10634== at 0x7BC5067C: notify_alloc (heap.c:254) ==10634== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10634== by 0x49D3DAE: get_long_key (reg.c:858) ==10634== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10634== by 0x49D4147: wmain (reg.c:975) ==10634== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10634== by 0x7B46AC43: ??? (process.c:1056) ==10634== by 0x7B46AD85: start_process (process.c:1108) ==10634== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10634== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10634== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10634== by 0x7BC5EF7B: start_process (loader.c:3047) ==10634== by 0x404019C: ??? (port.c:78) ==10634== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10638== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10638== at 0x7BC5067C: notify_alloc (heap.c:254) ==10638== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10638== by 0x49D3DAE: get_long_key (reg.c:858) ==10638== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10638== by 0x49D4147: wmain (reg.c:975) ==10638== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10638== by 0x7B46AC43: ??? (process.c:1056) ==10638== by 0x7B46AD85: start_process (process.c:1108) ==10638== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10638== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10638== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10638== by 0x7BC5EF7B: start_process (loader.c:3047) ==10638== by 0x404019C: ??? (port.c:78) ==10638== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10640== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10640== at 0x7BC5067C: notify_alloc (heap.c:254) ==10640== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10640== by 0x49D3DAE: get_long_key (reg.c:858) ==10640== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10640== by 0x49D4147: wmain (reg.c:975) ==10640== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10640== by 0x7B46AC43: ??? (process.c:1056) ==10640== by 0x7B46AD85: start_process (process.c:1108) ==10640== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10640== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10640== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10640== by 0x7BC5EF7B: start_process (loader.c:3047) ==10640== by 0x404019C: ??? (port.c:78) ==10640== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10642== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10642== at 0x7BC5067C: notify_alloc (heap.c:254) ==10642== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10642== by 0x49D3DAE: get_long_key (reg.c:858) ==10642== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10642== by 0x49D4147: wmain (reg.c:975) ==10642== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10642== by 0x7B46AC43: ??? (process.c:1056) ==10642== by 0x7B46AD85: start_process (process.c:1108) ==10642== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10642== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10642== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10642== by 0x7BC5EF7B: start_process (loader.c:3047) ==10642== by 0x404019C: ??? (port.c:78) ==10642== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10648== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10648== at 0x7BC5067C: notify_alloc (heap.c:254) ==10648== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10648== by 0x49D3DAE: get_long_key (reg.c:858) ==10648== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10648== by 0x49D4147: wmain (reg.c:975) ==10648== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10648== by 0x7B46AC43: ??? (process.c:1056) ==10648== by 0x7B46AD85: start_process (process.c:1108) ==10648== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10648== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10648== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10648== by 0x7BC5EF7B: start_process (loader.c:3047) ==10648== by 0x404019C: ??? (port.c:78) ==10648== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10650== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10650== at 0x7BC5067C: notify_alloc (heap.c:254) ==10650== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10650== by 0x49D3DAE: get_long_key (reg.c:858) ==10650== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10650== by 0x49D4147: wmain (reg.c:975) ==10650== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10650== by 0x7B46AC43: ??? (process.c:1056) ==10650== by 0x7B46AD85: start_process (process.c:1108) ==10650== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10650== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10650== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10650== by 0x7BC5EF7B: start_process (loader.c:3047) ==10650== by 0x404019C: ??? (port.c:78) ==10650== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10653== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10653== at 0x7BC5067C: notify_alloc (heap.c:254) ==10653== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10653== by 0x49D3DAE: get_long_key (reg.c:858) ==10653== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10653== by 0x49D4147: wmain (reg.c:975) ==10653== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10653== by 0x7B46AC43: ??? (process.c:1056) ==10653== by 0x7B46AD85: start_process (process.c:1108) ==10653== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10653== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10653== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10653== by 0x7BC5EF7B: start_process (loader.c:3047) ==10653== by 0x404019C: ??? (port.c:78) ==10653== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10657== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10657== at 0x7BC5067C: notify_alloc (heap.c:254) ==10657== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10657== by 0x49D3DAE: get_long_key (reg.c:858) ==10657== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10657== by 0x49D4147: wmain (reg.c:975) ==10657== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10657== by 0x7B46AC43: ??? (process.c:1056) ==10657== by 0x7B46AD85: start_process (process.c:1108) ==10657== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10657== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10657== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10657== by 0x7BC5EF7B: start_process (loader.c:3047) ==10657== by 0x404019C: ??? (port.c:78) ==10657== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10659== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10659== at 0x7BC5067C: notify_alloc (heap.c:254) ==10659== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10659== by 0x49D3DAE: get_long_key (reg.c:858) ==10659== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10659== by 0x49D4147: wmain (reg.c:975) ==10659== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10659== by 0x7B46AC43: ??? (process.c:1056) ==10659== by 0x7B46AD85: start_process (process.c:1108) ==10659== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10659== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10659== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10659== by 0x7BC5EF7B: start_process (loader.c:3047) ==10659== by 0x404019C: ??? (port.c:78) ==10659== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10663== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10663== at 0x7BC5067C: notify_alloc (heap.c:254) ==10663== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10663== by 0x49D3DAE: get_long_key (reg.c:858) ==10663== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10663== by 0x49D4147: wmain (reg.c:975) ==10663== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10663== by 0x7B46AC43: ??? (process.c:1056) ==10663== by 0x7B46AD85: start_process (process.c:1108) ==10663== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10663== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10663== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10663== by 0x7BC5EF7B: start_process (loader.c:3047) ==10663== by 0x404019C: ??? (port.c:78) ==10663== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10665== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10665== at 0x7BC5067C: notify_alloc (heap.c:254) ==10665== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10665== by 0x49D3DAE: get_long_key (reg.c:858) ==10665== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10665== by 0x49D4147: wmain (reg.c:975) ==10665== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10665== by 0x7B46AC43: ??? (process.c:1056) ==10665== by 0x7B46AD85: start_process (process.c:1108) ==10665== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10665== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10665== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10665== by 0x7BC5EF7B: start_process (loader.c:3047) ==10665== by 0x404019C: ??? (port.c:78) ==10665== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10667== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10667== at 0x7BC5067C: notify_alloc (heap.c:254) ==10667== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10667== by 0x49D3DAE: get_long_key (reg.c:858) ==10667== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10667== by 0x49D4147: wmain (reg.c:975) ==10667== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10667== by 0x7B46AC43: ??? (process.c:1056) ==10667== by 0x7B46AD85: start_process (process.c:1108) ==10667== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10667== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10667== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10667== by 0x7BC5EF7B: start_process (loader.c:3047) ==10667== by 0x404019C: ??? (port.c:78) ==10667== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10671== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10671== at 0x7BC5067C: notify_alloc (heap.c:254) ==10671== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10671== by 0x49D3DAE: get_long_key (reg.c:858) ==10671== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10671== by 0x49D4147: wmain (reg.c:975) ==10671== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10671== by 0x7B46AC43: ??? (process.c:1056) ==10671== by 0x7B46AD85: start_process (process.c:1108) ==10671== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10671== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10671== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10671== by 0x7BC5EF7B: start_process (loader.c:3047) ==10671== by 0x404019C: ??? (port.c:78) ==10671== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10675== 82 bytes in 1 blocks are definitely lost in loss record 134 of 238 ==10675== at 0x7BC5067C: notify_alloc (heap.c:254) ==10675== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10675== by 0x49D3DAE: get_long_key (reg.c:858) ==10675== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10675== by 0x49D4147: wmain (reg.c:975) ==10675== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10675== by 0x7B46AC43: ??? (process.c:1056) ==10675== by 0x7B46AD85: start_process (process.c:1108) ==10675== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10675== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10675== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10675== by 0x7BC5EF7B: start_process (loader.c:3047) ==10675== by 0x404019C: ??? (port.c:78) ==10675== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10677== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10677== at 0x7BC5067C: notify_alloc (heap.c:254) ==10677== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10677== by 0x49D3DAE: get_long_key (reg.c:858) ==10677== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10677== by 0x49D4147: wmain (reg.c:975) ==10677== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10677== by 0x7B46AC43: ??? (process.c:1056) ==10677== by 0x7B46AD85: start_process (process.c:1108) ==10677== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10677== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10677== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10677== by 0x7BC5EF7B: start_process (loader.c:3047) ==10677== by 0x404019C: ??? (port.c:78) ==10677== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10681== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10681== at 0x7BC5067C: notify_alloc (heap.c:254) ==10681== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10681== by 0x49D3DAE: get_long_key (reg.c:858) ==10681== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10681== by 0x49D4147: wmain (reg.c:975) ==10681== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10681== by 0x7B46AC43: ??? (process.c:1056) ==10681== by 0x7B46AD85: start_process (process.c:1108) ==10681== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10681== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10681== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10681== by 0x7BC5EF7B: start_process (loader.c:3047) ==10681== by 0x404019C: ??? (port.c:78) ==10681== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10695== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10695== at 0x7BC5067C: notify_alloc (heap.c:254) ==10695== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10695== by 0x49D3DAE: get_long_key (reg.c:858) ==10695== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10695== by 0x49D4147: wmain (reg.c:975) ==10695== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10695== by 0x7B46AC43: ??? (process.c:1056) ==10695== by 0x7B46AD85: start_process (process.c:1108) ==10695== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10695== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10695== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10695== by 0x7BC5EF7B: start_process (loader.c:3047) ==10695== by 0x404019C: ??? (port.c:78) ==10695== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10698== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10698== at 0x7BC5067C: notify_alloc (heap.c:254) ==10698== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10698== by 0x49D3DAE: get_long_key (reg.c:858) ==10698== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10698== by 0x49D4147: wmain (reg.c:975) ==10698== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10698== by 0x7B46AC43: ??? (process.c:1056) ==10698== by 0x7B46AD85: start_process (process.c:1108) ==10698== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10698== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10698== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10698== by 0x7BC5EF7B: start_process (loader.c:3047) ==10698== by 0x404019C: ??? (port.c:78) ==10698== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10702== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10702== at 0x7BC5067C: notify_alloc (heap.c:254) ==10702== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10702== by 0x49D3DAE: get_long_key (reg.c:858) ==10702== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10702== by 0x49D4147: wmain (reg.c:975) ==10702== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10702== by 0x7B46AC43: ??? (process.c:1056) ==10702== by 0x7B46AD85: start_process (process.c:1108) ==10702== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10702== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10702== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10702== by 0x7BC5EF7B: start_process (loader.c:3047) ==10702== by 0x404019C: ??? (port.c:78) ==10702== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10704== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10704== at 0x7BC5067C: notify_alloc (heap.c:254) ==10704== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10704== by 0x49D3DAE: get_long_key (reg.c:858) ==10704== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10704== by 0x49D4147: wmain (reg.c:975) ==10704== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10704== by 0x7B46AC43: ??? (process.c:1056) ==10704== by 0x7B46AD85: start_process (process.c:1108) ==10704== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10704== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10704== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10704== by 0x7BC5EF7B: start_process (loader.c:3047) ==10704== by 0x404019C: ??? (port.c:78) ==10704== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10707== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10707== at 0x7BC5067C: notify_alloc (heap.c:254) ==10707== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10707== by 0x49D3DAE: get_long_key (reg.c:858) ==10707== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10707== by 0x49D4147: wmain (reg.c:975) ==10707== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10707== by 0x7B46AC43: ??? (process.c:1056) ==10707== by 0x7B46AD85: start_process (process.c:1108) ==10707== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10707== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10707== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10707== by 0x7BC5EF7B: start_process (loader.c:3047) ==10707== by 0x404019C: ??? (port.c:78) ==10707== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10711== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10711== at 0x7BC5067C: notify_alloc (heap.c:254) ==10711== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10711== by 0x49D3DAE: get_long_key (reg.c:858) ==10711== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10711== by 0x49D4147: wmain (reg.c:975) ==10711== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10711== by 0x7B46AC43: ??? (process.c:1056) ==10711== by 0x7B46AD85: start_process (process.c:1108) ==10711== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10711== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10711== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10711== by 0x7BC5EF7B: start_process (loader.c:3047) ==10711== by 0x404019C: ??? (port.c:78) ==10711== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10713== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10713== at 0x7BC5067C: notify_alloc (heap.c:254) ==10713== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10713== by 0x49D3DAE: get_long_key (reg.c:858) ==10713== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10713== by 0x49D4147: wmain (reg.c:975) ==10713== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10713== by 0x7B46AC43: ??? (process.c:1056) ==10713== by 0x7B46AD85: start_process (process.c:1108) ==10713== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10713== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10713== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10713== by 0x7BC5EF7B: start_process (loader.c:3047) ==10713== by 0x404019C: ??? (port.c:78) ==10713== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10717== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10717== at 0x7BC5067C: notify_alloc (heap.c:254) ==10717== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10717== by 0x49D3DAE: get_long_key (reg.c:858) ==10717== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10717== by 0x49D4147: wmain (reg.c:975) ==10717== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10717== by 0x7B46AC43: ??? (process.c:1056) ==10717== by 0x7B46AD85: start_process (process.c:1108) ==10717== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10717== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10717== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10717== by 0x7BC5EF7B: start_process (loader.c:3047) ==10717== by 0x404019C: ??? (port.c:78) ==10717== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10721== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10721== at 0x7BC5067C: notify_alloc (heap.c:254) ==10721== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10721== by 0x49D3DAE: get_long_key (reg.c:858) ==10721== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10721== by 0x49D4147: wmain (reg.c:975) ==10721== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10721== by 0x7B46AC43: ??? (process.c:1056) ==10721== by 0x7B46AD85: start_process (process.c:1108) ==10721== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10721== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10721== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10721== by 0x7BC5EF7B: start_process (loader.c:3047) ==10721== by 0x404019C: ??? (port.c:78) ==10721== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10723== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10723== at 0x7BC5067C: notify_alloc (heap.c:254) ==10723== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10723== by 0x49D3DAE: get_long_key (reg.c:858) ==10723== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10723== by 0x49D4147: wmain (reg.c:975) ==10723== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10723== by 0x7B46AC43: ??? (process.c:1056) ==10723== by 0x7B46AD85: start_process (process.c:1108) ==10723== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10723== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10723== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10723== by 0x7BC5EF7B: start_process (loader.c:3047) ==10723== by 0x404019C: ??? (port.c:78) ==10723== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10727== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10727== at 0x7BC5067C: notify_alloc (heap.c:254) ==10727== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10727== by 0x49D3DAE: get_long_key (reg.c:858) ==10727== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10727== by 0x49D4147: wmain (reg.c:975) ==10727== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10727== by 0x7B46AC43: ??? (process.c:1056) ==10727== by 0x7B46AD85: start_process (process.c:1108) ==10727== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10727== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10727== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10727== by 0x7BC5EF7B: start_process (loader.c:3047) ==10727== by 0x404019C: ??? (port.c:78) ==10727== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10754== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10754== at 0x7BC5067C: notify_alloc (heap.c:254) ==10754== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10754== by 0x49D3DAE: get_long_key (reg.c:858) ==10754== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10754== by 0x49D4147: wmain (reg.c:975) ==10754== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10754== by 0x7B46AC43: ??? (process.c:1056) ==10754== by 0x7B46AD85: start_process (process.c:1108) ==10754== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10754== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10754== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10754== by 0x7BC5EF7B: start_process (loader.c:3047) ==10754== by 0x404019C: ??? (port.c:78) ==10754== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10756== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10756== at 0x7BC5067C: notify_alloc (heap.c:254) ==10756== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10756== by 0x49D3DAE: get_long_key (reg.c:858) ==10756== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10756== by 0x49D4147: wmain (reg.c:975) ==10756== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10756== by 0x7B46AC43: ??? (process.c:1056) ==10756== by 0x7B46AD85: start_process (process.c:1108) ==10756== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10756== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10756== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10756== by 0x7BC5EF7B: start_process (loader.c:3047) ==10756== by 0x404019C: ??? (port.c:78) ==10756== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10760== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10760== at 0x7BC5067C: notify_alloc (heap.c:254) ==10760== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10760== by 0x49D3DAE: get_long_key (reg.c:858) ==10760== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10760== by 0x49D4147: wmain (reg.c:975) ==10760== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10760== by 0x7B46AC43: ??? (process.c:1056) ==10760== by 0x7B46AD85: start_process (process.c:1108) ==10760== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10760== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10760== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10760== by 0x7BC5EF7B: start_process (loader.c:3047) ==10760== by 0x404019C: ??? (port.c:78) ==10760== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10762== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10762== at 0x7BC5067C: notify_alloc (heap.c:254) ==10762== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10762== by 0x49D3DAE: get_long_key (reg.c:858) ==10762== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10762== by 0x49D4147: wmain (reg.c:975) ==10762== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10762== by 0x7B46AC43: ??? (process.c:1056) ==10762== by 0x7B46AD85: start_process (process.c:1108) ==10762== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10762== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10762== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10762== by 0x7BC5EF7B: start_process (loader.c:3047) ==10762== by 0x404019C: ??? (port.c:78) ==10762== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10764== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10764== at 0x7BC5067C: notify_alloc (heap.c:254) ==10764== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10764== by 0x49D3DAE: get_long_key (reg.c:858) ==10764== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10764== by 0x49D4147: wmain (reg.c:975) ==10764== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10764== by 0x7B46AC43: ??? (process.c:1056) ==10764== by 0x7B46AD85: start_process (process.c:1108) ==10764== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10764== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10764== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10764== by 0x7BC5EF7B: start_process (loader.c:3047) ==10764== by 0x404019C: ??? (port.c:78) ==10764== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10768== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10768== at 0x7BC5067C: notify_alloc (heap.c:254) ==10768== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10768== by 0x49D3DAE: get_long_key (reg.c:858) ==10768== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10768== by 0x49D4147: wmain (reg.c:975) ==10768== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10768== by 0x7B46AC43: ??? (process.c:1056) ==10768== by 0x7B46AD85: start_process (process.c:1108) ==10768== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10768== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10768== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10768== by 0x7BC5EF7B: start_process (loader.c:3047) ==10768== by 0x404019C: ??? (port.c:78) ==10768== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10770== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10770== at 0x7BC5067C: notify_alloc (heap.c:254) ==10770== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10770== by 0x49D3DAE: get_long_key (reg.c:858) ==10770== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10770== by 0x49D4147: wmain (reg.c:975) ==10770== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10770== by 0x7B46AC43: ??? (process.c:1056) ==10770== by 0x7B46AD85: start_process (process.c:1108) ==10770== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10770== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10770== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10770== by 0x7BC5EF7B: start_process (loader.c:3047) ==10770== by 0x404019C: ??? (port.c:78) ==10770== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10772== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10772== at 0x7BC5067C: notify_alloc (heap.c:254) ==10772== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10772== by 0x49D3DAE: get_long_key (reg.c:858) ==10772== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10772== by 0x49D4147: wmain (reg.c:975) ==10772== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10772== by 0x7B46AC43: ??? (process.c:1056) ==10772== by 0x7B46AD85: start_process (process.c:1108) ==10772== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10772== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10772== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10772== by 0x7BC5EF7B: start_process (loader.c:3047) ==10772== by 0x404019C: ??? (port.c:78) ==10772== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10776== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10776== at 0x7BC5067C: notify_alloc (heap.c:254) ==10776== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10776== by 0x49D3DAE: get_long_key (reg.c:858) ==10776== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10776== by 0x49D4147: wmain (reg.c:975) ==10776== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10776== by 0x7B46AC43: ??? (process.c:1056) ==10776== by 0x7B46AD85: start_process (process.c:1108) ==10776== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10776== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10776== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10776== by 0x7BC5EF7B: start_process (loader.c:3047) ==10776== by 0x404019C: ??? (port.c:78) ==10776== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10779== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10779== at 0x7BC5067C: notify_alloc (heap.c:254) ==10779== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10779== by 0x49D3DAE: get_long_key (reg.c:858) ==10779== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10779== by 0x49D4147: wmain (reg.c:975) ==10779== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10779== by 0x7B46AC43: ??? (process.c:1056) ==10779== by 0x7B46AD85: start_process (process.c:1108) ==10779== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10779== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10779== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10779== by 0x7BC5EF7B: start_process (loader.c:3047) ==10779== by 0x404019C: ??? (port.c:78) ==10779== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10783== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10783== at 0x7BC5067C: notify_alloc (heap.c:254) ==10783== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10783== by 0x49D3DAE: get_long_key (reg.c:858) ==10783== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10783== by 0x49D4147: wmain (reg.c:975) ==10783== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10783== by 0x7B46AC43: ??? (process.c:1056) ==10783== by 0x7B46AD85: start_process (process.c:1108) ==10783== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10783== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10783== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10783== by 0x7BC5EF7B: start_process (loader.c:3047) ==10783== by 0x404019C: ??? (port.c:78) ==10783== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10785== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10785== at 0x7BC5067C: notify_alloc (heap.c:254) ==10785== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10785== by 0x49D3DAE: get_long_key (reg.c:858) ==10785== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10785== by 0x49D4147: wmain (reg.c:975) ==10785== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10785== by 0x7B46AC43: ??? (process.c:1056) ==10785== by 0x7B46AD85: start_process (process.c:1108) ==10785== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10785== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10785== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10785== by 0x7BC5EF7B: start_process (loader.c:3047) ==10785== by 0x404019C: ??? (port.c:78) ==10785== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10787== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10787== at 0x7BC5067C: notify_alloc (heap.c:254) ==10787== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10787== by 0x49D3DAE: get_long_key (reg.c:858) ==10787== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10787== by 0x49D4147: wmain (reg.c:975) ==10787== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10787== by 0x7B46AC43: ??? (process.c:1056) ==10787== by 0x7B46AD85: start_process (process.c:1108) ==10787== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10787== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10787== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10787== by 0x7BC5EF7B: start_process (loader.c:3047) ==10787== by 0x404019C: ??? (port.c:78) ==10787== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10791== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10791== at 0x7BC5067C: notify_alloc (heap.c:254) ==10791== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10791== by 0x49D3DAE: get_long_key (reg.c:858) ==10791== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10791== by 0x49D4147: wmain (reg.c:975) ==10791== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10791== by 0x7B46AC43: ??? (process.c:1056) ==10791== by 0x7B46AD85: start_process (process.c:1108) ==10791== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10791== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10791== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10791== by 0x7BC5EF7B: start_process (loader.c:3047) ==10791== by 0x404019C: ??? (port.c:78) ==10791== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10793== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10793== at 0x7BC5067C: notify_alloc (heap.c:254) ==10793== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10793== by 0x49D3DAE: get_long_key (reg.c:858) ==10793== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10793== by 0x49D4147: wmain (reg.c:975) ==10793== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10793== by 0x7B46AC43: ??? (process.c:1056) ==10793== by 0x7B46AD85: start_process (process.c:1108) ==10793== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10793== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10793== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10793== by 0x7BC5EF7B: start_process (loader.c:3047) ==10793== by 0x404019C: ??? (port.c:78) ==10793== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10795== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10795== at 0x7BC5067C: notify_alloc (heap.c:254) ==10795== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10795== by 0x49D3DAE: get_long_key (reg.c:858) ==10795== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10795== by 0x49D4147: wmain (reg.c:975) ==10795== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10795== by 0x7B46AC43: ??? (process.c:1056) ==10795== by 0x7B46AD85: start_process (process.c:1108) ==10795== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10795== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10795== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10795== by 0x7BC5EF7B: start_process (loader.c:3047) ==10795== by 0x404019C: ??? (port.c:78) ==10795== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10799== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10799== at 0x7BC5067C: notify_alloc (heap.c:254) ==10799== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10799== by 0x49D3DAE: get_long_key (reg.c:858) ==10799== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10799== by 0x49D4147: wmain (reg.c:975) ==10799== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10799== by 0x7B46AC43: ??? (process.c:1056) ==10799== by 0x7B46AD85: start_process (process.c:1108) ==10799== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10799== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10799== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10799== by 0x7BC5EF7B: start_process (loader.c:3047) ==10799== by 0x404019C: ??? (port.c:78) ==10799== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10819== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10819== at 0x7BC5067C: notify_alloc (heap.c:254) ==10819== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10819== by 0x49D3DAE: get_long_key (reg.c:858) ==10819== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10819== by 0x49D4147: wmain (reg.c:975) ==10819== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10819== by 0x7B46AC43: ??? (process.c:1056) ==10819== by 0x7B46AD85: start_process (process.c:1108) ==10819== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10819== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10819== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10819== by 0x7BC5EF7B: start_process (loader.c:3047) ==10819== by 0x404019C: ??? (port.c:78) ==10819== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10821== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10821== at 0x7BC5067C: notify_alloc (heap.c:254) ==10821== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10821== by 0x49D3DAE: get_long_key (reg.c:858) ==10821== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10821== by 0x49D4147: wmain (reg.c:975) ==10821== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10821== by 0x7B46AC43: ??? (process.c:1056) ==10821== by 0x7B46AD85: start_process (process.c:1108) ==10821== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10821== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10821== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10821== by 0x7BC5EF7B: start_process (loader.c:3047) ==10821== by 0x404019C: ??? (port.c:78) ==10821== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10825== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10825== at 0x7BC5067C: notify_alloc (heap.c:254) ==10825== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10825== by 0x49D3DAE: get_long_key (reg.c:858) ==10825== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10825== by 0x49D4147: wmain (reg.c:975) ==10825== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10825== by 0x7B46AC43: ??? (process.c:1056) ==10825== by 0x7B46AD85: start_process (process.c:1108) ==10825== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10825== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10825== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10825== by 0x7BC5EF7B: start_process (loader.c:3047) ==10825== by 0x404019C: ??? (port.c:78) ==10825== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10827== 82 bytes in 1 blocks are definitely lost in loss record 135 of 238 ==10827== at 0x7BC5067C: notify_alloc (heap.c:254) ==10827== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10827== by 0x49D3DAE: get_long_key (reg.c:858) ==10827== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10827== by 0x49D4147: wmain (reg.c:975) ==10827== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10827== by 0x7B46AC43: ??? (process.c:1056) ==10827== by 0x7B46AD85: start_process (process.c:1108) ==10827== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10827== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10827== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10827== by 0x7BC5EF7B: start_process (loader.c:3047) ==10827== by 0x404019C: ??? (port.c:78) ==10827== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10835== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10835== at 0x7BC5067C: notify_alloc (heap.c:254) ==10835== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10835== by 0x49D3DAE: get_long_key (reg.c:858) ==10835== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10835== by 0x49D4147: wmain (reg.c:975) ==10835== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10835== by 0x7B46AC43: ??? (process.c:1056) ==10835== by 0x7B46AD85: start_process (process.c:1108) ==10835== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10835== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10835== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10835== by 0x7BC5EF7B: start_process (loader.c:3047) ==10835== by 0x404019C: ??? (port.c:78) ==10835== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10840== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10840== at 0x7BC5067C: notify_alloc (heap.c:254) ==10840== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10840== by 0x49D3DAE: get_long_key (reg.c:858) ==10840== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10840== by 0x49D4147: wmain (reg.c:975) ==10840== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10840== by 0x7B46AC43: ??? (process.c:1056) ==10840== by 0x7B46AD85: start_process (process.c:1108) ==10840== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10840== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10840== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10840== by 0x7BC5EF7B: start_process (loader.c:3047) ==10840== by 0x404019C: ??? (port.c:78) ==10840== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10844== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10844== at 0x7BC5067C: notify_alloc (heap.c:254) ==10844== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10844== by 0x49D3DAE: get_long_key (reg.c:858) ==10844== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10844== by 0x49D4147: wmain (reg.c:975) ==10844== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10844== by 0x7B46AC43: ??? (process.c:1056) ==10844== by 0x7B46AD85: start_process (process.c:1108) ==10844== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10844== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10844== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10844== by 0x7BC5EF7B: start_process (loader.c:3047) ==10844== by 0x404019C: ??? (port.c:78) ==10844== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10846== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10846== at 0x7BC5067C: notify_alloc (heap.c:254) ==10846== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10846== by 0x49D3DAE: get_long_key (reg.c:858) ==10846== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10846== by 0x49D4147: wmain (reg.c:975) ==10846== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10846== by 0x7B46AC43: ??? (process.c:1056) ==10846== by 0x7B46AD85: start_process (process.c:1108) ==10846== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10846== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10846== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10846== by 0x7BC5EF7B: start_process (loader.c:3047) ==10846== by 0x404019C: ??? (port.c:78) ==10846== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10850== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10850== at 0x7BC5067C: notify_alloc (heap.c:254) ==10850== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10850== by 0x49D3DAE: get_long_key (reg.c:858) ==10850== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10850== by 0x49D4147: wmain (reg.c:975) ==10850== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10850== by 0x7B46AC43: ??? (process.c:1056) ==10850== by 0x7B46AD85: start_process (process.c:1108) ==10850== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10850== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10850== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10850== by 0x7BC5EF7B: start_process (loader.c:3047) ==10850== by 0x404019C: ??? (port.c:78) ==10850== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10858== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10858== at 0x7BC5067C: notify_alloc (heap.c:254) ==10858== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10858== by 0x49D3DAE: get_long_key (reg.c:858) ==10858== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10858== by 0x49D4147: wmain (reg.c:975) ==10858== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10858== by 0x7B46AC43: ??? (process.c:1056) ==10858== by 0x7B46AD85: start_process (process.c:1108) ==10858== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10858== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10858== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10858== by 0x7BC5EF7B: start_process (loader.c:3047) ==10858== by 0x404019C: ??? (port.c:78) ==10858== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10860== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10860== at 0x7BC5067C: notify_alloc (heap.c:254) ==10860== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10860== by 0x49D3DAE: get_long_key (reg.c:858) ==10860== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10860== by 0x49D4147: wmain (reg.c:975) ==10860== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10860== by 0x7B46AC43: ??? (process.c:1056) ==10860== by 0x7B46AD85: start_process (process.c:1108) ==10860== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10860== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10860== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10860== by 0x7BC5EF7B: start_process (loader.c:3047) ==10860== by 0x404019C: ??? (port.c:78) ==10860== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10862== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10862== at 0x7BC5067C: notify_alloc (heap.c:254) ==10862== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10862== by 0x49D3DAE: get_long_key (reg.c:858) ==10862== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10862== by 0x49D4147: wmain (reg.c:975) ==10862== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10862== by 0x7B46AC43: ??? (process.c:1056) ==10862== by 0x7B46AD85: start_process (process.c:1108) ==10862== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10862== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10862== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10862== by 0x7BC5EF7B: start_process (loader.c:3047) ==10862== by 0x404019C: ??? (port.c:78) ==10862== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10866== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10866== at 0x7BC5067C: notify_alloc (heap.c:254) ==10866== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10866== by 0x49D3DAE: get_long_key (reg.c:858) ==10866== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10866== by 0x49D4147: wmain (reg.c:975) ==10866== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10866== by 0x7B46AC43: ??? (process.c:1056) ==10866== by 0x7B46AD85: start_process (process.c:1108) ==10866== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10866== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10866== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10866== by 0x7BC5EF7B: start_process (loader.c:3047) ==10866== by 0x404019C: ??? (port.c:78) ==10866== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10868== 82 bytes in 1 blocks are definitely lost in loss record 50 of 74 ==10868== at 0x7BC5067C: notify_alloc (heap.c:254) ==10868== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10868== by 0x49D3DAE: get_long_key (reg.c:858) ==10868== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10868== by 0x49D4147: wmain (reg.c:975) ==10868== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10868== by 0x7B46AC43: ??? (process.c:1056) ==10868== by 0x7B46AD85: start_process (process.c:1108) ==10868== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10868== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10868== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10868== by 0x7BC5EF7B: start_process (loader.c:3047) ==10868== by 0x404019C: ??? (port.c:78) ==10868== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10870== 82 bytes in 1 blocks are definitely lost in loss record 50 of 74 ==10870== at 0x7BC5067C: notify_alloc (heap.c:254) ==10870== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10870== by 0x49D3DAE: get_long_key (reg.c:858) ==10870== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10870== by 0x49D4147: wmain (reg.c:975) ==10870== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10870== by 0x7B46AC43: ??? (process.c:1056) ==10870== by 0x7B46AD85: start_process (process.c:1108) ==10870== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10870== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10870== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10870== by 0x7BC5EF7B: start_process (loader.c:3047) ==10870== by 0x404019C: ??? (port.c:78) ==10870== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10874== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10874== at 0x7BC5067C: notify_alloc (heap.c:254) ==10874== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10874== by 0x49D3DAE: get_long_key (reg.c:858) ==10874== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10874== by 0x49D4147: wmain (reg.c:975) ==10874== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10874== by 0x7B46AC43: ??? (process.c:1056) ==10874== by 0x7B46AD85: start_process (process.c:1108) ==10874== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10874== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10874== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10874== by 0x7BC5EF7B: start_process (loader.c:3047) ==10874== by 0x404019C: ??? (port.c:78) ==10874== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10876== 96 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==10876== at 0x7BC5067C: notify_alloc (heap.c:254) ==10876== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10876== by 0x49D3DAE: get_long_key (reg.c:858) ==10876== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10876== by 0x49D4147: wmain (reg.c:975) ==10876== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10876== by 0x7B46AC43: ??? (process.c:1056) ==10876== by 0x7B46AD85: start_process (process.c:1108) ==10876== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10876== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10876== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10876== by 0x7BC5EF7B: start_process (loader.c:3047) ==10876== by 0x404019C: ??? (port.c:78) ==10876== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10878== 96 bytes in 1 blocks are definitely lost in loss record 55 of 74 ==10878== at 0x7BC5067C: notify_alloc (heap.c:254) ==10878== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10878== by 0x49D3DAE: get_long_key (reg.c:858) ==10878== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10878== by 0x49D4147: wmain (reg.c:975) ==10878== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10878== by 0x7B46AC43: ??? (process.c:1056) ==10878== by 0x7B46AD85: start_process (process.c:1108) ==10878== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10878== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10878== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10878== by 0x7BC5EF7B: start_process (loader.c:3047) ==10878== by 0x404019C: ??? (port.c:78) ==10878== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10883== 96 bytes in 1 blocks are definitely lost in loss record 55 of 74 ==10883== at 0x7BC5067C: notify_alloc (heap.c:254) ==10883== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10883== by 0x49D3DAE: get_long_key (reg.c:858) ==10883== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10883== by 0x49D4147: wmain (reg.c:975) ==10883== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10883== by 0x7B46AC43: ??? (process.c:1056) ==10883== by 0x7B46AD85: start_process (process.c:1108) ==10883== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10883== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10883== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10883== by 0x7BC5EF7B: start_process (loader.c:3047) ==10883== by 0x404019C: ??? (port.c:78) ==10883== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10885== 96 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==10885== at 0x7BC5067C: notify_alloc (heap.c:254) ==10885== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10885== by 0x49D3DAE: get_long_key (reg.c:858) ==10885== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10885== by 0x49D4147: wmain (reg.c:975) ==10885== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10885== by 0x7B46AC43: ??? (process.c:1056) ==10885== by 0x7B46AD85: start_process (process.c:1108) ==10885== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10885== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10885== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10885== by 0x7BC5EF7B: start_process (loader.c:3047) ==10885== by 0x404019C: ??? (port.c:78) ==10885== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10889== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10889== at 0x7BC5067C: notify_alloc (heap.c:254) ==10889== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10889== by 0x49D3DAE: get_long_key (reg.c:858) ==10889== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10889== by 0x49D4147: wmain (reg.c:975) ==10889== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10889== by 0x7B46AC43: ??? (process.c:1056) ==10889== by 0x7B46AD85: start_process (process.c:1108) ==10889== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10889== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10889== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10889== by 0x7BC5EF7B: start_process (loader.c:3047) ==10889== by 0x404019C: ??? (port.c:78) ==10889== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10891== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10891== at 0x7BC5067C: notify_alloc (heap.c:254) ==10891== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10891== by 0x49D3DAE: get_long_key (reg.c:858) ==10891== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10891== by 0x49D4147: wmain (reg.c:975) ==10891== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10891== by 0x7B46AC43: ??? (process.c:1056) ==10891== by 0x7B46AD85: start_process (process.c:1108) ==10891== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10891== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10891== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10891== by 0x7BC5EF7B: start_process (loader.c:3047) ==10891== by 0x404019C: ??? (port.c:78) ==10891== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10893== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10893== at 0x7BC5067C: notify_alloc (heap.c:254) ==10893== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10893== by 0x49D3DAE: get_long_key (reg.c:858) ==10893== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10893== by 0x49D4147: wmain (reg.c:975) ==10893== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10893== by 0x7B46AC43: ??? (process.c:1056) ==10893== by 0x7B46AD85: start_process (process.c:1108) ==10893== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10893== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10893== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10893== by 0x7BC5EF7B: start_process (loader.c:3047) ==10893== by 0x404019C: ??? (port.c:78) ==10893== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10897== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10897== at 0x7BC5067C: notify_alloc (heap.c:254) ==10897== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10897== by 0x49D3DAE: get_long_key (reg.c:858) ==10897== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10897== by 0x49D4147: wmain (reg.c:975) ==10897== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10897== by 0x7B46AC43: ??? (process.c:1056) ==10897== by 0x7B46AD85: start_process (process.c:1108) ==10897== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10897== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10897== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10897== by 0x7BC5EF7B: start_process (loader.c:3047) ==10897== by 0x404019C: ??? (port.c:78) ==10897== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10917== 96 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==10917== at 0x7BC5067C: notify_alloc (heap.c:254) ==10917== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10917== by 0x49D3DAE: get_long_key (reg.c:858) ==10917== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10917== by 0x49D4147: wmain (reg.c:975) ==10917== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10917== by 0x7B46AC43: ??? (process.c:1056) ==10917== by 0x7B46AD85: start_process (process.c:1108) ==10917== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10917== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10917== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10917== by 0x7BC5EF7B: start_process (loader.c:3047) ==10917== by 0x404019C: ??? (port.c:78) ==10917== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10919== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10919== at 0x7BC5067C: notify_alloc (heap.c:254) ==10919== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10919== by 0x49D3DAE: get_long_key (reg.c:858) ==10919== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10919== by 0x49D4147: wmain (reg.c:975) ==10919== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10919== by 0x7B46AC43: ??? (process.c:1056) ==10919== by 0x7B46AD85: start_process (process.c:1108) ==10919== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10919== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10919== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10919== by 0x7BC5EF7B: start_process (loader.c:3047) ==10919== by 0x404019C: ??? (port.c:78) ==10919== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10923== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10923== at 0x7BC5067C: notify_alloc (heap.c:254) ==10923== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10923== by 0x49D3DAE: get_long_key (reg.c:858) ==10923== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10923== by 0x49D4147: wmain (reg.c:975) ==10923== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10923== by 0x7B46AC43: ??? (process.c:1056) ==10923== by 0x7B46AD85: start_process (process.c:1108) ==10923== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10923== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10923== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10923== by 0x7BC5EF7B: start_process (loader.c:3047) ==10923== by 0x404019C: ??? (port.c:78) ==10923== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10925== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10925== at 0x7BC5067C: notify_alloc (heap.c:254) ==10925== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10925== by 0x49D3DAE: get_long_key (reg.c:858) ==10925== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10925== by 0x49D4147: wmain (reg.c:975) ==10925== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10925== by 0x7B46AC43: ??? (process.c:1056) ==10925== by 0x7B46AD85: start_process (process.c:1108) ==10925== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10925== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10925== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10925== by 0x7BC5EF7B: start_process (loader.c:3047) ==10925== by 0x404019C: ??? (port.c:78) ==10925== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10927== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10927== at 0x7BC5067C: notify_alloc (heap.c:254) ==10927== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10927== by 0x49D3DAE: get_long_key (reg.c:858) ==10927== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10927== by 0x49D4147: wmain (reg.c:975) ==10927== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10927== by 0x7B46AC43: ??? (process.c:1056) ==10927== by 0x7B46AD85: start_process (process.c:1108) ==10927== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10927== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10927== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10927== by 0x7BC5EF7B: start_process (loader.c:3047) ==10927== by 0x404019C: ??? (port.c:78) ==10927== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10931== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10931== at 0x7BC5067C: notify_alloc (heap.c:254) ==10931== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10931== by 0x49D3DAE: get_long_key (reg.c:858) ==10931== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10931== by 0x49D4147: wmain (reg.c:975) ==10931== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10931== by 0x7B46AC43: ??? (process.c:1056) ==10931== by 0x7B46AD85: start_process (process.c:1108) ==10931== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10931== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10931== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10931== by 0x7BC5EF7B: start_process (loader.c:3047) ==10931== by 0x404019C: ??? (port.c:78) ==10931== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10933== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10933== at 0x7BC5067C: notify_alloc (heap.c:254) ==10933== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10933== by 0x49D3DAE: get_long_key (reg.c:858) ==10933== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10933== by 0x49D4147: wmain (reg.c:975) ==10933== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10933== by 0x7B46AC43: ??? (process.c:1056) ==10933== by 0x7B46AD85: start_process (process.c:1108) ==10933== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10933== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10933== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10933== by 0x7BC5EF7B: start_process (loader.c:3047) ==10933== by 0x404019C: ??? (port.c:78) ==10933== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10935== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10935== at 0x7BC5067C: notify_alloc (heap.c:254) ==10935== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10935== by 0x49D3DAE: get_long_key (reg.c:858) ==10935== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10935== by 0x49D4147: wmain (reg.c:975) ==10935== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10935== by 0x7B46AC43: ??? (process.c:1056) ==10935== by 0x7B46AD85: start_process (process.c:1108) ==10935== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10935== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10935== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10935== by 0x7BC5EF7B: start_process (loader.c:3047) ==10935== by 0x404019C: ??? (port.c:78) ==10935== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10941== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10941== at 0x7BC5067C: notify_alloc (heap.c:254) ==10941== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10941== by 0x49D3DAE: get_long_key (reg.c:858) ==10941== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10941== by 0x49D4147: wmain (reg.c:975) ==10941== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10941== by 0x7B46AC43: ??? (process.c:1056) ==10941== by 0x7B46AD85: start_process (process.c:1108) ==10941== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10941== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10941== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10941== by 0x7BC5EF7B: start_process (loader.c:3047) ==10941== by 0x404019C: ??? (port.c:78) ==10941== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10944== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==10944== at 0x7BC5067C: notify_alloc (heap.c:254) ==10944== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10944== by 0x49D3DAE: get_long_key (reg.c:858) ==10944== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10944== by 0x49D4147: wmain (reg.c:975) ==10944== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10944== by 0x7B46AC43: ??? (process.c:1056) ==10944== by 0x7B46AD85: start_process (process.c:1108) ==10944== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10944== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10944== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10944== by 0x7BC5EF7B: start_process (loader.c:3047) ==10944== by 0x404019C: ??? (port.c:78) ==10944== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10948== 82 bytes in 1 blocks are definitely lost in loss record 134 of 238 ==10948== at 0x7BC5067C: notify_alloc (heap.c:254) ==10948== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10948== by 0x49D3DAE: get_long_key (reg.c:858) ==10948== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10948== by 0x49D4147: wmain (reg.c:975) ==10948== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10948== by 0x7B46AC43: ??? (process.c:1056) ==10948== by 0x7B46AD85: start_process (process.c:1108) ==10948== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10948== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10948== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10948== by 0x7BC5EF7B: start_process (loader.c:3047) ==10948== by 0x404019C: ??? (port.c:78) ==10948== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10950== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==10950== at 0x7BC5067C: notify_alloc (heap.c:254) ==10950== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==10950== by 0x49D3DAE: get_long_key (reg.c:858) ==10950== by 0x49D3E8C: parse_registry_key (reg.c:878) ==10950== by 0x49D4147: wmain (reg.c:975) ==10950== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==10950== by 0x7B46AC43: ??? (process.c:1056) ==10950== by 0x7B46AD85: start_process (process.c:1108) ==10950== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==10950== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==10950== by 0x7BC8F869: ??? (signal_i386.c:2709) ==10950== by 0x7BC5EF7B: start_process (loader.c:3047) ==10950== by 0x404019C: ??? (port.c:78) ==10950== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:get_long_key fun:parse_registry_key fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/programs/reg/tests' make[1]: Entering directory '/home/austin/wine-valgrind/programs/regedit/tests' ../../../tools/runtest -q -P wine -T ../../.. -M regedit.exe -p regedit.exe_test.exe.so regedit && touch regedit.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unable to add the registry value 'TestNoEndQuote' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unsupported registry data type [REG_NONE] regedit: Unable to add the registry value 'TestNoBeginQuote' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unsupported registry data type [REG_NONE] regedit: Unable to add the registry value 'TestNoQuotes' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: The line '"NameNoEndQuote=' was not recognized. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unexpected end of line in '"MixedQuotes=Asdffdsa'. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unable to add the registry value 'Wine3' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Unable to add the registry value 'Wine4' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Invalid hexadecimal value. regedit: Unable to add the registry value 'Wine5' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Invalid hexadecimal value. regedit: Unable to add the registry value 'Wine6' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unable to convert hexadecimal data. An invalid value was encountered at ' #comment'. regedit: Unable to add the registry value 'Wine7' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Unable to convert hexadecimal data. An invalid value was encountered at ' ;comment'. regedit: Unable to add the registry value 'Wine9' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 regedit: Unsupported registry data type [REG_NONE] regedit: Unable to add the registry value 'Wine13' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Unsupported registry data type [REG_NONE] regedit: Unable to add the registry value 'Wine14' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Unsupported registry data type [REG_NONE] regedit: Unable to add the registry value 'Wine21' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Unsupported registry data type [REG_NONE] regedit: Unable to add the registry value 'Wine22' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Invalid hexadecimal value. regedit: Unable to add the registry value 'Wine23' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. regedit: Invalid hexadecimal value. regedit: Unable to add the registry value 'Wine24' to 'HKEY_CURRENT_USER\Software\Wine\regedit_test'. make[1]: Leaving directory '/home/austin/wine-valgrind/programs/regedit/tests' make[1]: Entering directory '/home/austin/wine-valgrind/programs/services/tests' ../../../tools/runtest -q -P wine -T ../../.. -M services.exe -p services.exe_test.exe.so service && touch service.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/programs/services/tests' make[1]: Entering directory '/home/austin/wine-valgrind/programs/wscript/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wscript.exe -p wscript.exe_test.exe.so run && touch run.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==11357== 86 bytes in 1 blocks are possibly lost in loss record 464 of 793 ==11357== at 0x7BC5067C: notify_alloc (heap.c:254) ==11357== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==11357== by 0x7B449700: HeapAlloc (heap.c:271) ==11357== by 0x7B44AE2F: LocalAlloc (heap.c:970) ==11357== by 0x4B3B22B: CommandLineToArgvW (shell32_main.c:198) ==11357== by 0x4985A00: wWinMain (main.c:429) ==11357== by 0x4985EFE: wmain (exe_wmain.c:51) ==11357== by 0x4985DD7: __wine_spec_exe_wentry (exe_wentry.c:36) ==11357== by 0x7B46AC43: ??? (process.c:1056) ==11357== by 0x7B46AD85: start_process (process.c:1108) ==11357== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==11357== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==11357== by 0x7BC8F869: ??? (signal_i386.c:2709) ==11357== by 0x7BC5EF7B: start_process (loader.c:3047) ==11357== by 0x404019C: ??? (port.c:78) ==11357== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:LocalAlloc fun:CommandLineToArgvW fun:wWinMain fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==11371== 88 bytes in 1 blocks are possibly lost in loss record 389 of 657 ==11371== at 0x7BC5067C: notify_alloc (heap.c:254) ==11371== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==11371== by 0x7B449700: HeapAlloc (heap.c:271) ==11371== by 0x7B44AE2F: LocalAlloc (heap.c:970) ==11371== by 0x4B3B22B: CommandLineToArgvW (shell32_main.c:198) ==11371== by 0x4985A00: wWinMain (main.c:429) ==11371== by 0x4985EFE: wmain (exe_wmain.c:51) ==11371== by 0x4985DD7: __wine_spec_exe_wentry (exe_wentry.c:36) ==11371== by 0x7B46AC43: ??? (process.c:1056) ==11371== by 0x7B46AD85: start_process (process.c:1108) ==11371== by 0x7BC8F88B: ??? (signal_i386.c:2709) ==11371== by 0x7BC8F907: call_thread_func (signal_i386.c:2768) ==11371== by 0x7BC8F869: ??? (signal_i386.c:2709) ==11371== by 0x7BC5EF7B: start_process (loader.c:3047) ==11371== by 0x404019C: ??? (port.c:78) ==11371== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:HeapAlloc fun:LocalAlloc fun:CommandLineToArgvW fun:wWinMain fun:wmain fun:__wine_spec_exe_wentry obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so fun:start_process obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:call_thread_func obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so fun:start_process obj:/home/austin/wine-valgrind/libs/wine/libwine.so.1.0 } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: Leaving directory '/home/austin/wine-valgrind/programs/wscript/tests' make[1]: Entering directory '/home/austin/wine-valgrind/programs/xcopy/tests' ../../../tools/runtest -q -P wine -T ../../.. -M xcopy.exe -p xcopy.exe_test.exe.so xcopy && touch xcopy.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 xcopy.c:59: Test failed: xcopy /D:d-m-y test returned rc=258 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==11441== 60 bytes in 1 blocks are definitely lost in loss record 46 of 75 ==11441== at 0x7BC5067C: notify_alloc (heap.c:254) ==11441== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==11441== by 0x4A016D4: WINECON_CreateKeyName (registry.c:76) ==11441== by 0x4A01DA9: WINECON_RegLoad (registry.c:239) ==11441== by 0x4A0938D: WINECON_Init (wineconsole.c:666) ==11441== by 0x4A09E1C: WinMain (wineconsole.c:901) ==11441== by 0x4A0A3DE: main (exe_main.c:49) ==11441== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:WINECON_CreateKeyName fun:WINECON_RegLoad fun:WINECON_Init fun:WinMain fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 xcopy.c:64: Test failed: xcopy /D:m-d-y test failed rc=258 xcopy.c:65: Test failed: xcopy did not create xcopytest\xcopy1 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==11447== 60 bytes in 1 blocks are definitely lost in loss record 46 of 75 ==11447== at 0x7BC5067C: notify_alloc (heap.c:254) ==11447== by 0x7BC54AFD: RtlAllocateHeap (heap.c:1716) ==11447== by 0x4A016D4: WINECON_CreateKeyName (registry.c:76) ==11447== by 0x4A01DA9: WINECON_RegLoad (registry.c:239) ==11447== by 0x4A0938D: WINECON_Init (wineconsole.c:666) ==11447== by 0x4A09E1C: WinMain (wineconsole.c:901) ==11447== by 0x4A0A3DE: main (exe_main.c:49) ==11447== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:WINECON_CreateKeyName fun:WINECON_RegLoad fun:WINECON_Init fun:WinMain fun:main } preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 xcopy.c:70: Test failed: xcopy /D:m-d-y test failed rc=258 xcopy.c:71: Test failed: xcopy did not create xcopytest\xcopy1 Makefile:170: recipe for target 'xcopy.ok' failed make[1]: *** [xcopy.ok] Error 5 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/programs/xcopy/tests' Makefile:21875: recipe for target 'programs/xcopy/tests/test' failed make: *** [programs/xcopy/tests/test] Error 2 make: Target 'test' not remade because of errors.