started with: ./tools/valgrind/valgrind-full.sh --rebuild --suppress-known HEAD is: commit 7bc274e2c453b0c2155d4c375915f6cf2b7a3b2d Author: Austin English Date: Fri Feb 3 18:51:35 2017 -0600 Revert "ntdll: Avoid possible deadlock by using _exit() in NtTerminateProcess." This reverts commit 4a1629c4117fda9eca63b6f56ea45771dc9734ac. It breaks wine + valgrind, see https://bugs.winehq.org/show_bug.cgi?id=39097 commit before HEAD is: commit e08ed6cac218fc09044d06d3cbe2a54f7ec898cf Author: Alexandre Julliard Date: Fri Feb 3 20:26:41 2017 +0100 Release 2.1. Signed-off-by: Alexandre Julliard diff --git a/ANNOUNCE b/ANNOUNCE index d462935..3879881 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,25 +1,19 @@ -The Wine team is proud to announce that the stable release Wine 2.0 -is now available. - -This release represents over a year of development effort and around -6,600 individual changes. The main highlights are the support for -Microsoft Office 2013, and the 64-bit support on macOS. - -It also contains a lot of improvements across the board, as well as -support for many new applications and games. See the release notes -below for a summary of the major changes. - -This is the first release made on the new time-based, annual release -schedule. This implies that some features that are being worked on but -couldn't be finished in time have been deferred to the next -development cycle. This includes in particular the Direct3D command -stream, the full HID support, the Android graphics driver, and -message-mode pipes. +The Wine development release 2.1 is now available. + +What's new in this release (see below for details): + - Many fixes that were deferred during code freeze. + - More Shader Model 5 instructions. + - A number of improvements to MIME message handling. + - Line breaking improvements in DirectWrite. + - HID bus service now running by default. + - Direct2D rendering improvements. + - Various bug fixes. + - Source release tarballs now use xz compression. The source is available from the following locations: - http://dl.winehq.org/wine/source/2.0/wine-2.0.tar.bz2 - http://mirrors.ibiblio.org/wine/source/2.0/wine-2.0.tar.bz2 + http://dl.winehq.org/wine/source/2.x/wine-2.1.tar.xz + http://mirrors.ibiblio.org/wine/source/2.x/wine-2.1.tar.xz Binary packages for various distributions will be available from: @@ -35,310 +29,604 @@ AUTHORS in the distribution for the complete list. ---------------------------------------------------------------- -What's new in Wine 2.0 -====================== - - -*** Text and fonts - -- More DirectWrite features are implemented, including: - - Drawing of underlines. - - Renderer sees drawing effect associated with text segment. - - Support for color fonts in COLR/CPAL format. - - Initial font fallback support, builtin data for some of CJK ranges. - - Support for Wine-specific font replacement registry settings. - - Improved font metrics resolution in case of incomplete or - ambiguous font data. - - Support for EUDC font collection based on current registry - settings. - -- Font embedding in PDF files is supported. - -- The RichEdit control supports bulleted and numbered lists. - -- Bold glyphs can be synthesized also for bitmap fonts. - -- Character tables are based on version 9.0.0 of the Unicode Standard. - - -*** Graphics - -- Window, bitmap and GDI DC render targets are implemented in Direct2D. - -- A wide range of optimizations make the DIB engine noticeably faster. - -- GDI graphic paths are reimplemented for better compatibility; they - are also supported with enhanced metafiles. - -- Gradients are supported in GDI enhanced metafiles. - -- Metafiles are better supported in GdiPlus. - -- The macOS graphics driver supports a high-resolution ("Retina") - rendering mode. It can be enabled by setting "RetinaMode" to "Y" - under HKCU\Software\Wine\Mac Driver. - - -*** User interface - -- The clipboard support is reimplemented for better compatibility; - copy & paste of HTML text is also improved. Drag & drop works more - smoothly. - -- In desktop mode, the taskbar displays running applications and - allows switching between them. - -- Version 4 of the system tray notification protocol is implemented. - -- In desktop mode, some less common display resolutions like 640x400 - and 1280x960 are supported. - -- More user interface elements scale correctly with high-DPI screens. - - -*** Direct3D - -- More Direct3D 10 and 11 features are implemented, including: - - Several more shader model 4 and 5 shader instructions. - - Several more resource formats. - - Integer vertex shader inputs. - - Typeless resources. - - sRGB read/write support. - - Depth and stencil clears. - - Depth-only draws. - - Array textures. - - Index buffer offsets. - - Unordered access views. - - Primitive restart. - -- The WineD3D graphics card database recognizes more graphics - cards. When available, the GLX_MESA_query_renderer GLX extension is - used to provide more accurate information about the graphics card. - -- The (system) memory layout of texture resources more closely matches - Windows. This affects applications that write beyond the bounds of a - MIP-level, like for example League of Legends. - -- The implementation of non-maskable multisample anti-aliasing is more - correct. In particular, when the ARB_internalformat_query extension - is available, only quality levels corresponding to specific sample - counts supported by the OpenGL implementation are reported to the - application. Previously, reporting a large number of non-maskable - multisample anti-aliasing quality levels would break some - applications. - -- Direct3D 11 feature levels are supported. - -- Retrieving a GDI device context from DXGI surfaces is - implemented. This is used for rendering to DXGI surfaces using GDI. - -- More DXGI swapchain methods are implemented, particularly those - relating to switching display modes and switching to and from - fullscreen. - -- When ARB_clip_control and ARB_viewport_array are both supported, - position fixups are slightly more efficient. - -- The APPLE_client_storage extension is no longer used. It caused more - problems than it solved. - -- New HKCU\Software\Wine\Direct3D registry keys: - - "CheckFloatConstants" (REG_SZ). - Setting this to "enabled" enables additional run-time bounds - checking on relatively addressed shader constant access. This - helps some (broken) applications, but comes at a performance cost. - - "MaxShaderModelHS", "MaxShaderModelDS" and "MaxShaderModelCS" (REG_DWORD). - These limit the maximum supported shader model for hull, domain, - and compute shaders respectively, analogous to the existing - "MaxShaderModelVS", "MaxShaderModelGS", "MaxShaderModelPS" - keys. Note that these shader types are new in shader model 5, so - setting this to anything lower than 5 will effectively disable - them. - - "SampleCount" (REG_DWORD). - Setting this registry key will force the multisample anti-aliasing - sample count to the specified value for swapchain render - targets. This allows anti-aliasing to be forced on applications - that do not otherwise support anti-aliasing themselves, but may - have no effect or break the application depending on the specific - application. - - -*** DirectDraw - -- Retrieving a GDI device context from a DirectDraw surface is - implemented in a more accurate way. In particular, retrieving a GDI - device context for a "client memory" surface will retrieve a GDI - device context that's backed by that same client memory. - -- A number of fixes related to vertex transformation in early - DirectDraw versions have been made. - - -*** D3DX - -- The support for the D3DX 9 effect framework is more complete, in - particular: - - There is initial support for preshaders. - - Many more effect states are correctly applied. - -- D3DX 10 and 11 asynchronous data loaders are implemented. - -- The d3dx9 DLLs no longer forward to d3dx9_36, but are built from the - same source instead. - -- The d3dcompiler DLLs no longer forward to d3dcompiler_43, but are - built from the same source instead. - - -*** Sound and video - -- GStreamer version 1.0 is supported for audio and video streams. - -- DirectSound supports downmixing from 5.1 and 4.0 formats to stereo. - - -*** Internet and networking - -- The Web Services API is supported. The XML reader and writer are - implemented, along with support for serializing many common data - types. Basic support for making SOAP calls is also included. This - enables Microsoft Office 2013 online activation. - -- The Gecko engine is updated to the version from Firefox 47. +Bugs fixed in 2.1 (total 62): + + 12714 SimCity 2000: crashes when saving or opening a file. + 14897 DirectDraw games (Jojo's Fashion Show 2: Las Cruces demo, The Chosen: Well of Souls) try to lock surface with invalid dwSize + 17923 No music in X-COM: UFO Defense + 18631 regedit gives wrong error when renaming keys + 20026 Metal Fatigue crashes on file enumeration (Game saves, skirmish maps) + 23547 Railroad Tycoon 2: Platinum (Steam) crashes when setting resolution to 800x600 + 24112 Xara Designer Pro 6 demo crashes when you select 'continue trial' + 25516 Sims 3 flickering white textures + 26264 Tanktics won't start + 26531 Frogger crashes upon exiting game + 27580 Wine Notepad command line parser eats the first 2 letters when the path starts with / (it should only do this for valid command line options) + 28982 Application Zero no Kiseki crashes when it tries to play 44100Hz Stereo WAVE music + 30308 Property sheet fails to display Page Title + 31113 Civilization V crashes after specific amount of game turns + 32627 MiroVideoConverter setup gives error "Internal error occurred" + 34171 Actua Soccer 2 API error when loading game from menu + 34960 Civilization V crashes when loading game + 35155 PDF-Xchange Viewer chrashes when a lot of documents opened + 35993 Graphical Glitches in Agarest Generations of War + 36501 Dyn Updater v4.1.10 'DynUpConfig' tool crashes on startup ('Win32_NetworkAdapterConfiguration' WMI class 'Description' property missing) + 37034 Stars!: Crashes on startup + 38192 Harry Potter 7 Part 2 crash at begins + 38773 msvcr100/110/120 is missing reader_writer_lock (required for MSVC 2013) + 39180 Witcher 3 Wild hunt Wine 1.7.50 not working + 39920 Nanocad 5.: file open/import dialog does not open + 40133 No Limits 2 help system needs GetOverhangMetrics() + 40392 ComicRack 0.9.x (.NET 4.5 app) hangs/crashes on startup when executing WMI query + 40592 wininet:http test regression + 40629 Noto Nastaliq Urdu font crashes notepad during shaping + 40938 UE4 games (Ether One Redux, Into the Stars) crash while loading with "BackBuffer->GetResource() has 3 refs, expected 1" error + 41052 Failure to create D3D9 device on i915 + 41175 Firefox tooltips are partly black + 41324 Everspace (UE4) requires bfi opcode + 41579 Rush for Berlin Gold crashes after the intro videos + 41623 Odallus The Dark Call crashes while starting if a force feedback enabled controller is plugged in + 41706 Adam Standalone demo: Backend can't handle opcode ubfe + 41747 HYPACK 2016 crashes trying to set "AllowXsltScript" and "AllowDocumentFunction" properties + 41905 The Solus Project: Backend can't handle opcode bfrev + 42022 The Magic School Bus Explores The Solar System needs msvideo.dll16.DRAWDIBPROFILEDISPLAY + 42023 The Magic School Bus Explores The Solar System crashes on launch; appears to be missing some files + 42078 Dungeons & Dragons: Chronicles of Mystara needs d3dx11_43.dll.D3DX11CreateShaderResourceViewFromMemory + 42093 Git for Windows 2.7.0 needs unimplemented function rstrtmgr.dll.RmShutdown + 42096 Steam -> RPGMaker 2003 needs unimplemented function KERNEL32.dll.BaseFlushAppcompatCache + 42141 Star Ruler 2 black screen on macOS and FreeBSD + 42159 Sega Bug crashes immediately + 42163 Sid Meier's Railroads! crash loading multiplayer lobby + 42166 Custom application needs mf3216.dll (32-bit to 16-bit metafile converter) + 42187 Radeon R9 285 GPU incorrectly recognized + 42206 Gauntlet character screen background is corrupted. + 42212 WOLF RPG Editor: Division by zero when winegstreamer is enabled + 42218 mshtml/tests/dom crashes in xul while running test_doc_elem + 42220 secur32/tests/ntlm crashes in ntlm_EncryptMessage due to null pointer + 42221 ws2_32/tests/sock fails with "TransmitFile header buffer did not match!" + 42225 MSRX v2015a (magnetic stripe reader app) crashed on plugplay:hidraw_set_feature_report Output feature buffer too small + 42244 QQ 2013 needs ntoskrnl.exe.IoCreateFile + 42245 QQ 2013 needs ntoskrnl.exe.KeClearEvent + 42257 Warpath 21st Century does not have sound + 42299 Ecue Lighting Suite installer fails to start, needs ntdll.NtLoadKey2 + 42303 Magic: The Gathering Online 4.0 crashes when entering the battle + 42306 One Note Free Retail installer crashes in xmllite + 42312 ShellView does not display items attributes + 42315 Piriform Speccy 1.3 needs setupapi.dll.CM_Get_Child_Ex -- IDN name resolution is supported. - -- Various SHA hashes are supported using GnuTLS. - -- Looking up the host address prioritizes non-loopback interfaces, - which fixes a number of networked games. - -- XML writing is faster for large files. - -- Winsock supports the IP_DONTFRAGMENT socket option. - -- Long URLs are handled correctly. - -- JavaScript performance is improved. JSON is also supported. - - -*** Internationalization - -- There is proper support for the Persian locale. - -- Uniscribe better supports right-to-left languages. - -- Japanese Hiragana, Katakana and full-width/half-width character - mapping is implemented. - - -*** 64-bit support - -- 64-bit applications are supported on macOS. - -- The Mono engine has 64-bit support. - -- C++ exceptions are handled correctly on x86-64, including nested - exceptions and collided unwinds. - -- The debug registers are supported on x86-64. - - -*** Built-in applications - -- The 'winebrowser' helper application supports multiple arguments to - invoke the host browser or mailer. - -- The 'reg' command-line registry utility supports the 'query' - command, all registry data types, and has more robust command line - handling. - -- The 'winhlp32' help viewer properly displays tables and images. - -- The 'wineconsole' tool better supports East-Asian fonts. Color - handling is also improved. - - -*** Build environment - -- Import libraries can optionally be built as static libraries - similarly to Windows, instead of .def files. This avoids the need - for a separate .def.a library file. - -- The IDL compiler supports "midl_pragma warning" directives. - -- Cross-compilation with the Mingw-w64 Clang and ARM toolchains is - supported. - - -*** Kernel - -- A new driver architecture is in place for supporting HID devices. - This follows the Windows model, with platform-specific bus drivers - and HID minidrivers. It will be used in future releases to unify - support for HID devices, and potentially also for USB device - support. - -- Loading multiple kernel drivers inside the same user-mode process is - supported. This is used for HID drivers. - -- A directory cache is implemented, to allow returning files in the - expected order and avoid relying on platform-specific system calls. - -- Many more API Set libraries (the oddly-named api-ms-win-* dlls) are - implemented. - -- Interrupt 0x2d (used for debugger checks) is emulated. - - -*** Miscellaneous - -- Read interval timeouts are supported for serial ports. - -- Variables starting with 'QT_' are filtered from the Unix environment - since they may have unwanted effects on Qt-based Windows - applications. - -- Support for joystick button mapping and force feedback effects is - improved. - -- Many stream classes are implemented in MSVCIRT, the old I/O stream - C++ runtime. - -- Windows Management Instrumentation (WMI) implements some more WBEM - classes. - -- Most remaining OpenMP functions are implemented. - -- Uninstallation support in MSI is improved. - - -*** New external dependencies - -- libudev is used for HID device support. - -- GStreamer version 1.0 is used instead of version 0.10. - -- GnuTLS version 2.10 or higher is required for the SHA hashing - functions to be supported. - - -*** Configuration changes - -- A number of DLLs are now built separately from a common source, - instead of forwarding to a master DLL. This means that native DLL - overrides need to be set on the specific version of the DLL being - loaded, instead of the master one. This applies to the d3dx9_*, - d3dcompiler_*, xaudio2_*, xapofx1_* and x3daudio1_* DLLs. - - -*** Release numbering +---------------------------------------------------------------- -- Starting with 2.0, version numbering will change: stable release - updates will follow the existing scheme: 2.0.1, 2.0.2, 2.0.3, etc. - but the developemnt branch will drop the intermediate number: the - releases will be numbered 2.1, 2.2, 2.3, etc. leading to the next - stable release, which will be called 3.0. +Changes since 2.0: + +Adam Bolte (1): + wined3d: Add GPU information for AMD FIJI. + +Alasdair Sinclair (1): + configure: Fix make install for mf3216.dll. + +Alex Henrie (6): + shell32: Correct dialog title in error message from "Run File" to "Run". + ddraw: Don't crash if writing out a new ddraw1 surface segfaults. + ddraw: Don't crash if writing out a new ddraw2 surface segfaults. + ddraw: Don't crash if writing out a new ddraw4 surface segfaults. + ddraw: Don't crash if writing out a new ddraw7 surface segfaults. + include: Add constants for CryptProtectMemory/CryptUnprotectMemory. + +Alexandre Julliard (4): + make_announce: Update version number parsing for the new versioning scheme. + ole32: Don't set zero-size clipboard data, this no longer works. + ole32: Only trace a clipboard format name if it has one. + ole32: Use a HWND_MESSAGE window for the clipboard. + +Alistair Leslie-Hughes (3): + include: Add UnlockResource prototype. + maintainers: Add DirectPlay section. + include: Add dhcpcsdk.h. + +Andrew Eikum (5): + kernel32: Use different default sublangs for Spanish and Chinese. + kernel32/tests: Test result from LCIDToLocaleName. + kernel32: Don't care about case when finding matching locale. + quartz: Clean up another trace for consistency. + quartz: Downgrade FIXME->WARN. + +Andrew Wesie (1): + ntdll: Prevent NULL dereference in NtSuspendThread. + +Andrey Gusev (6): + ntdll: Move UnregisterTraceGuids from advapi32 to ntdll. + setupapi: Add CM_Get_Child_Ex stub. + setupapi: Add CM_Get_Sibling_Ex stub. + d3dx11: Add D3DX11CreateShaderResourceViewFromMemory stub. + shlwapi: Avoid 'else if' for IStream_fnQueryInterface. + po: Update Ukrainian translation. + +André Hentschel (51): + winmm: Fix midiOutSetVolume spec file entry. + ntdll: Fix some more spec file entries. + krnl386.exe16: Fix some spec file entries. + comctl32: Fix some spec file entries. + odbc32: Fix some spec file entries. + advapi32: Fix some spec file entries. + atl: Fix AtlModuleInit spec file entry. + compstui: Fix SetCPSUIUserData spec file entry. + iphlpapi: Fix GetBestRoute spec file entry. + hidclass.sys: Fix compilation on systems that don't support nameless structs. + winebus.sys: Fix compilation on systems that don't support nameless structs. + msi: Fix some spec file entries. + mscms: Fix some spec file entries. + shell32: Fix some spec file entries. + user32: Fix DrawMenuBarTemp spec file entry. + ntdll: Fix even more spec file entries. + rpcrt4: Fix some spec file entries. + wow32: Fix some spec file entries. + mpr: Fix some spec file entries. + urlmon: Fix FindMimeFromData spec file entry. + setupapi: Fix some spec file entries. + winspool.drv: Fix some spec file entries. + oleaut32: Fix OleTranslateColor spec file entry. + usp10: Fix ScriptRecordDigitSubstitution spec file entry. + advapi32: Fix some more spec file entries. + kernel32: Fix some spec file entries. + winemapi: Fix some spec file entries. + winscard: Fix some spec file entries. + avifil32: Fix AVIStreamReadFormat spec file entry. + secur32: Fix LsaConnectUntrusted spec file entry. + mapi32: Fix some spec file entries. + wininet: Fix some spec file entries. + d3d8: Fix ValidatePixelShader spec file entry. + ntdll: Remove dead initializations (clang). + dwrite: Remove dead initialization (clang). + msxml3: Remove dead initialization (clang). + server: Remove dead assignment (clang). + cmd: Remove dead assignments (clang). + shell32: Remove dead assignments (clang). + loadperf: Fix some spec file entries. + winhttp: Fix some spec file entries. + serialui: Fix EnumPropPages spec file entry. + comctl32: Fix some more spec file entries. + msvfw32: Fix some spec file entries. + oleview: Fix bytecount for memmoves (Coverity). + windowscodecs: Remove dead assignment (clang). + windowscodecs: Fix IWICImagingFactory_CreateDecoderFromFileHandle_Proxy spec file entry. + gdiplus: Fix some spec file entries. + include: Add the new version of the IP_ADAPTER_UNICAST_ADDRESS structure. + iphlpapi: Use the new version of the IP_ADAPTER_UNICAST_ADDRESS structure. + winex11: Remove dead code (clang). + +Anton Romanov (1): + user32: Add OCR_RDR* cursors. + +Aric Stewart (18): + usp10: Implement GSUB Context Substitution types 1 and 2. + usp10: Implement Contextual Positioning Subtable: Format 2. + usp10: Implement Chaining Context Substitution Format 2: Class-based Chaining Context Glyph Substitution. + hid: Implement HidD_GetNumInputBuffers. + hid: Implement HidP_GetUsagesEx. + hid/tests: Add HID device enumeration test. + hidclass.sys: When processing reads fill all the buffers. + hid: Implement HidP_MaxDataListLength. + hid: Implement HidP_GetData. + usp10: Fix Contextual Shaping for Languages with RTL write order. + usp10: Change GSUB_E_NOGLYPH value. + usp10: Fix next index for RTL MultipleSubst. + usp10: Apply 'ccmp' before Arabic contextual shaping. + hidclass.sys: BSize will never be negative. + hid/tests: Test device reads. + hid/tests: Test HidD_GetInputReport. + hidclass.sys: IOCTL_HID_GET_INPUT_REPORT has report ID as first byte. + loader: Start winebus service by default. + +Aurimas Fišeras (2): + po: Update Lithuanian translation. + po: Update Lithuanian translation. + +Austin English (8): + kernel32: Add BaseFlushAppcompatCache stub. + mf3216: Add stub dll. + rstrtmgr: Add RmShutdown stub. + ntoskrnl.exe: Add IoCreateFile stub. + ntoskrnl.exe: Add stub KeClearEvent. + ntdll: Add a stub for NtLoadKey2. + winusb: Add stub dll. + dhcpsvc: Add DhcpRequestParams stub. + +Bruno Jesus (22): + ntdll: Fake success if changing system date is a no-op. + maintainers: Add network section. + iphlpapi/tests: Avoid ntoa() twice in function call as it returns same pointer. + dinput: Skip events that are not useful currently. + odbc32: Improve some tracing. + d3d8/tests: Fix copy&paste issue in compare_mode (cppcheck). + dinput: Fix GetEffectStatus for Linux when effect was not downloaded. + dinput: Downgrade a FIXME to WARN in JoystickWImpl_SendForceFeedbackCommand. + dinput: DISFFC_RESET will not release the effects. + dinput: Simplify JoystickWImpl_Unacquire for Linux. + dinput/tests: Add tests for DISFFC_STOPALL, DISFFC_RESET and GetEffectStatus. + winmm: Fix the ordinal number for function PlaySound. + shlwapi/tests: Test NULL handle duplication in SHMapHandle(). + notepad: Only skip valid command options. + wlanapi: Normalize input and trace parameters. + wlanapi/tests: Add test structure. + wlanapi/tests: Add tests for WlanOpenHandle. + wlanapi: Implement WlanAllocateMemory/WlanFreeMemory with tests. + wlanapi/tests: Add tests for WlanEnumInterfaces. + wlanapi: Implement WlanOpenHandle. + wlanapi: Implement WlanCloseHandle. + mciqtz32: Implement MCI_DGV_PLAY_REPEAT. + +Christoph Brill (1): + setupapi: Stub CM_Open_DevNode_Key and CM_Get_Child. + +Daniel Lehman (1): + msvcrt: Implement nan. + +Detlef Riekenberg (1): + maintainers: Add myself for printing. + +Dmitry Timoshkov (2): + windowscodecs: Implement IWICBitmapFrameEncode::SetPalette in PNG encoder. + avifil32: AVIFileGetStream should set stream to NULL in case of an error. + +Erich Hoover (1): + maintainers: Volunteer for auto-assigned patch review. + +Fabian Maurer (2): + gdi32: Add traces for painting functions. + user32: Don't send WM_CHAR when a menu gets VK_ESCAPE and add tests. + +François Gouget (4): + iphlpapi/tests: Remove an unnecessary NULL cast. + include: Add a couple more UI language APIs. + wlanapi: Add a trailing '\n' to a TRACE() message. + hid/tests: Remove a space before a '\n'. + +Gerald Pfeifer (3): + rpcrt4: Avoid potential overflow in rpcrt4_protseq_ncacn_np_open_endpoint. + server: Remove dead check in is_cpu_supported(). + winedump: Increase buffer size and potential string length inoutput_spec_symbol. + +Guillaume Charifi (2): + wined3d: Recognize SM5 dcl_resource_raw instruction. + wined3d: Add support for BC5_SNORM format. + +Hans Leidekker (11): + include: Add some missing MAPI defines. + include: Update SIID_MAX_ICONS. + mapi32: Add a stub implementation of HrDispatchNotifications. + secur32: Implement SspiPrepareForCredWrite. + webservices: Set and restore the full floating point control word. + wbemprox: Only include matching rows in the table row count. + winhttp: Accept NULL buffer for size queries in WinHttpCreateUrl. + wintrust/tests: Disable a test that crashes on 64-bit Windows 10. + credui: Split domain from username in SspiPromptForCredentialsW. + wbemprox: Don't define USE_WS_PREFIX on MinGW. + wbemprox: Add a partial implementation of Win32_IP4RouteTable. + +Henri Verbeet (35): + wined3d: Get rid of a superfluous floatBitsToUint() in shader_glsl_texkill(). + wined3d: Use the depth/stencil view to acquire a context for depth-only draws. + wined3d: Get rid of the "AlwaysOffscreen" setting. + wined3d: Get rid of surface_load_ds_location(). + ddraw: Kill stray tabs. + wined3d: Simplify shader_glsl_load_np2fixup_constants(). + wined3d: Get rid of the "ds_current_size" field from struct wined3d_surface. + wined3d: Get rid of surface_modify_ds_location(). + wined3d: Get rid of the "onscreen_depth_stencil" field from struct wined3d_device. + wined3d: Only store light type counts in struct wined3d_ffp_vs_settings. + wined3d: Just use glBufferSubData() in buffer_direct_upload(). + wined3d: Introduce wined3d_buffer_upload_ranges(). + wined3d: Rename WINED3D_BUFFER_DOUBLEBUFFER to WINED3D_BUFFER_PIN_SYSMEM. + wined3d: Introduce wined3d_buffer_evict_sysmem(). + wined3d: Check buffer->map_ptr to determine if the buffer object is mapped. + wined3d: Do not evict the system memory copy in buffer_create_buffer_object(). + wined3d: Do not upload data in buffer_create_buffer_object(). + wined3d: Evict system memory for dynamic buffers on the first WINED3D_MAP_DISCARD map. + wined3d: Try to avoid stalling on dynamic buffer maps. + wined3d: Return success in wined3d_buffer_load_location() when the location is already current. + wined3d: Do not pin system memory in wined3d_buffer_load_location(). + wined3d: Support WINED3D_LOCATION_BUFFER in wined3d_buffer_load_location(). + wined3d: Implement wined3d_buffer_upload_data() on top of wined3d_buffer_upload_ranges(). + wined3d: Load WINED3D_LOCATION_BUFFER if needed in wined3d_buffer_map(). + wined3d: Do not preload the buffer in wined3d_buffer_unmap(). + wined3d: Avoid '\n' in the middle of a TRACE in wined3d_check_device_format(). + ddraw: Mark surfaces as lost when changing the display mode. + ddraw: Validate the primary surface dimensions in ddraw_surface7_Restore(). + ddraw: Validate the primary surface format in ddraw_surface7_Restore(). + ddraw: Update the primary surface format when changing the display mode. + d2d1: Avoid degenerate line segments. + d2d1: Add an initial d2d_d3d_render_target_DrawGeometry() implementation. + d2d1: Implement initial support for line joins. + d2d1: Implement rectangle geometry outlines. + d2d1: Take the source transformation into account when creating a transformed geometry. + +Hugh McMaster (7): + regedit: Remove unnecessary error handling from message box functions in edit.c. + regedit: Use FormatMessage() for optimal memory usage. + regedit: Display custom error messages instead of strings from the system table. + regedit: Combine error() and error_code_messagebox(). + regedit: Update search completion message handling. + regedit: Update dialog messages related to key and value renaming. + regedit: Update some comments in edit.c. + +Huw D. M. Davies (14): + schedsvc/tests: Early versions of Windows 10 return S_OK whether or not the element exists. + urlmon/tests: Windows 10 has changed the behaviour of domain detection. + usp10/tests: Add a second set of glyph props that have changed in Windows 10. + gdi32: Add the ability to disable a DC. + user32: Disable cached DCs once they are released. + usp10/tests: Reorder the todo and broken arrays to match the order of the expected values. + urlmon/tests: Allow QueryInterface to accept IUnknown and IInternetProtocolSink. + ntprint: PSetupCreateMonitorInfo() takes two arguments, the second is a server name. + comctl32: Correctly set the colour table for ILC_COLOR4 and ILC_COLOR8 imagelists. + gameux/tests: Run the MTA tests before the STA tests to avoid a crash on Windows 10. + user32: Hardcode the GetWindowLong values for the desktop window to avoid a server round-trip. + user32/tests: Restore the mouse cursor to its original position. + dssenh/tests: Fix a failing test on Windows 7. + dmcompos/tests: Fix a failing test on Windows 8. + +Jacek Caban (38): + mshtml: Initialize nsAString in IHTMLDocument3::get_dir. + urlmon: Added Seek implementations for streams using cache file. + mshtml: Added MHTMLDocument object class factory stub implementation. + inetcomm: Register mhtml protocol handler. + inetcomm: Added MimeHtmlProtocol stub implementation. + mshtml/tests: Added text selection type tests. + mshtml: Added IHTMLSelectionObject2::get_typeDetail semi-stub implementation. + inetcomm: Added IInternetProtocolInfo stub implementation. + inetcomm: Added COM aggregation support to MimeHtmlProtocol object. + inetcomm: Moved sub_stream_t implementation before MimeBody implementation. + inetcomm: Don't restore base stream position in sub stream Read. + inetcomm: Return a new instance of stream in IMimeBody::GetData. + inetcomm/tests: Added a helper for creating stream from string. + inetcomm/tests: Added more IMimeBody::SetData and GetData tests. + inetcomm: Test current encoding in test_SetData. + inetcomm: Added support for decoding base64 in IMimeBody::GetData. + widl: Accept known type as library name. + kernel32/tests: Don't mark win8+ result as broken. + ntdll: Check input buffer before server_read_file call and don't touch event on error. + ntdll: Check output buffer before server_write_file call. + inetcomm: Use relative seek in copy_headers_to_buf. + inetcomm: Properly handle boundary in the beginning of body stream in create_body_offset_list. + inetcomm: Don't include headers in data stream in create_sub_body. + inetcomm: Read content encoding from MIME header. + inetcomm: Removed unneeded type check in init_content_type. + inetcomm: Added tests reading MHTML page as MIME message. + msctf: Use correct sink for ITfThreadFocusSink. + inetcomm: Added MimeOleObjectFromMoniker semi-stub implementation. + inetcomm: Added IInternetProtocolInfo::CombineUrl implementation. + inetcomm: Added support for binding mhtml protocol handler. + inetcomm: Added mhtml binding tests. + inetcomm: Added support for decoding quoted-printable data. + server: Create iosb objects inside read/write request handlers. + ntdll: Always set iosb->Information in irp_completion. + msctf: Allow unadvising ITfThreadFocusSink. + mshtml: Renamed unk_imp to outer_unk. + mshtml: Added support for COM aggregation in HTMLDocument object. + mshtml/tests: Added COM aggregation tests. + +Jactry Zeng (2): + qcap: Release IBaseFilter. + kernel32/tests: Add Chinese special tests for LocaleNameToLCID(). + +Jarkko Korpi (1): + wined3d: Add Rx 460 binary driver. + +Jefferson Carpenter (1): + wmvcore: Implement WMCreateReaderPriv. + +Józef Kucia (56): + ddraw: Cleanup ddraw7_GetAvailableVidMem(). + ddraw: Relax "dwSize" validation in ddraw_surface*_Lock(). + d3d11/tests: Add test for writing to UAVs. + d3d11/tests: Add optional "rect" parameter to check_texture_sub_resource_* functions. + wined3d: Introduce wined3d_device_set_compute_shader(). + d3d11: Implement d3d11_immediate_context_CSSetShader(). + wined3d: Remove inaccurate comments. + include/d3d11: Add D3D11_BUFFEREX_SRV_FLAG_RAW. + d3d11/tests: Use correct raw buffer flag for SRVs. + wined3d: Add ARB_texture_buffer_object extension. + wined3d: Create dummy buffer textures. + wined3d: Add initial support for shader buffer views. + wined3d: Do not pass LOD to texelFetch() for buffer resources. + wined3d: Implement buffer samplers. + d3d10core/tests: Add test for shader buffer views. + d3d11/tests: Add test for shader buffer views. + d3d10core/tests: Skip stencil SRV test when SRV creation fails. + d3d11/tests: Skip stencil SRV test when SRV creation fails. + wined3d: Add ARB_shading_language_packing extension. + wined3d: Implement SM5 f16tof32 instruction. + wined3d: Implement SM5 f32tof16 instruction. + d3d11/tests: Add basic test for SM5 f16tof32 and f32tof16 instructions. + wined3d: Add ARB_gpu_shader5 extension. + wined3d: Implement SM5 bfrev instruction. + d3d11/tests: Improve test for SM5 bfi instruction. + wined3d: Implement SM5 bfi instruction. + wined3d: Implement SM5 ubfe instruction. + d3d11/tests: Add test for SM5 ubfe instruction. + wined3d: Implement SM5 countbits instruction. + wined3d: Implement SM5 firstbit_* instructions. + d3d11/tests: Add test for SM5 firstbit_* instructions. + wined3d: Store uniform blocks limits as array. + wined3d: Introduce wined3d_device_set_cs_cb(). + d3d11: Implement d3d11_immediate_context_CSSetConstantBuffers(). + wined3d: Factor out acquire_shader_resources() function. + wined3d: Factor out release_shader_resources() function. + wined3d: Do not acquire compute pipeline resources for draws. + wined3d: Acquire graphics pipeline UAV resources for draws. + d3d11/tests: Add tests showing that views do not keep resource reference. + d3d11: Do not keep reference to resources. + d3d10core/tests: Add tests showing that views do not keep resource reference. + wined3d: Add ARB_compute_shader extension. + wined3d: Handle compute shader registers in GLSL backend. + wined3d: Introduce wined3d_device_dispatch_compute(). + wined3d: Introduce shader_select_compute() in shader_backend_ops. + comdlg32/tests: Add test for OLE initialization in file dialogs. + comdlg32: Delay OleInitialize() until after file dialog window is created. + d3d11: Fix TRACE message in d3d_query_create(). + d3d9/tests: Extend queries tests. + d3d11/tests: Extend queries tests. + d3d10core/tests: Extend queries tests. + wined3d: Return WINED3DERR_INVALIDCALL for not started queries. + d3d9: Fix query result data for not started queries. + d3d9: Store query data size in "d3d9_query". + wined3d: Set "last_was_blit" unconditionally in context_apply_clear_state(). + d3d11: Use WINED3D_POOL_MANAGED for staging 3D textures. + +Ken Thomases (5): + winemac: Make some operations on Cocoa views asynchronous. + winemac: Don't attempt to set surface for child windows in macdrv_WindowPosChanged(). + winemac: Don't set a view's frame if the backend's value hasn't changed. + winemac: Ignore clipboard updates provoked by our own call to GetClipboardData(). + winemac: Reattach OpenGL contexts to a view after it has been hidden and unhidden. + +Kim Malmo (1): + po: Update Norwegian translation. + +Lauri Kenttä (6): + msvcrt/tests: Test wcstoi64 with various Unicode digits. + msvcrt: Move WCHAR-to-int conversion to a function. + msvcrt: Make wcstoi64 support various Unicode digits. + msvcrt: Fix space-only inputs in wcstoi64. + kernel32: LZOpenFile should preserve cBytes on failure. + po: Update Finnish translation. + +Louis Lenders (3): + oledb32: Add version resource. + xmllite/reader: Handle NULL node type argument in Read(). + kernel32: Silence a noisy fixme. + +Marcus Meissner (1): + maintainers: Add myself for gphoto2.ds. + +Masanori Kakura (1): + winegstreamer: Avoid zero division in amt_from_gst_caps_video(). + +Matteo Bruni (12): + d3d9: Fix DrawIndexedPrimitiveUP with non-zero min_vertex_idx. + d3d8: Fix DrawIndexedPrimitiveUP with non-zero min_vertex_idx. + d3d9/tests: Add a test for DrawIndexedPrimitiveUP(). + d3d8/tests: Add a test for DrawIndexedPrimitiveUP(). + d3d9/tests: Add a trace to clear_test() to show whether sRGB writes are supported. + wined3d: Correctly handle GL implementations not supporting sRGB FBO attachments. + wined3d: If the format is not FBO attachable disable sRGB writes only. + d3dx9: Don't forbid supported format conversions. + wined3d: Don't query FFP lights count on core profile. + wined3d: Use the correct GLenum for point size limit on core profile. + wined3d: Trace maximum vertex attributes count. + wined3d: Query supported geometry shader uniform buffers count on core profile. + +Michael Müller (2): + msvideo.dll16: Implement DrawDibProfileDisplay. + msvideo: Check if any 16 bit thunks have been allocated before accessing pointer. + +Michael Stefaniuc (2): + wordpad: Avoid a TRUE : FALSE conditional expression. + msvcrt/tests: Use NULL instead of casting 0. + +Mike Swanson (1): + loader/wine.man.in: Document the WINEPATH environment variable. + +Nikolay Sivov (57): + wshom: Added IProvideClassInfo support for implemented interfaces. + dwrite: Use OpenType 1.8 'head' table structure. + dwrite: Use OpenType 1.8 'hhea' table structure. + comctl32/tests: Use win_skip() for tests that should not be skipped on Wine. + d2d1: Fix ID2D1HwndRenderTarget::Resize() prototype. + d2d1: Check for NULL pointer when releasing previous render target view. + comctl32/toolbar: Fix TB_SETDRAWTEXTFLAGS handler. + shell32/shellview: Get rid of intermediate pointer array when filling ListView. + shell32/shellview: Set subitem callbacks for every column. + shell32: Fix return value of GetDetailsOf() for unixfs folder. + comdlg32: Always use original Open File dialog template. + dwrite: Implement another variant of CreateGlyphRunAnalysis(). + dwrite: Remove existing effective runs before evaluating them again. + dwrite: Invalidate layout on box changes. + dwrite: Restructure line wrapping logic, fix the way breaking position is selected. + dwrite: Initial support for line trimming signs. + Added scrobj.dll stub. + scrobj: Register Scriptlet.TypeLib. + scrobj: Added IGenScriptletTLib stub. + scrobj: Added IDispatch support for Scriptlet.TypeLib object. + scrobj: Implement get_GUID(). + dwrite: Implement GetOverhangMetrics(). + comctl32/syslink: Don't use exported StrCmpNIW(). + windowscodecs/tests: Test to show that SetPalette() does not keep IWICPalette reference, for PNG encoder. + xmllite/reader: Handle NULL argument in GetNodeType(). + xmllite/tests: Test Read() with NULL type argument. + oledb32: Fixed IDataInitialize definition. + kernel32/nls: Added genitive month names for Polish. + kernel32/nls: Added genitive month names for Belarusian. + kernel32/nls: Added genitive month names for Armenian. + kernel32/nls: Added genitive month names for Croatian. + kernel32/nls: Added genitive month names for Czech. + regedit: Always show treeview selection. + regedit: Clear value list when tree root is selected. + dwrite: Added support for DWRITE_WORD_WRAPPING_CHARACTER mode. + dwrite: Improve line breaking logic. + msxml3: Duplicate stylesheet document before passing it to libxslt. + msxml3: Accept AllowXsltScript and AllowDocumentFunction properties. + usp10: Fixed LB30 condition, breaking after CP class. + usp10: Fix LB27 rule that should check for prefix, not suffix. + include: Added GetThreadUILanguage() prototype. + dwrite/tests: Use shaping properties structure in tests data. + dwrite/tests: More spacing tests with isDiacritic. + dwrite/tests: Line metrics tests with uniform spacing. + kernel32/nls: Added Nepali locale data. + comctl32/propsheet: Force wizard header if any of pages has title/subtitle. + comctl32/propsheet: Only use header bitmap when asked for it. + comctl32/tests: Use HGLOBAL stream to Read/Write tests on imagelists. + po: Update Russian translation. + oledb32: Added a stub IDataInitialize for DataLinks object. + oledb32: Added GetDataSource() for DataLinks object. + oledb32: Allow single quotation marks around property values. + dwrite: Keep content based line height and baseline separately. + dwrite: Added support for uniform and proportional spacing methods. + dwrite: Get rid of assignment to self. + dwrite: Fix rendering mode enum conversion warnings. + gdiplus: Added GdipGetCustomLineCapType(). + +Owen Rudge (2): + advapi32: Return null-terminated buffer instead of null pointer for LsaLookupSids domains. + advapi32/tests: Add test of LsaLookupSids buffer behaviour. + +Piotr Caban (3): + msvcr100: Add reader_writer_lock class stub. + msvcr100: Add reader_writer_lock implementation. + msvcr100: Add reader_writer_lock tests. + +Sebastian Lackner (5): + rstrtmgr: Use correct type for status parameter in RmRestart. + ntdll: Catch page faults in NtQueryPerformanceCounter. + ntdll: Mark ZwLoadKey2 export as private. + ole32: Call GetClipboardFormatName with the correct parameters. + server: Fix handling of MAXIMUM_ALLOWED in token_access_check. + +Vincent Povirk (4): + hhctrl.ocx: Also take basename of folders when searching. + hhctrl.ocx: Don't skip a tag in next_node. + kernel32: DETACHED_PROCESS prevents automatic std handle inheritance. + kernel32: DETACHED_PROCESS doesn't affect STARTUPINFO console handles. + +Young Chung (1): + ucrtbase: Add __conio_common_vcprintf()/_vcwprintf(). + +Zebediah Figura (12): + ws2_32/tests: Fix memcmp size in test_TransmitFile(). + regedit: Add support for importing Win 3.1 registry files. + regedit/tests: Add tests for importing Win 3.1 registry files. + storage.dll16: Fix bad type in IStorage16_fnOpenStorage. + regedit: When processing 3.1 ignore any lines that don't begin with HKCR. + secur32/tests: Skip sign/seal tests if authentication fails. + winebuild: Use unsigned int in spec file variable parameters. + compobj: Implement several IIDs. + ole2: Implement several IIDs. + avifile: Implement several IIDs. + ole2disp: Implement several IIDs. + typelib: Implement several IIDs. + +İsmail Dönmez (1): + d3d11.idl: Added missing D3D11_CS_* constants. -- Alexandre Julliard diff --git a/AUTHORS b/AUTHORS index f14a859..5019736 100644 --- a/AUTHORS +++ b/AUTHORS @@ -266,6 +266,7 @@ Christian Inci Christian Lupien Christian Neumair Christian Schlaile +Christoph Brill Christoph Bumiller Christopher Berner Christopher Gautier @@ -584,6 +585,7 @@ Indrek Altpere Ingmar Thiemann Ingo Schneider Ismael Barros +İsmail Dönmez Itai Nahshon Ivan de Saedeleer Ivan Gyurdiev @@ -653,6 +655,7 @@ Jean-Michel Dault Jean-Philippe Theriault Jed Wing Jeff Cook +Jefferson Carpenter Jeff Garzik Jeff Johann Jeff Klein @@ -957,6 +960,7 @@ Martin von Loewis Martin Walker Martin Wilck Marton Balint +Masanori Kakura Massimo Del Fedele Matěj Laitl Matej Špindler @@ -1038,6 +1042,7 @@ Mike Kaplinskiy Mike O'Regan Mike Ruprecht Mike Schaadt +Mike Swanson Mikey Alexander Mikhail Maroukhine Mikio Idneuma @@ -1554,6 +1559,7 @@ Yong Chi YongHao Hu Yorick Hardy Yoshiro Takeno +Young Chung Yuri Khan Yuri Kozlov Yuriy Kaminskiy diff --git a/VERSION b/VERSION index 621f7f0..d3867d8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Wine version 2.0 +Wine version 2.1 diff --git a/configure b/configure index 56904e9..24c375d 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Wine 2.0. +# Generated by GNU Autoconf 2.69 for Wine 2.1. # # Report bugs to . # @@ -580,8 +580,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Wine' PACKAGE_TARNAME='wine' -PACKAGE_VERSION='2.0' -PACKAGE_STRING='Wine 2.0' +PACKAGE_VERSION='2.1' +PACKAGE_STRING='Wine 2.1' PACKAGE_BUGREPORT='wine-devel@winehq.org' PACKAGE_URL='http://www.winehq.org' @@ -2224,7 +2224,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Wine 2.0 to adapt to many kinds of systems. +\`configure' configures Wine 2.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -2294,7 +2294,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Wine 2.0:";; + short | recursive ) echo "Configuration of Wine 2.1:";; esac cat <<\_ACEOF @@ -2502,7 +2502,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Wine configure 2.0 +Wine configure 2.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -3020,7 +3020,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Wine $as_me 2.0, which was +It was created by Wine $as_me 2.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -19186,7 +19186,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Wine $as_me 2.0, which was +This file was extended by Wine $as_me 2.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -19257,7 +19257,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Wine config.status 2.0 +Wine config.status 2.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Using valgrind-3.13.0.SVN-16204-vex-3299 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:546: Tests skipped: We don't have a backup eventlog to work with eventlog.c:479: Tests skipped: No records in the 'Application' log eventlog.c:889: 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:2063: Tests skipped: Well known SID 38 not implemented security.c:2063: Tests skipped: Well known SID 39 not implemented security.c:2063: Tests skipped: Well known SID 40 not implemented security.c:2063: Tests skipped: Well known SID 41 not implemented security.c:2063: Tests skipped: Well known SID 42 not implemented security.c:2063: Tests skipped: Well known SID 43 not implemented security.c:2063: Tests skipped: Well known SID 44 not implemented security.c:2063: Tests skipped: Well known SID 45 not implemented security.c:2063: Tests skipped: Well known SID 46 not implemented security.c:2063: Tests skipped: Well known SID 47 not implemented security.c:2063: Tests skipped: Well known SID 48 not implemented security.c:2063: Tests skipped: Well known SID 49 not implemented security.c:2063: Tests skipped: Well known SID 50 not implemented security.c:2063: Tests skipped: Well known SID 62 not implemented security.c:2063: Tests skipped: Well known SID 63 not implemented security.c:2063: Tests skipped: Well known SID 64 not implemented security.c:2063: Tests skipped: Well known SID 65 not implemented security.c:2063: Tests skipped: Well known SID 70 not implemented security.c:2063: Tests skipped: Well known SID 71 not implemented security.c:2063: Tests skipped: Well known SID 72 not implemented security.c:2063: Tests skipped: Well known SID 73 not implemented security.c:2063: Tests skipped: Well known SID 74 not implemented security.c:2063: Tests skipped: Well known SID 75 not implemented security.c:2063: Tests skipped: Well known SID 76 not implemented security.c:2063: Tests skipped: Well known SID 77 not implemented security.c:2063: Tests skipped: Well known SID 78 not implemented security.c:2063: Tests skipped: Well known SID 79 not implemented security.c:2063: Tests skipped: Well known SID 81 not implemented security.c:2063: Tests skipped: Well known SID 82 not implemented preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==29469== 20 bytes in 1 blocks are definitely lost in loss record 51 of 258 ==29469== at 0x7BC50754: notify_alloc (heap.c:254) ==29469== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==29469== by 0x7B44973A: HeapAlloc (heap.c:271) ==29469== by 0x7B44AE69: LocalAlloc (heap.c:970) ==29469== by 0x4E4FCD9: GetSecurityInfo (security.c:3264) ==29469== by 0x4A63CC3: test_system_security_access (security.c:6214) ==29469== by 0x4A652E1: func_security (security.c:6461) ==29469== by 0x4A746D7: run_test (test.h:589) ==29469== by 0x4A74B03: main (test.h:671) ==29469== { 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 } ==29469== 148 bytes in 1 blocks are definitely lost in loss record 179 of 258 ==29469== at 0x7BC50754: notify_alloc (heap.c:254) ==29469== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==29469== by 0x7B44973A: HeapAlloc (heap.c:271) ==29469== by 0x7B44AE69: LocalAlloc (heap.c:970) ==29469== by 0x4E4FCD9: GetSecurityInfo (security.c:3264) ==29469== by 0x4A5B79E: test_GetSecurityInfo (security.c:4614) ==29469== by 0x4A652AA: func_security (security.c:6450) ==29469== by 0x4A746D7: run_test (test.h:589) ==29469== by 0x4A74B03: main (test.h:671) ==29469== { 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 0x6b88b2c (thread 009d), 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 (0x06b88b2c). 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:06b88b2c ESP:04b0df00 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06fa8000 ECX:046ed550 EDX:00200000 ESI:046768c8 EDI:046ed550 Stack dump: 0x04b0df00: 04b0df3c 046e6e9c 00000003 00000002 0x04b0df10: 00007a50 00007a64 00000082 00007a6c 0x04b0df20: 00800000 00000000 00007a44 00007a48 0x04b0df30: 00007a4c 00000000 046760a8 00007a74 0x04b0df40: 00000000 00000000 00000000 00000000 0x04b0df50: 00000000 00000000 00000000 6f932f00 Backtrace: =>0 0x06b88b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06b6f35b in radeonsi_dri.so (+0x63435a) (0x04675440) 2 0x06b6f6e2 in radeonsi_dri.so (+0x6346e1) (0x04b0e098) 3 0x06befa6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e098) 4 0x0656a79c in radeonsi_dri.so (+0x2f79b) (0x0466bd60) 5 0x069a2000 in radeonsi_dri.so (+0x466fff) (0x0466bd60) 6 0x069a1a3d in radeonsi_dri.so (+0x466a3c) (0x0466bd60) 7 0x0686294b in radeonsi_dri.so (+0x32794a) (0x0466bd60) 8 0x0685e976 in radeonsi_dri.so (+0x323975) (0x0466bcd8) 9 0x05fd9722 in libgl.so.1 (+0x43721) (0x045b9060) 10 0x05faea42 in libgl.so.1 (+0x18a41) (0x045b6b38) 11 0x05faa60b in libgl.so.1 (+0x1460a) (0x04b0eb54) 12 0x05faa784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0eb54) 13 0x05c115cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0ec28) 14 0x05c13023 init_opengl+0xfbe(once=0x5c6fe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0ee38) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0ee88) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0eeb8) 17 0x05c1349e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0eee8) 18 0x05c1b533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0ef08) 19 0x05c06293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f75b8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0ef38) 20 0x0509a5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0ef68) 21 0x04bffc4f wined3d_adapter_init+0xe0(adapter=0x48f4008, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0f398) 22 0x04c00681 wined3d_init+0xa5(wined3d=0x48f3ff8, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0f3c8) 23 0x04c86c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0f428) 24 0x04b32de4 ddraw_init+0xda(ddraw=0x48f3f40, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04b0f608) 25 0x04b4643e DDRAW_Create+0x163(guid=(nil), DD=0x4b0f6d8, UnkOuter=(nil), iid=0x4b737f4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b0f668) 26 0x04b4660d DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b0f6a8) 27 0x04821f12 create_directdraw+0x3d() [/home/austin/wine-valgrind/dlls/amstream/tests/amstream.c:60] in amstream_test (0x04b0f768) 28 0x04822b4c test_media_streams+0x5d() [/home/austin/wine-valgrind/dlls/amstream/tests/amstream.c:205] in amstream_test (0x04b0fca8) 29 0x0482725d func_amstream+0x25() [/home/austin/wine-valgrind/dlls/amstream/tests/amstream.c:864] in amstream_test (0x04b0fcc8) 30 0x0482806d run_test+0x96(name="amstream") [/home/austin/wine-valgrind/dlls/amstream/tests/../../../include/wine/test.h:589] in amstream_test (0x04b0fd08) 31 0x04828498 main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/amstream/tests/../../../include/wine/test.h:671] in amstream_test (0x04b0fdd8) 32 0x04828529 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in amstream_test (0x04b0fe18) 33 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 34 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 35 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 36 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 37 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 38 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9d12b8) 41 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe9d1338) 42 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9d21e8) 43 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9d2228) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe9d2764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe9d2278) 45 0x7c000f80 main+0x145(argc=, argv=0xfe9d2764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9d26b8) 46 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06b88b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482f000 Dwarf amstream_test \-PE 4820000- 482f000 \ amstream_test ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4b8f000 Dwarf ddraw \-PE 4b20000- 4b8f000 \ ddraw ELF 4b8f000- 4cee000 Dwarf wined3d \-PE 4ba0000- 4cee000 \ wined3d ELF 4fee000- 5133000 Dwarf gdi32 \-PE 5000000- 5133000 \ gdi32 ELF 5133000- 51b4000 Deferred advapi32 \-PE 5140000- 51b4000 \ advapi32 ELF 51b4000- 5329000 Deferred user32 \-PE 51d0000- 5329000 \ user32 ELF 5429000- 5444000 Deferred version \-PE 5430000- 5444000 \ version ELF 5444000- 55c6000 Deferred ole32 \-PE 5460000- 55c6000 \ ole32 ELF 56c6000- 5753000 Deferred rpcrt4 \-PE 56d0000- 5753000 \ rpcrt4 ELF 57af000- 5867000 Deferred libfreetype.so.6 ELF 5a6b000- 5a84000 Deferred libz.so.1 ELF 5a8c000- 5a9e000 Deferred libbz2.so.1 ELF 5aa2000- 5ae0000 Deferred libpng16.so.16 ELF 5ae4000- 5b21000 Deferred libfontconfig.so.1 ELF 5b29000- 5b53000 Deferred libexpat.so.1 ELF 5b5f000- 5b6b000 Deferred libxcursor.so.1 ELF 5b6f000- 5b76000 Deferred libxfixes.so.3 ELF 5b8a000- 5b8d000 Deferred libxshmfence.so.1 ELF 5ba6000- 5bcb000 Deferred imm32 \-PE 5bb0000- 5bcb000 \ imm32 ELF 5bd3000- 5c73000 Dwarf winex11 \-PE 5be0000- 5c73000 \ winex11 ELF 5c87000- 5c8b000 Deferred libxinerama.so.1 ELF 5c8f000- 5c95000 Deferred libxxf86vm.so.1 ELF 5c99000- 5ca5000 Deferred libxrender.so.1 ELF 5ca9000- 5cb6000 Deferred libxrandr.so.2 ELF 5cba000- 5cbe000 Deferred libxcomposite.so.1 ELF 5ccb000- 5cde000 Deferred libxext.so.6 ELF 5ce2000- 5e33000 Deferred libx11.so.6 ELF 5e3b000- 5e67000 Deferred libxcb.so.1 ELF 5e6b000- 5e6f000 Deferred libxau.so.6 ELF 5e6f000- 5e76000 Deferred libxdmcp.so.6 ELF 5e7a000- 5e96000 Deferred libbsd.so.0 ELF 5ea5000- 5ea9000 Deferred libxcb-dri3.so.0 ELF 5ea9000- 5ead000 Deferred libxcb-present.so.0 ELF 5ead000- 5eb0000 Deferred libx11-xcb.so.1 ELF 5eb1000- 5ee4000 Deferred amstream \-PE 5ec0000- 5ee4000 \ amstream ELF 5ee6000- 5ef9000 Deferred libxi.so.6 ELF 5f09000- 5f0f000 Deferred libtxc_dxtn.so ELF 5f96000- 600d000 Dwarf libgl.so.1 ELF 610d000- 6115000 Deferred libxcb-sync.so.1 ELF 611d000- 6154000 Deferred libglapi.so.0 ELF 6158000- 615c000 Deferred libxdamage.so.1 ELF 615c000- 6179000 Deferred libxcb-glx.so.0 ELF 617d000- 6183000 Deferred libxcb-dri2.so.0 ELF 6187000- 6199000 Deferred libdrm.so.2 ELF 61e9000- 6211000 Deferred libudev.so.1 ELF 6311000- 6336000 Deferred libdrm_intel.so.1 ELF 653b000- 71a6000 Dwarf radeonsi_dri.so ELF 738b000- 73cb000 Deferred libnettle.so.6 ELF 73cb000- 73d5000 Deferred libdrm_nouveau.so.2 ELF 73d5000- 73e3000 Deferred libdrm_radeon.so.1 ELF 73e7000- 73f2000 Deferred libdrm_amdgpu.so.1 ELF 73f6000- 7413000 Deferred libelf.so.1 ELF 742b000- 7485000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 748d000- 7490000 Deferred libllvmamdgpuutils.so.3.7 ELF 7494000- 7497000 Deferred libllvmamdgpuinfo.so.3.7 ELF 74a3000- 74a6000 Deferred libllvmx86info.so.3.7 ELF 7cb1000- 7e20000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8332000- 83f9000 Deferred libllvmipo.so.3.7 ELF 85b7000- 865f000 Deferred libllvmvectorize.so.3.7 ELF 865f000- 872b000 Deferred libllvmamdgpudesc.so.3.7 ELF 872b000- 8755000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8755000- 8791000 Deferred libllvmbitwriter.so.3.7 ELF 8791000- 88f9000 Deferred libllvmx86disassembler.so.3.7 ELF 88fd000- 89a0000 Deferred libllvmx86asmparser.so.3.7 ELF 8edb000- 9161000 Deferred libllvmx86codegen.so.3.7 ELF 98d4000- 98dd000 Deferred libllvmmcdisassembler.so.3.7 ELF 9ab4000- 9dbd000 Deferred libllvmselectiondag.so.3.7 ELF 9dbd000- 9e8b000 Deferred libllvmasmprinter.so.3.7 ELF 9e8b000- 9e97000 Deferred libllvmx86utils.so.3.7 ELF 9e97000- 9ea7000 Deferred libllvmmcjit.so.3.7 ELF a459000- a947000 Deferred libllvmcodegen.so.3.7 ELF ab47000- ab88000 Deferred libllvmprofiledata.so.3.7 ELF ab88000- abbf000 Deferred libllvmipa.so.3.7 ELF abbf000- ac0a000 Deferred libllvmx86asmprinter.so.3.7 ELF ac0a000- ac1e000 Deferred libllvmtarget.so.3.7 ELF ae35000- aedd000 Deferred libllvminstrumentation.so.3.7 ELF aedd000- af07000 Deferred libllvmexecutionengine.so.3.7 ELF b103000- b3c5000 Deferred libllvmscalaropts.so.3.7 ELF b3c5000- b4b4000 Deferred libllvminstcombine.so.3.7 ELF b4b4000- b532000 Deferred libllvmruntimedyld.so.3.7 ELF b532000- b56f000 Deferred libllvmmcparser.so.3.7 ELF bd16000- be73000 Deferred libllvmx86desc.so.3.7 ELF be73000- bec4000 Deferred libllvmbitreader.so.3.7 ELF c296000- c3fc000 Deferred libllvmtransformutils.so.3.7 ELF c5fc000- c618000 Deferred libgcc_s.so.1 ELF c618000- c623000 Deferred libpciaccess.so.0 ELF c7cb000- cab8000 Deferred libllvmanalysis.so.3.7 ELF ccb8000- cd5f000 Deferred libllvmobject.so.3.7 ELF d0c6000- d185000 Deferred libllvmmc.so.3.7 ELF d385000- d3e3000 Deferred libncurses.so.6 ELF d895000- dbfb000 Deferred libllvmcore.so.3.7 ELF dcfb000- de18000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 00000093 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 0000009c (D) Z:\home\austin\wine-valgrind\dlls\amstream\tests\amstream_test.exe 0000009d 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==29599== 164 bytes in 1 blocks are definitely lost in loss record 1,065 of 1,289 ==29599== at 0x7BC50754: notify_alloc (heap.c:254) ==29599== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==29599== by 0x4B463D7: DDRAW_Create (main.c:267) ==29599== by 0x4B4660C: DirectDrawCreate (main.c:309) ==29599== by 0x4821F11: create_directdraw (amstream.c:60) ==29599== by 0x4822B4B: test_media_streams (amstream.c:205) ==29599== by 0x482725C: func_amstream (amstream.c:864) ==29599== by 0x482806C: run_test (test.h:589) ==29599== by 0x4828497: main (test.h:671) ==29599== { 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 } make[1]: *** [Makefile:171: amstream.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/amstream/tests' make: *** [Makefile:1726: 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 ==29682== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29682_a84d4fd6 is empty ==29682== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==29682== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29682_a84d4fd6 is empty ==29682== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==29682== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29682_a84d4fd6 is empty ==29682== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==29682== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp29682_a84d4fd6 is empty ==29682== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==29682== 128 bytes in 4 blocks are possibly lost in loss record 1,730 of 2,532 ==29682== at 0x7BC50754: notify_alloc (heap.c:254) ==29682== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==29682== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==29682== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==29682== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==29682== by 0x6A0D8113: ??? ==29682== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==29682== 256 bytes in 7 blocks are possibly lost in loss record 1,887 of 2,532 ==29682== at 0x7BC50754: notify_alloc (heap.c:254) ==29682== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==29682== by 0x4B9691A: IMalloc_fnAlloc (ifs.c:187) ==29682== by 0x4B971B9: IMalloc_Alloc (objidl.h:1508) ==29682== by 0x4B971B9: CoTaskMemAlloc (???:0) ==29682== by 0x52CA9BE: alloc_bstr (oleaut.c:177) ==29682== by 0x52CAD85: SysAllocStringLen (oleaut.c:355) ==29682== by 0x6944C83: pre_process_uri (uri.c:786) ==29682== by 0x6952176: CreateUri (uri.c:5738) ==29682== by 0x7387FCA: create_uri (persist.c:185) ==29682== by 0x7378A63: nsIOServiceHook_NewURI (nsio.c:3890) ==29682== by 0x69F3AFD9: ??? ==29682== { 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:* } ==29682== 482 bytes in 2 blocks are possibly lost in loss record 2,027 of 2,532 ==29682== at 0x7BC50754: notify_alloc (heap.c:254) ==29682== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==29682== by 0x7930F62: msvcrt_heap_realloc (heap.c:102) ==29682== by 0x7931B15: MSVCRT_realloc (heap.c:457) ==29682== by 0x69E78C00: ??? ==29682== { 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 ==30291== Invalid free() / delete / delete[] / realloc() ==30291== at 0x7BC5084A: notify_realloc (heap.c:270) ==30291== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==30291== by 0x4C1438C: CryptMemRealloc (main.c:128) ==30291== by 0x4A51066: test_cryptAllocate (main.c:204) ==30291== by 0x4A5215B: func_main (main.c:469) ==30291== by 0x4A7E19E: run_test (test.h:589) ==30291== by 0x4A7E5CA: main (test.h:671) ==30291== Address 0x48ec340 is 0 bytes after a block of size 0 alloc'd ==30291== at 0x7BC50754: notify_alloc (heap.c:254) ==30291== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30291== by 0x4C1434F: CryptMemAlloc (main.c:123) ==30291== by 0x4A51053: test_cryptAllocate (main.c:203) ==30291== by 0x4A5215B: func_main (main.c:469) ==30291== by 0x4A7E19E: run_test (test.h:589) ==30291== by 0x4A7E5CA: main (test.h:671) ==30291== { 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 msg && touch msg.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled illegal instruction at address (nil) (thread 014e), 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 (0x00000000). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:00000000 ESP:04bbfa7c EBP:04bbfba8 EFLAGS:00000000( - -- - - - ) EAX:00000000 EBX:04c5a000 ECX:00000011 EDX:048d1500 ESI:00000000 EDI:7c000aa0 Stack dump: 0x04bbfa7c: 04c165ef 00000000 048d1500 00000011 0x04bbfa8c: 00000000 00000000 04bbfaa4 04a99f93 0x04bbfa9c: 048d6088 048d0014 00000001 00000040 0x04bbfaac: 048d0000 00000001 00000001 00000000 0x04bbfabc: 048d6088 7bcf1000 04bbfb50 048d6080 0x04bbfacc: 7bc54db4 00000000 00000011 048d1500 Backtrace: =>0 0x00000000 (0x04bbfba8) 1 0x04c1dcaa CryptMsgUpdate+0x81(hCryptMsg=, pbData=, cbData=, fFinal=) [/home/austin/wine-valgrind/dlls/crypt32/msg.c:3601] in crypt32 (0x04bbfbe8) 2 0x04a595e1 test_data_msg_update+0x698() [/home/austin/wine-valgrind/dlls/crypt32/tests/msg.c:460] in crypt32_test (0x04bbfca8) 3 0x04a5a396 test_data_msg+0xf() [/home/austin/wine-valgrind/dlls/crypt32/tests/msg.c:718] in crypt32_test (0x04bbfcb8) 4 0x04a67319 func_msg+0xd0() [/home/austin/wine-valgrind/dlls/crypt32/tests/msg.c:3780] in crypt32_test (0x04bbfcc8) 5 0x04a7e19f run_test+0x96(name="msg") [/home/austin/wine-valgrind/dlls/crypt32/tests/../../../include/wine/test.h:589] in crypt32_test (0x04bbfd08) 6 0x04a7e5cb main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/crypt32/tests/../../../include/wine/test.h:671] in crypt32_test (0x04bbfdd8) 7 0x04a7e65c __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in crypt32_test (0x04bbfe18) 8 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04bbfe38) 9 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04bbfe88) 10 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04bbfea8) 11 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4bbffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04bbff98) 12 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04bbffb8) 13 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04bbffe8) 14 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 15 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4bc0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9be2b8) 16 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe9be338) 17 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9bf1e8) 18 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe9bf228) 19 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe9bf764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe9bf278) 20 0x7c000f80 main+0x145(argc=, argv=0xfe9bf764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9bf6b8) 21 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x00000000: -- no code accessible -- Modules: Module Address Debug info Name (43 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482b000 Deferred version \-PE 4820000- 482b000 \ version ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4ab1000 Dwarf crypt32_test \-PE 4a10000- 4ab1000 \ crypt32_test ELF 4bc0000- 4ca0000 Dwarf crypt32 \-PE 4bd0000- 4ca0000 \ crypt32 ELF 4ca0000- 4e15000 Deferred user32 \-PE 4cb0000- 4e15000 \ user32 ELF 4f15000- 505a000 Deferred gdi32 \-PE 4f20000- 505a000 \ gdi32 ELF 505a000- 50db000 Deferred advapi32 \-PE 5070000- 50db000 \ advapi32 ELF 50db000- 5157000 Deferred shlwapi \-PE 50f0000- 5157000 \ shlwapi ELF 5157000- 53b6000 Deferred shell32 \-PE 5170000- 53b6000 \ shell32 ELF 5602000- 56ba000 Deferred libfreetype.so.6 ELF 5704000- 5729000 Deferred imm32 \-PE 5710000- 5729000 \ imm32 ELF 5731000- 5775000 Deferred rsaenh \-PE 5740000- 5775000 \ rsaenh ELF 58ba000- 58d3000 Deferred libz.so.1 ELF 58d3000- 58e5000 Deferred libbz2.so.1 ELF 58e5000- 5923000 Deferred libpng16.so.16 ELF 5923000- 5960000 Deferred libfontconfig.so.1 ELF 5960000- 598a000 Deferred libexpat.so.1 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000014d (D) Z:\home\austin\wine-valgrind\dlls\crypt32\tests\crypt32_test.exe 0000014e 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:285: msg.ok] Error 29 ../../../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 ==30377== 48 bytes in 1 blocks are definitely lost in loss record 239 of 520 ==30377== at 0x7BC50754: notify_alloc (heap.c:254) ==30377== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30377== by 0x4C1434F: CryptMemAlloc (main.c:123) ==30377== by 0x4BECDDE: Context_CreateDataContext (context.c:32) ==30377== by 0x4BDB2BD: CertCreateCertificateContext (cert.c:334) ==30377== by 0x4A785CA: testEmptyStore (store.c:2945) ==30377== by 0x4A799BC: func_store (store.c:3208) ==30377== by 0x4A7E19E: run_test (test.h:589) ==30377== by 0x4A7E5CA: main (test.h:671) ==30377== { 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]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/crypt32/tests' make: *** [Makefile:5909: dlls/crypt32/tests/test] Error 2 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 0x6d9db2c (thread 0162), 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 (0x06d9db2c). 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:06d9db2c ESP:04b4e320 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:071bd000 ECX:047605a8 EDX:00200000 ESI:046e9920 EDI:047605a8 Stack dump: 0x04b4e320: 04b4e35c 04759ef4 00000003 00000002 0x04b4e330: 00007a50 00007a64 00000082 00007a6c 0x04b4e340: 00800000 00000000 00007a44 00007a48 0x04b4e350: 00007a4c 00000000 046e9100 00007a74 0x04b4e360: 00000000 00000000 00000000 00000000 0x04b4e370: 00000000 00000000 00000000 83a3a900 Backtrace: =>0 0x06d9db2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06d8435b in radeonsi_dri.so (+0x63435a) (0x046e8498) 2 0x06d846e2 in radeonsi_dri.so (+0x6346e1) (0x04b4e4b8) 3 0x06e04a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b4e4b8) 4 0x0677f79c in radeonsi_dri.so (+0x2f79b) (0x046dedb8) 5 0x06bb7000 in radeonsi_dri.so (+0x466fff) (0x046dedb8) 6 0x06bb6a3d in radeonsi_dri.so (+0x466a3c) (0x046dedb8) 7 0x06a7794b in radeonsi_dri.so (+0x32794a) (0x046dedb8) 8 0x06a73976 in radeonsi_dri.so (+0x323975) (0x046ded30) 9 0x0641f722 in libgl.so.1 (+0x43721) (0x0462c0b8) 10 0x063f4a42 in libgl.so.1 (+0x18a41) (0x04629b90) 11 0x063f060b in libgl.so.1 (+0x1460a) (0x04b4ef74) 12 0x063f0784 glXChooseVisual+0x63() in libgl.so.1 (0x04b4ef74) 13 0x05ab25cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b4f048) 14 0x05ab4023 init_opengl+0xfbe(once=0x5b10e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b4f258) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b4f2a8) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b4f2d8) 17 0x05ab449e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b4f308) 18 0x05abc533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b4f328) 19 0x05aa7293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48fa9f0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b4f358) 20 0x0514c5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b4f388) 21 0x04cb1c4f wined3d_adapter_init+0xe0(adapter=0x48f7440, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b4f7b8) 22 0x04cb2681 wined3d_init+0xa5(wined3d=0x48f7430, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b4f7e8) 23 0x04d38c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b4f848) 24 0x04c2c58a dxgi_factory_init+0x44(factory=0x48f7400, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b4f878) 25 0x04c2c622 dxgi_factory_create+0x51(riid=0x48233d4, factory=0x4b4f948, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b4f8c8) 26 0x04c2ac11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b4f908) 27 0x04821e12 D3D10CreateDevice1+0x1e1(adapter=(nil), driver_type=, swrast=(nil), flags=, hw_level=, sdk_version=, device=0x4b4fa68) [/home/austin/wine-valgrind/dlls/d3d10_1/d3d10_1_main.c:95] in d3d10_1 (0x04b4fa28) 28 0x04a17769 create_device+0x37() [/home/austin/wine-valgrind/dlls/d2d1/tests/d2d1.c:481] in d2d1_test (0x04b4fa78) 29 0x04a17ce9 test_clip+0x24() [/home/austin/wine-valgrind/dlls/d2d1/tests/d2d1.c:598] in d2d1_test (0x04b4fcb8) 30 0x04a312ae func_d2d1+0xa() [/home/austin/wine-valgrind/dlls/d2d1/tests/d2d1.c:3876] in d2d1_test (0x04b4fcc8) 31 0x04a320bc run_test+0x96(name="d2d1") [/home/austin/wine-valgrind/dlls/d2d1/tests/../../../include/wine/test.h:589] in d2d1_test (0x04b4fd08) 32 0x04a324e7 main+0x244(argc=, argv=0x48d1dd8) [/home/austin/wine-valgrind/dlls/d2d1/tests/../../../include/wine/test.h:671] in d2d1_test (0x04b4fdd8) 33 0x04a32574 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d2d1_test (0x04b4fe18) 34 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b4fe38) 35 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b4fe88) 36 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b4fea8) 37 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b4ff98) 38 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b4ffb8) 39 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b4ffe8) 40 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 41 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4b50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeef72c8) 42 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeef7348) 43 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeef81f8) 44 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeef8238) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeef8774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeef8288) 46 0x7c000f80 main+0x145(argc=, argv=0xfeef8774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeef86c8) 47 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06d9db2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4826000 Dwarf d3d10_1 \-PE 4820000- 4826000 \ d3d10_1 ELF 482a000- 4840000 Deferred d3d10core \-PE 4830000- 4840000 \ d3d10core ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a41000 Dwarf d2d1_test \-PE 4a10000- 4a41000 \ d2d1_test ELF 4b50000- 4baf000 Deferred d2d1 \-PE 4b60000- 4baf000 \ d2d1 ELF 4baf000- 4c16000 Deferred d3d11 \-PE 4bc0000- 4c16000 \ d3d11 ELF 4c16000- 4c41000 Dwarf dxgi \-PE 4c20000- 4c41000 \ dxgi ELF 4c41000- 4da0000 Dwarf wined3d \-PE 4c50000- 4da0000 \ wined3d ELF 50a0000- 51e5000 Dwarf gdi32 \-PE 50b0000- 51e5000 \ gdi32 ELF 51e9000- 526a000 Deferred advapi32 \-PE 5200000- 526a000 \ advapi32 ELF 5272000- 53e7000 Deferred user32 \-PE 5280000- 53e7000 \ user32 ELF 54f3000- 550e000 Deferred version \-PE 5500000- 550e000 \ version ELF 551a000- 5560000 Deferred d3d10 \-PE 5520000- 5560000 \ d3d10 ELF 5568000- 55ec000 Deferred d3dcompiler_43 \-PE 5570000- 55ec000 \ d3dcompiler_43 ELF 563d000- 5640000 Deferred libxshmfence.so.1 ELF 5644000- 56fc000 Deferred libfreetype.so.6 ELF 5904000- 591d000 Deferred libz.so.1 ELF 5925000- 5937000 Deferred libbz2.so.1 ELF 593f000- 597d000 Deferred libpng16.so.16 ELF 5981000- 59be000 Deferred libfontconfig.so.1 ELF 59c6000- 59f0000 Deferred libexpat.so.1 ELF 59fc000- 5a08000 Deferred libxcursor.so.1 ELF 5a10000- 5a17000 Deferred libxfixes.so.3 ELF 5a27000- 5a2a000 Deferred libx11-xcb.so.1 ELF 5a47000- 5a6c000 Deferred imm32 \-PE 5a50000- 5a6c000 \ imm32 ELF 5a74000- 5b14000 Dwarf winex11 \-PE 5a80000- 5b14000 \ winex11 ELF 5b28000- 5b2c000 Deferred libxinerama.so.1 ELF 5b30000- 5b36000 Deferred libxxf86vm.so.1 ELF 5b3a000- 5b46000 Deferred libxrender.so.1 ELF 5b4a000- 5b57000 Deferred libxrandr.so.2 ELF 5b5b000- 5b5f000 Deferred libxcomposite.so.1 ELF 5b6c000- 5b7f000 Deferred libxext.so.6 ELF 5b83000- 5cd4000 Deferred libx11.so.6 ELF 5cdc000- 5d08000 Deferred libxcb.so.1 ELF 5d0c000- 5d10000 Deferred libxau.so.6 ELF 5d10000- 5d17000 Deferred libxdmcp.so.6 ELF 5d1b000- 5d37000 Deferred libbsd.so.0 ELF 5d4d000- 5d50000 Deferred libllvmamdgpuutils.so.3.7 ELF 5d6e000- 5d72000 Deferred libxcb-dri3.so.0 ELF 5d7a000- 5d7e000 Deferred libxcb-present.so.0 ELF 5d7e000- 5d86000 Deferred libxcb-sync.so.1 ELF 5d87000- 5d9a000 Deferred libxi.so.6 ELF 5daa000- 5db0000 Deferred libtxc_dxtn.so ELF 5deb000- 5e5e000 Deferred dwrite \-PE 5df0000- 5e5e000 \ dwrite ELF 5e5e000- 5fe0000 Deferred ole32 \-PE 5e80000- 5fe0000 \ ole32 ELF 60e0000- 616d000 Deferred rpcrt4 \-PE 60f0000- 616d000 \ rpcrt4 ELF 61a5000- 61af000 Deferred libdrm_nouveau.so.2 ELF 61bd000- 61c1000 Deferred libxdamage.so.1 ELF 61c9000- 61cf000 Deferred libxcb-dri2.so.0 ELF 63dc000- 6453000 Dwarf libgl.so.1 ELF 6453000- 648a000 Deferred libglapi.so.0 ELF 648a000- 64a7000 Deferred libxcb-glx.so.0 ELF 64a7000- 64b9000 Deferred libdrm.so.2 ELF 64b9000- 64c7000 Deferred libdrm_radeon.so.1 ELF 64c7000- 64d2000 Deferred libdrm_amdgpu.so.1 ELF 6728000- 6750000 Deferred libudev.so.1 ELF 6750000- 73bb000 Dwarf radeonsi_dri.so ELF 76a0000- 76e0000 Deferred libnettle.so.6 ELF 76e0000- 7705000 Deferred libdrm_intel.so.1 ELF 7705000- 7722000 Deferred libelf.so.1 ELF 7722000- 7891000 Deferred libllvmamdgpucodegen.so.3.7 ELF 78a5000- 78a8000 Deferred libllvmamdgpuinfo.so.3.7 ELF 78b8000- 78bb000 Deferred libllvmx86info.so.3.7 ELF 7fc6000- 808d000 Deferred libllvmipo.so.3.7 ELF 808d000- 80b7000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8896000- 893e000 Deferred libllvmvectorize.so.3.7 ELF 893e000- 8998000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8998000- 8a64000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a64000- 8aa0000 Deferred libllvmbitwriter.so.3.7 ELF 8aa0000- 8c08000 Deferred libllvmx86disassembler.so.3.7 ELF 8c08000- 8cab000 Deferred libllvmx86asmparser.so.3.7 ELF 91f0000- 9476000 Deferred libllvmx86codegen.so.3.7 ELF 9ccd000- 9d04000 Deferred libllvmipa.so.3.7 ELF 9ec9000- a1d2000 Deferred libllvmselectiondag.so.3.7 ELF a1d2000- a2a0000 Deferred libllvmasmprinter.so.3.7 ELF a2a4000- a2ad000 Deferred libllvmmcdisassembler.so.3.7 ELF a2bd000- a2c9000 Deferred libllvmx86utils.so.3.7 ELF a5ed000- a5fd000 Deferred libllvmmcjit.so.3.7 ELF a86e000- ad5c000 Deferred libllvmcodegen.so.3.7 ELF ae5c000- b11e000 Deferred libllvmscalaropts.so.3.7 ELF b518000- b559000 Deferred libllvmprofiledata.so.3.7 ELF b559000- b601000 Deferred libllvminstrumentation.so.3.7 ELF b601000- b615000 Deferred libllvmtarget.so.3.7 ELF b725000- b814000 Deferred libllvminstcombine.so.3.7 ELF b914000- b95f000 Deferred libllvmx86asmprinter.so.3.7 ELF b95f000- b989000 Deferred libllvmexecutionengine.so.3.7 ELF b9b5000- b9c0000 Deferred libpciaccess.so.0 ELF c064000- c0e2000 Deferred libllvmruntimedyld.so.3.7 ELF c4ab000- c611000 Deferred libllvmtransformutils.so.3.7 ELF c711000- c86e000 Deferred libllvmx86desc.so.3.7 ELF c86e000- c915000 Deferred libllvmobject.so.3.7 ELF c915000- c931000 Deferred libgcc_s.so.1 ELF cae0000- cdcd000 Deferred libllvmanalysis.so.3.7 ELF d3db000- d418000 Deferred libllvmmcparser.so.3.7 ELF d418000- d469000 Deferred libllvmbitreader.so.3.7 ELF d469000- d528000 Deferred libllvmmc.so.3.7 ELF daaa000- de10000 Deferred libllvmcore.so.3.7 ELF df10000- e02d000 Deferred libllvmsupport.so.3.7 ELF e02d000- e08b000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000161 (D) Z:\home\austin\wine-valgrind\dlls\d2d1\tests\d2d1_test.exe 00000162 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:171: d2d1.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d2d1/tests' make: *** [Makefile:6195: 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 0x69a2b2c (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 (0x069a2b2c). 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:069a2b2c ESP:04b3e500 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06dc2000 ECX:0470dbb8 EDX:00200000 ESI:04696f30 EDI:0470dbb8 Stack dump: 0x04b3e500: 04b3e53c 04707504 00000003 00000002 0x04b3e510: 00007a50 00007a64 00000082 00007a6c 0x04b3e520: 00800000 00000000 00007a44 00007a48 0x04b3e530: 00007a4c 00000000 04696710 00007a74 0x04b3e540: 00000000 00000000 00000000 00000000 0x04b3e550: 00000000 00000000 00000000 629cf200 Backtrace: =>0 0x069a2b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0698935b in radeonsi_dri.so (+0x63435a) (0x04695aa8) 2 0x069896e2 in radeonsi_dri.so (+0x6346e1) (0x04b3e698) 3 0x06a09a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b3e698) 4 0x0638479c in radeonsi_dri.so (+0x2f79b) (0x0468c3c8) 5 0x067bc000 in radeonsi_dri.so (+0x466fff) (0x0468c3c8) 6 0x067bba3d in radeonsi_dri.so (+0x466a3c) (0x0468c3c8) 7 0x0667c94b in radeonsi_dri.so (+0x32794a) (0x0468c3c8) 8 0x06678976 in radeonsi_dri.so (+0x323975) (0x0468c340) 9 0x05def722 in libgl.so.1 (+0x43721) (0x045d96c8) 10 0x05dc4a42 in libgl.so.1 (+0x18a41) (0x045d71a0) 11 0x05dc060b in libgl.so.1 (+0x1460a) (0x04b3f154) 12 0x05dc0784 glXChooseVisual+0x63() in libgl.so.1 (0x04b3f154) 13 0x05a335cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b3f228) 14 0x05a35023 init_opengl+0xfbe(once=0x5a91e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b3f438) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b3f488) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b3f4b8) 17 0x05a3549e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b3f4e8) 18 0x05a3d533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b3f508) 19 0x05a28293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f7b80, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b3f538) 20 0x051235c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b3f568) 21 0x04c88c4f wined3d_adapter_init+0xe0(adapter=0x48f45d0, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b3f998) 22 0x04c89681 wined3d_init+0xa5(wined3d=0x48f45c0, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b3f9c8) 23 0x04d0fc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b3fa28) 24 0x04c0358a dxgi_factory_init+0x44(factory=0x48f4590, 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 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b3fe38) 35 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b3fe88) 36 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b3fea8) 37 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b3ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b3ff98) 38 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b3ffb8) 39 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b40000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfed522b8) 42 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfed52338) 43 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfed531e8) 44 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfed53228) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfed53764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfed53278) 46 0x7c000f80 main+0x145(argc=, argv=0xfed53764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfed536b8) 47 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069a2b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4826000 Deferred d3d10core \-PE 4820000- 4826000 \ d3d10core ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 4d77000 Dwarf wined3d \-PE 4c30000- 4d77000 \ wined3d ELF 5077000- 51bc000 Dwarf gdi32 \-PE 5080000- 51bc000 \ gdi32 ELF 51bc000- 523d000 Deferred advapi32 \-PE 51d0000- 523d000 \ advapi32 ELF 5241000- 53b6000 Deferred user32 \-PE 5250000- 53b6000 \ user32 ELF 54c2000- 54dd000 Deferred version \-PE 54d0000- 54dd000 \ version ELF 54e9000- 556d000 Deferred d3dcompiler_43 \-PE 54f0000- 556d000 \ d3dcompiler_43 ELF 55cd000- 5685000 Deferred libfreetype.so.6 ELF 5889000- 58a2000 Deferred libz.so.1 ELF 58aa000- 58bc000 Deferred libbz2.so.1 ELF 58c0000- 58fe000 Deferred libpng16.so.16 ELF 5902000- 593f000 Deferred libfontconfig.so.1 ELF 5947000- 5971000 Deferred libexpat.so.1 ELF 597d000- 5989000 Deferred libxcursor.so.1 ELF 598d000- 5994000 Deferred libxfixes.so.3 ELF 59ac000- 59af000 Deferred libxshmfence.so.1 ELF 59c8000- 59ed000 Deferred imm32 \-PE 59d0000- 59ed000 \ imm32 ELF 59f5000- 5a95000 Dwarf winex11 \-PE 5a00000- 5a95000 \ winex11 ELF 5aa9000- 5aad000 Deferred libxinerama.so.1 ELF 5ab1000- 5ab7000 Deferred libxxf86vm.so.1 ELF 5abb000- 5ac7000 Deferred libxrender.so.1 ELF 5acb000- 5ad8000 Deferred libxrandr.so.2 ELF 5adc000- 5ae0000 Deferred libxcomposite.so.1 ELF 5aed000- 5b00000 Deferred libxext.so.6 ELF 5b00000- 5c51000 Deferred libx11.so.6 ELF 5c55000- 5c81000 Deferred libxcb.so.1 ELF 5c85000- 5c89000 Deferred libxau.so.6 ELF 5c89000- 5c90000 Deferred libxdmcp.so.6 ELF 5c90000- 5cac000 Deferred libbsd.so.0 ELF 5cb8000- 5cbc000 Deferred libxcb-dri3.so.0 ELF 5cbc000- 5cc0000 Deferred libxcb-present.so.0 ELF 5cc1000- 5cc9000 Deferred libxcb-sync.so.1 ELF 5ccd000- 5cd0000 Deferred libx11-xcb.so.1 ELF 5cd5000- 5cd9000 Deferred libxdamage.so.1 ELF 5cd9000- 5cf6000 Deferred libxcb-glx.so.0 ELF 5cf6000- 5cfc000 Deferred libxcb-dri2.so.0 ELF 5cfc000- 5d0f000 Deferred libxi.so.6 ELF 5d1f000- 5d25000 Deferred libtxc_dxtn.so ELF 5d80000- 5da8000 Deferred libudev.so.1 ELF 5dac000- 5e23000 Dwarf libgl.so.1 ELF 5f23000- 5f5a000 Deferred libglapi.so.0 ELF 5f5a000- 5f6c000 Deferred libdrm.so.2 ELF 60d0000- 6110000 Deferred libnettle.so.6 ELF 6110000- 6135000 Deferred libdrm_intel.so.1 ELF 6139000- 6143000 Deferred libdrm_nouveau.so.2 ELF 6147000- 6155000 Deferred libdrm_radeon.so.1 ELF 6355000- 6fc0000 Dwarf radeonsi_dri.so ELF 71a9000- 71b4000 Deferred libdrm_amdgpu.so.1 ELF 71bc000- 71d9000 Deferred libelf.so.1 ELF 71e1000- 72a8000 Deferred libllvmipo.so.3.7 ELF 72bc000- 72bf000 Deferred libllvmamdgpuutils.so.3.7 ELF 77c0000- 792f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 792f000- 7989000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 7991000- 7994000 Deferred libllvmamdgpuinfo.so.3.7 ELF 839b000- 8443000 Deferred libllvmvectorize.so.3.7 ELF 8443000- 850f000 Deferred libllvmamdgpudesc.so.3.7 ELF 850f000- 8539000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8539000- 8575000 Deferred libllvmbitwriter.so.3.7 ELF 8575000- 86dd000 Deferred libllvmx86disassembler.so.3.7 ELF 86dd000- 8780000 Deferred libllvmx86asmparser.so.3.7 ELF 8888000- 88c9000 Deferred libllvmprofiledata.so.3.7 ELF 88c9000- 88cc000 Deferred libllvmx86info.so.3.7 ELF 8cf5000- 8f7b000 Deferred libllvmx86codegen.so.3.7 ELF 97d2000- 9809000 Deferred libllvmipa.so.3.7 ELF 99ce000- 9cd7000 Deferred libllvmselectiondag.so.3.7 ELF 9cd7000- 9da5000 Deferred libllvmasmprinter.so.3.7 ELF 9dad000- 9db6000 Deferred libllvmmcdisassembler.so.3.7 ELF 9dc6000- 9dd2000 Deferred libllvmx86utils.so.3.7 ELF a373000- a861000 Deferred libllvmcodegen.so.3.7 ELF a961000- aa09000 Deferred libllvminstrumentation.so.3.7 ELF aa09000- aa19000 Deferred libllvmmcjit.so.3.7 ELF aa19000- aa2d000 Deferred libllvmtarget.so.3.7 ELF ac4f000- ac9a000 Deferred libllvmx86asmprinter.so.3.7 ELF ac9a000- acc4000 Deferred libllvmexecutionengine.so.3.7 ELF acc4000- ad01000 Deferred libllvmmcparser.so.3.7 ELF ad25000- ad30000 Deferred libpciaccess.so.0 ELF af1d000- b1df000 Deferred libllvmscalaropts.so.3.7 ELF b1df000- b2ce000 Deferred libllvminstcombine.so.3.7 ELF b2ce000- b34c000 Deferred libllvmruntimedyld.so.3.7 ELF b34c000- b368000 Deferred libgcc_s.so.1 ELF bc30000- bcd7000 Deferred libllvmobject.so.3.7 ELF c0b0000- c216000 Deferred libllvmtransformutils.so.3.7 ELF c316000- c473000 Deferred libllvmx86desc.so.3.7 ELF c473000- c4c4000 Deferred libllvmbitreader.so.3.7 ELF c4c4000- c522000 Deferred libncurses.so.6 ELF c6e5000- c9d2000 Deferred libllvmanalysis.so.3.7 ELF cee0000- cf9f000 Deferred libllvmmc.so.3.7 ELF d6af000- da15000 Deferred libllvmcore.so.3.7 ELF db15000- dc32000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000167 (D) Z:\home\austin\wine-valgrind\dlls\d3d10\tests\d3d10_test.exe 00000168 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:206: effect.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d10/tests' make: *** [Makefile:6242: 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 0x69c9b2c (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 (0x069c9b2c). 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:069c9b2c ESP:04b0e4b0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06de9000 ECX:046fd598 EDX:00200000 ESI:04686910 EDI:046fd598 Stack dump: 0x04b0e4b0: 04b0e4ec 046f6ee4 00000003 00000002 0x04b0e4c0: 00007a50 00007a64 00000082 00007a6c 0x04b0e4d0: 00800000 00000000 00007a44 00007a48 0x04b0e4e0: 00007a4c 00000000 046860f0 00007a74 0x04b0e4f0: 00000000 00000000 00000000 00000000 0x04b0e500: 00000000 00000000 00000000 fa1c8200 Backtrace: =>0 0x069c9b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x069b035b in radeonsi_dri.so (+0x63435a) (0x04685488) 2 0x069b06e2 in radeonsi_dri.so (+0x6346e1) (0x04b0e648) 3 0x06a30a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e648) 4 0x063ab79c in radeonsi_dri.so (+0x2f79b) (0x0467bda8) 5 0x067e3000 in radeonsi_dri.so (+0x466fff) (0x0467bda8) 6 0x067e2a3d in radeonsi_dri.so (+0x466a3c) (0x0467bda8) 7 0x066a394b in radeonsi_dri.so (+0x32794a) (0x0467bda8) 8 0x0669f976 in radeonsi_dri.so (+0x323975) (0x0467bd20) 9 0x05d1a722 in libgl.so.1 (+0x43721) (0x045c90a8) 10 0x05cefa42 in libgl.so.1 (+0x18a41) (0x045c6b80) 11 0x05ceb60b in libgl.so.1 (+0x1460a) (0x04b0f104) 12 0x05ceb784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0f104) 13 0x059525cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0f1d8) 14 0x05954023 init_opengl+0xfbe(once=0x59b0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f3e8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f438) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f468) 17 0x0595449e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f498) 18 0x0595c533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f4b8) 19 0x05947293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f7420, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f4e8) 20 0x050c35c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f518) 21 0x04c28c4f wined3d_adapter_init+0xe0(adapter=0x48f3e70, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0f948) 22 0x04c29681 wined3d_init+0xa5(wined3d=0x48f3e60, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0f978) 23 0x04cafc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0f9d8) 24 0x04ba358a dxgi_factory_init+0x44(factory=0x48f3e30, 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 0x04821ec2 test_create_device+0x52() [/home/austin/wine-valgrind/dlls/d3d10_1/tests/d3d10_1.c:84] in d3d10_1_test (0x04b0fcb8) 29 0x04825c4e func_d3d10_1+0xa() [/home/austin/wine-valgrind/dlls/d3d10_1/tests/d3d10_1.c:749] in d3d10_1_test (0x04b0fcc8) 30 0x04826a08 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 0x04826e33 main+0x244(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/d3d10_1/tests/../../../include/wine/test.h:671] in d3d10_1_test (0x04b0fdd8) 32 0x04826ec4 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d10_1_test (0x04b0fe18) 33 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 34 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 35 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 36 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 37 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 38 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9322b8) 41 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe932338) 42 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9331e8) 43 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe933228) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe933764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe933278) 45 0x7c000f80 main+0x145(argc=, argv=0xfe933764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9336b8) 46 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069c9b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482d000 Dwarf d3d10_1_test \-PE 4820000- 482d000 \ d3d10_1_test ELF 4844000- 485a000 Dwarf d3d10_1 \-PE 4850000- 485a000 \ d3d10_1 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 4d17000 Dwarf wined3d \-PE 4bd0000- 4d17000 \ wined3d ELF 5017000- 515c000 Dwarf gdi32 \-PE 5020000- 515c000 \ gdi32 ELF 5164000- 51e5000 Deferred advapi32 \-PE 5170000- 51e5000 \ advapi32 ELF 51f1000- 5366000 Deferred user32 \-PE 5200000- 5366000 \ user32 ELF 5472000- 548d000 Deferred version \-PE 5480000- 548d000 \ version ELF 54ed000- 55a5000 Deferred libfreetype.so.6 ELF 57a9000- 57c2000 Deferred libz.so.1 ELF 57ca000- 57dc000 Deferred libbz2.so.1 ELF 57e0000- 581e000 Deferred libpng16.so.16 ELF 5822000- 585f000 Deferred libfontconfig.so.1 ELF 5867000- 5891000 Deferred libexpat.so.1 ELF 58a1000- 58ad000 Deferred libxcursor.so.1 ELF 58b1000- 58b8000 Deferred libxfixes.so.3 ELF 58cc000- 58cf000 Deferred libxshmfence.so.1 ELF 58e7000- 590c000 Deferred imm32 \-PE 58f0000- 590c000 \ imm32 ELF 5914000- 59b4000 Dwarf winex11 \-PE 5920000- 59b4000 \ winex11 ELF 59c8000- 59cc000 Deferred libxinerama.so.1 ELF 59d0000- 59d6000 Deferred libxxf86vm.so.1 ELF 59da000- 59e6000 Deferred libxrender.so.1 ELF 59ea000- 59f7000 Deferred libxrandr.so.2 ELF 59fb000- 59ff000 Deferred libxcomposite.so.1 ELF 5a0c000- 5a1f000 Deferred libxext.so.6 ELF 5a23000- 5b74000 Deferred libx11.so.6 ELF 5b7c000- 5ba8000 Deferred libxcb.so.1 ELF 5bac000- 5bb0000 Deferred libxau.so.6 ELF 5bb0000- 5bb7000 Deferred libxdmcp.so.6 ELF 5bbb000- 5bd7000 Deferred libbsd.so.0 ELF 5be5000- 5be9000 Deferred libxcb-dri3.so.0 ELF 5be9000- 5bed000 Deferred libxcb-present.so.0 ELF 5bed000- 5bf0000 Deferred libx11-xcb.so.1 ELF 5bf1000- 5bf9000 Deferred libxcb-sync.so.1 ELF 5bfd000- 5c01000 Deferred libxdamage.so.1 ELF 5c05000- 5c22000 Deferred libxcb-glx.so.0 ELF 5c27000- 5c3a000 Deferred libxi.so.6 ELF 5c4a000- 5c50000 Deferred libtxc_dxtn.so ELF 5cab000- 5cd3000 Deferred libudev.so.1 ELF 5cd7000- 5d4e000 Dwarf libgl.so.1 ELF 5d4e000- 5d85000 Deferred libglapi.so.0 ELF 5d85000- 5d8b000 Deferred libxcb-dri2.so.0 ELF 5d8b000- 5d9d000 Deferred libdrm.so.2 ELF 5f09000- 5f49000 Deferred libnettle.so.6 ELF 5f4d000- 5f72000 Deferred libdrm_intel.so.1 ELF 617c000- 6186000 Deferred libdrm_nouveau.so.2 ELF 618a000- 6198000 Deferred libdrm_radeon.so.1 ELF 619c000- 61a7000 Deferred libdrm_amdgpu.so.1 ELF 61ab000- 61c8000 Deferred libelf.so.1 ELF 61e4000- 623e000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 6246000- 6249000 Deferred libllvmamdgpuutils.so.3.7 ELF 6251000- 6254000 Deferred libllvmamdgpuinfo.so.3.7 ELF 637c000- 6fe7000 Dwarf radeonsi_dri.so ELF 71e4000- 71e7000 Deferred libllvmx86info.so.3.7 ELF 78f2000- 7a61000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7d61000- 7e28000 Deferred libllvmipo.so.3.7 ELF 7e28000- 7e52000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8231000- 82d9000 Deferred libllvmvectorize.so.3.7 ELF 82d9000- 83a5000 Deferred libllvmamdgpudesc.so.3.7 ELF 83a5000- 83e1000 Deferred libllvmbitwriter.so.3.7 ELF 83e1000- 8549000 Deferred libllvmx86disassembler.so.3.7 ELF 8549000- 85ec000 Deferred libllvmx86asmparser.so.3.7 ELF 8b1c000- 8da2000 Deferred libllvmx86codegen.so.3.7 ELF 8eae000- 8eb7000 Deferred libllvmmcdisassembler.so.3.7 ELF 95f9000- 9630000 Deferred libllvmipa.so.3.7 ELF 97f5000- 9afe000 Deferred libllvmselectiondag.so.3.7 ELF 9afe000- 9bcc000 Deferred libllvmasmprinter.so.3.7 ELF 9bd0000- 9bdc000 Deferred libllvmx86utils.so.3.7 ELF 9be0000- 9bf0000 Deferred libllvmmcjit.so.3.7 ELF a19a000- a688000 Deferred libllvmcodegen.so.3.7 ELF a888000- ab4a000 Deferred libllvmscalaropts.so.3.7 ELF ac4a000- ac5e000 Deferred libllvmtarget.so.3.7 ELF af44000- af85000 Deferred libllvmprofiledata.so.3.7 ELF af85000- b02d000 Deferred libllvminstrumentation.so.3.7 ELF b151000- b240000 Deferred libllvminstcombine.so.3.7 ELF b240000- b28b000 Deferred libllvmx86asmprinter.so.3.7 ELF b28b000- b2b5000 Deferred libllvmexecutionengine.so.3.7 ELF ba57000- bad5000 Deferred libllvmruntimedyld.so.3.7 ELF bad5000- bb12000 Deferred libllvmmcparser.so.3.7 ELF bed7000- c03d000 Deferred libllvmtransformutils.so.3.7 ELF c255000- c271000 Deferred libgcc_s.so.1 ELF c40c000- c569000 Deferred libllvmx86desc.so.3.7 ELF c569000- c856000 Deferred libllvmanalysis.so.3.7 ELF ca56000- cafd000 Deferred libllvmobject.so.3.7 ELF cafd000- cb4e000 Deferred libllvmbitreader.so.3.7 ELF cd64000- ce23000 Deferred libllvmmc.so.3.7 ELF d023000- d02e000 Deferred libpciaccess.so.0 ELF d02e000- d08c000 Deferred libncurses.so.6 ELF d533000- d899000 Deferred libllvmcore.so.3.7 ELF d999000- dab6000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000016b (D) Z:\home\austin\wine-valgrind\dlls\d3d10_1\tests\d3d10_1_test.exe 0000016c 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30471== 28 bytes in 1 blocks are possibly lost in loss record 399 of 1,279 ==30471== at 0x7BC50754: notify_alloc (heap.c:254) ==30471== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30471== by 0x4BA35FD: dxgi_factory_create (factory.c:327) ==30471== by 0x4BA1C10: CreateDXGIFactory (dxgi_main.c:70) ==30471== by 0x4855E11: D3D10CreateDevice1 (d3d10_1_main.c:95) ==30471== by 0x4821EC1: test_create_device (d3d10_1.c:84) ==30471== by 0x4825C4D: func_d3d10_1 (d3d10_1.c:749) ==30471== by 0x4826A07: run_test (test.h:589) ==30471== by 0x4826E32: main (test.h:671) ==30471== { 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 } make[1]: *** [Makefile:171: 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' make: *** [Makefile:6289: 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 0x69c2b2c (thread 0170), 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 (0x069c2b2c). 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:069c2b2c ESP:04b5e530 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06de2000 ECX:0470dbd0 EDX:00200000 ESI:04696f48 EDI:0470dbd0 Stack dump: 0x04b5e530: 04b5e56c 0470751c 00000003 00000002 0x04b5e540: 00007a50 00007a64 00000082 00007a6c 0x04b5e550: 00800000 00000000 00007a44 00007a48 0x04b5e560: 00007a4c 00000000 04696728 00007a74 0x04b5e570: 00000000 00000000 00000000 00000000 0x04b5e580: 00000000 00000000 00000000 880ecb00 Backtrace: =>0 0x069c2b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x069a935b in radeonsi_dri.so (+0x63435a) (0x04695ac0) 2 0x069a96e2 in radeonsi_dri.so (+0x6346e1) (0x04b5e6c8) 3 0x06a29a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b5e6c8) 4 0x063a479c in radeonsi_dri.so (+0x2f79b) (0x0468c3e0) 5 0x067dc000 in radeonsi_dri.so (+0x466fff) (0x0468c3e0) 6 0x067dba3d in radeonsi_dri.so (+0x466a3c) (0x0468c3e0) 7 0x0669c94b in radeonsi_dri.so (+0x32794a) (0x0468c3e0) 8 0x06698976 in radeonsi_dri.so (+0x323975) (0x0468c358) 9 0x05e0f722 in libgl.so.1 (+0x43721) (0x045d96e0) 10 0x05de4a42 in libgl.so.1 (+0x18a41) (0x045d71b8) 11 0x05de060b in libgl.so.1 (+0x1460a) (0x04b5f184) 12 0x05de0784 glXChooseVisual+0x63() in libgl.so.1 (0x04b5f184) 13 0x05a535cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b5f258) 14 0x05a55023 init_opengl+0xfbe(once=0x5ab1e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b5f468) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b5f4b8) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b5f4e8) 17 0x05a5549e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b5f518) 18 0x05a5d533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b5f538) 19 0x05a48293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f7f58, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b5f568) 20 0x051435c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b5f598) 21 0x04ca8c4f wined3d_adapter_init+0xe0(adapter=0x48f49a8, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b5f9c8) 22 0x04ca9681 wined3d_init+0xa5(wined3d=0x48f4998, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b5f9f8) 23 0x04d2fc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b5fa58) 24 0x04c2358a dxgi_factory_init+0x44(factory=0x48f4968, 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 0x04a18c5f create_device+0x32() [/home/austin/wine-valgrind/dlls/d3d10core/tests/device.c:801] in d3d10core_test (0x04b5fc78) 29 0x04a19b73 test_feature_level+0x21() [/home/austin/wine-valgrind/dlls/d3d10core/tests/device.c:1105] in d3d10core_test (0x04b5fcb8) 30 0x04a455fc func_device+0xa() [/home/austin/wine-valgrind/dlls/d3d10core/tests/device.c:10837] in d3d10core_test (0x04b5fcc8) 31 0x04a464c4 run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/d3d10core/tests/../../../include/wine/test.h:589] in d3d10core_test (0x04b5fd08) 32 0x04a468ef main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3d10core/tests/../../../include/wine/test.h:671] in d3d10core_test (0x04b5fdd8) 33 0x04a46980 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d10core_test (0x04b5fe18) 34 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b5fe38) 35 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b5fe88) 36 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b5fea8) 37 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b5ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b5ff98) 38 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b5ffb8) 39 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b60000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe88e2b8) 42 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe88e338) 43 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe88f1e8) 44 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe88f228) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe88f764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe88f278) 46 0x7c000f80 main+0x145(argc=, argv=0xfe88f764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe88f6b8) 47 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069c2b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4826000 Deferred d3d10core \-PE 4820000- 4826000 \ d3d10core ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a5c000 Dwarf d3d10core_test \-PE 4a10000- 4a5c000 \ 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- 4d97000 Dwarf wined3d \-PE 4c50000- 4d97000 \ wined3d ELF 5097000- 51dc000 Dwarf gdi32 \-PE 50a0000- 51dc000 \ gdi32 ELF 51dc000- 525d000 Deferred advapi32 \-PE 51f0000- 525d000 \ advapi32 ELF 5261000- 53d6000 Deferred user32 \-PE 5270000- 53d6000 \ user32 ELF 54e2000- 54fd000 Deferred version \-PE 54f0000- 54fd000 \ version ELF 5509000- 558d000 Deferred d3dcompiler_43 \-PE 5510000- 558d000 \ d3dcompiler_43 ELF 55ed000- 56a5000 Deferred libfreetype.so.6 ELF 58a9000- 58c2000 Deferred libz.so.1 ELF 58ca000- 58dc000 Deferred libbz2.so.1 ELF 58e0000- 591e000 Deferred libpng16.so.16 ELF 5922000- 595f000 Deferred libfontconfig.so.1 ELF 5967000- 5991000 Deferred libexpat.so.1 ELF 599d000- 59a9000 Deferred libxcursor.so.1 ELF 59ad000- 59b4000 Deferred libxfixes.so.3 ELF 59cc000- 59cf000 Deferred libxshmfence.so.1 ELF 59e8000- 5a0d000 Deferred imm32 \-PE 59f0000- 5a0d000 \ imm32 ELF 5a15000- 5ab5000 Dwarf winex11 \-PE 5a20000- 5ab5000 \ winex11 ELF 5ac9000- 5acd000 Deferred libxinerama.so.1 ELF 5ad1000- 5ad7000 Deferred libxxf86vm.so.1 ELF 5adb000- 5ae7000 Deferred libxrender.so.1 ELF 5aeb000- 5af8000 Deferred libxrandr.so.2 ELF 5afc000- 5b00000 Deferred libxcomposite.so.1 ELF 5b0d000- 5b20000 Deferred libxext.so.6 ELF 5b20000- 5c71000 Deferred libx11.so.6 ELF 5c75000- 5ca1000 Deferred libxcb.so.1 ELF 5ca5000- 5ca9000 Deferred libxau.so.6 ELF 5ca9000- 5cb0000 Deferred libxdmcp.so.6 ELF 5cb0000- 5ccc000 Deferred libbsd.so.0 ELF 5cd8000- 5cdc000 Deferred libxcb-dri3.so.0 ELF 5cdc000- 5ce0000 Deferred libxcb-present.so.0 ELF 5ce1000- 5ce9000 Deferred libxcb-sync.so.1 ELF 5ced000- 5cf0000 Deferred libx11-xcb.so.1 ELF 5cf5000- 5cf9000 Deferred libxdamage.so.1 ELF 5cf9000- 5d16000 Deferred libxcb-glx.so.0 ELF 5d16000- 5d1c000 Deferred libxcb-dri2.so.0 ELF 5d1c000- 5d2f000 Deferred libxi.so.6 ELF 5d3f000- 5d45000 Deferred libtxc_dxtn.so ELF 5da0000- 5dc8000 Deferred libudev.so.1 ELF 5dcc000- 5e43000 Dwarf libgl.so.1 ELF 5f43000- 5f7a000 Deferred libglapi.so.0 ELF 5f7a000- 5f8c000 Deferred libdrm.so.2 ELF 5fec000- 602c000 Deferred libnettle.so.6 ELF 6030000- 6055000 Deferred libdrm_intel.so.1 ELF 6059000- 6063000 Deferred libdrm_nouveau.so.2 ELF 6067000- 6075000 Deferred libdrm_radeon.so.1 ELF 6079000- 6084000 Deferred libdrm_amdgpu.so.1 ELF 6088000- 60a5000 Deferred libelf.so.1 ELF 60b9000- 6161000 Deferred libllvmvectorize.so.3.7 ELF 6171000- 6174000 Deferred libllvmamdgpuutils.so.3.7 ELF 6375000- 6fe0000 Dwarf radeonsi_dri.so ELF 72c9000- 72cc000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7aeb000- 7c5a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7f5a000- 8021000 Deferred libllvmipo.so.3.7 ELF 8021000- 804b000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8057000- 805a000 Deferred libllvmx86info.so.3.7 ELF 842a000- 8484000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8484000- 8550000 Deferred libllvmamdgpudesc.so.3.7 ELF 8550000- 858c000 Deferred libllvmbitwriter.so.3.7 ELF 858c000- 86f4000 Deferred libllvmx86disassembler.so.3.7 ELF 86f4000- 8797000 Deferred libllvmx86asmparser.so.3.7 ELF 88cf000- 88d8000 Deferred libllvmmcdisassembler.so.3.7 ELF 8d15000- 8f9b000 Deferred libllvmx86codegen.so.3.7 ELF 909f000- 90ab000 Deferred libllvmx86utils.so.3.7 ELF 96f2000- 9729000 Deferred libllvmipa.so.3.7 ELF 98ee000- 9bf7000 Deferred libllvmselectiondag.so.3.7 ELF 9bf7000- 9cc5000 Deferred libllvmasmprinter.so.3.7 ELF 9cc5000- 9cd5000 Deferred libllvmmcjit.so.3.7 ELF 9cd5000- 9ce9000 Deferred libllvmtarget.so.3.7 ELF a293000- a781000 Deferred libllvmcodegen.so.3.7 ELF a981000- ac43000 Deferred libllvmscalaropts.so.3.7 ELF af3d000- af7e000 Deferred libllvmprofiledata.so.3.7 ELF af7e000- b06d000 Deferred libllvminstcombine.so.3.7 ELF b06d000- b115000 Deferred libllvminstrumentation.so.3.7 ELF b12d000- b138000 Deferred libpciaccess.so.0 ELF b34a000- b395000 Deferred libllvmx86asmprinter.so.3.7 ELF b395000- b3b1000 Deferred libgcc_s.so.1 ELF ba50000- bbad000 Deferred libllvmx86desc.so.3.7 ELF bbad000- bbd7000 Deferred libllvmexecutionengine.so.3.7 ELF bfd0000- c136000 Deferred libllvmtransformutils.so.3.7 ELF c3cc000- c6b9000 Deferred libllvmanalysis.so.3.7 ELF cab9000- cb37000 Deferred libllvmruntimedyld.so.3.7 ELF cb37000- cb74000 Deferred libllvmmcparser.so.3.7 ELF ccc7000- cd6e000 Deferred libllvmobject.so.3.7 ELF ce6e000- cebf000 Deferred libllvmbitreader.so.3.7 ELF cebf000- cf7e000 Deferred libllvmmc.so.3.7 ELF d07e000- d0dc000 Deferred libncurses.so.6 ELF d696000- d9fc000 Deferred libllvmcore.so.3.7 ELF dafc000- dc19000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000016f (D) Z:\home\austin\wine-valgrind\dlls\d3d10core\tests\d3d10core_test.exe 00000170 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:171: device.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d10core/tests' make: *** [Makefile:6336: 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 0x69c9b2c (thread 0174), 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 (0x069c9b2c). 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 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:069c9b2c ESP:04b6e460 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06de9000 ECX:046dca38 EDX:00200000 ESI:04665db0 EDI:046dca38 Stack dump: 0x04b6e460: 04b6e49c 046d6384 00000003 00000002 0x04b6e470: 00007a50 00007a64 00000082 00007a6c 0x04b6e480: 00800000 00000000 00007a44 00007a48 0x04b6e490: 00007a4c 00000000 04665590 00007a74 0x04b6e4a0: 00000000 00000000 00000000 00000000 0x04b6e4b0: 00000000 00000000 00000000 0f937e00 Backtrace: =>0 0x069c9b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x069b035b in radeonsi_dri.so (+0x63435a) (0x04664928) 2 0x069b06e2 in radeonsi_dri.so (+0x6346e1) (0x04b6e5f8) 3 0x06a30a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b6e5f8) 4 0x063ab79c in radeonsi_dri.so (+0x2f79b) (0x0465b248) 5 0x067e3000 in radeonsi_dri.so (+0x466fff) (0x0465b248) 6 0x067e2a3d in radeonsi_dri.so (+0x466a3c) (0x0465b248) 7 0x066a394b in radeonsi_dri.so (+0x32794a) (0x0465b248) 8 0x0669f976 in radeonsi_dri.so (+0x323975) (0x0465b1c0) 9 0x05d1a722 in libgl.so.1 (+0x43721) (0x045a8548) 10 0x05cefa42 in libgl.so.1 (+0x18a41) (0x045a6020) 11 0x05ceb60b in libgl.so.1 (+0x1460a) (0x04b6f0b4) 12 0x05ceb784 glXChooseVisual+0x63() in libgl.so.1 (0x04b6f0b4) 13 0x059525cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b6f188) 14 0x05954023 init_opengl+0xfbe(once=0x59b0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b6f398) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b6f3e8) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b6f418) 17 0x0595449e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b6f448) 18 0x0595c533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b6f468) 19 0x05947293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5e40, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b6f498) 20 0x04fe25c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b6f4c8) 21 0x04c47c4f wined3d_adapter_init+0xe0(adapter=0x48f2890, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b6f8f8) 22 0x04c48681 wined3d_init+0xa5(wined3d=0x48f2880, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b6f928) 23 0x04ccec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b6f988) 24 0x0482658a dxgi_factory_init+0x44(factory=0x48f2850, extended=0x1) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b6f9b8) 25 0x04826622 dxgi_factory_create+0x51(riid=0x4bbf2bc, factory=0x4b6fa9c, extended=0x1) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b6fa08) 26 0x04824b7f CreateDXGIFactory1+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:63] in dxgi (0x04b6fa48) 27 0x04b872fd D3D11CreateDevice+0x20f(adapter=(nil), driver_type=, swrast=(nil), flags=, feature_levels=(nil), levels=, sdk_version=, device_out=0x4b6fbdc, obtained_feature_level=(nil), immediate_context=(nil)) [/home/austin/wine-valgrind/dlls/d3d11/d3d11_main.c:196] in d3d11 (0x04b6fb88) 28 0x04a1a8f6 test_create_device+0x40() [/home/austin/wine-valgrind/dlls/d3d11/tests/d3d11.c:1297] in d3d11_test (0x04b6fcb8) 29 0x04a4bc71 func_d3d11+0x16() [/home/austin/wine-valgrind/dlls/d3d11/tests/d3d11.c:13379] in d3d11_test (0x04b6fcc8) 30 0x04a4cbaf run_test+0x96(name="d3d11") [/home/austin/wine-valgrind/dlls/d3d11/tests/../../../include/wine/test.h:589] in d3d11_test (0x04b6fd08) 31 0x04a4cfda main+0x244(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d11/tests/../../../include/wine/test.h:671] in d3d11_test (0x04b6fdd8) 32 0x04a4d06b __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d11_test (0x04b6fe18) 33 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b6fe38) 34 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b6fe88) 35 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b6fea8) 36 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b6ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b6ff98) 37 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b6ffb8) 38 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04b6ffe8) 39 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 40 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4b70000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9312b8) 41 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe931338) 42 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9321e8) 43 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe932228) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe932764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe932278) 45 0x7c000f80 main+0x145(argc=, argv=0xfe932764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9326b8) 46 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x069c9b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 483b000 Dwarf dxgi \-PE 4820000- 483b000 \ dxgi ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a68000 Dwarf d3d11_test \-PE 4a10000- 4a68000 \ d3d11_test ELF 4b70000- 4bd7000 Dwarf d3d11 \-PE 4b80000- 4bd7000 \ d3d11 ELF 4bd7000- 4d36000 Dwarf wined3d \-PE 4bf0000- 4d36000 \ wined3d ELF 4f36000- 507b000 Dwarf gdi32 \-PE 4f40000- 507b000 \ gdi32 ELF 507b000- 50fc000 Deferred advapi32 \-PE 5090000- 50fc000 \ advapi32 ELF 50fc000- 5271000 Deferred user32 \-PE 5110000- 5271000 \ user32 ELF 5471000- 548c000 Deferred version \-PE 5480000- 548c000 \ version ELF 54e4000- 559c000 Deferred libfreetype.so.6 ELF 57a4000- 57bd000 Deferred libz.so.1 ELF 57c5000- 57d7000 Deferred libbz2.so.1 ELF 57df000- 581d000 Deferred libpng16.so.16 ELF 5821000- 585e000 Deferred libfontconfig.so.1 ELF 5866000- 5890000 Deferred libexpat.so.1 ELF 589c000- 58a8000 Deferred libxcursor.so.1 ELF 58b0000- 58b7000 Deferred libxfixes.so.3 ELF 58c7000- 58ca000 Deferred libxshmfence.so.1 ELF 58e7000- 590c000 Deferred imm32 \-PE 58f0000- 590c000 \ imm32 ELF 5914000- 59b4000 Dwarf winex11 \-PE 5920000- 59b4000 \ winex11 ELF 59c8000- 59cc000 Deferred libxinerama.so.1 ELF 59d0000- 59d6000 Deferred libxxf86vm.so.1 ELF 59da000- 59e6000 Deferred libxrender.so.1 ELF 59ea000- 59f7000 Deferred libxrandr.so.2 ELF 59fb000- 59ff000 Deferred libxcomposite.so.1 ELF 5a0c000- 5a1f000 Deferred libxext.so.6 ELF 5a23000- 5b74000 Deferred libx11.so.6 ELF 5b7c000- 5ba8000 Deferred libxcb.so.1 ELF 5bac000- 5bb0000 Deferred libxau.so.6 ELF 5bb0000- 5bb7000 Deferred libxdmcp.so.6 ELF 5bbb000- 5bd7000 Deferred libbsd.so.0 ELF 5be5000- 5be9000 Deferred libxcb-dri3.so.0 ELF 5be9000- 5bed000 Deferred libxcb-present.so.0 ELF 5bed000- 5bf0000 Deferred libx11-xcb.so.1 ELF 5bf6000- 5bfe000 Deferred libxcb-sync.so.1 ELF 5c02000- 5c06000 Deferred libxdamage.so.1 ELF 5c0a000- 5c27000 Deferred libxcb-glx.so.0 ELF 5c27000- 5c3a000 Deferred libxi.so.6 ELF 5c4a000- 5c50000 Deferred libtxc_dxtn.so ELF 5cd7000- 5d4e000 Dwarf libgl.so.1 ELF 5d4e000- 5d85000 Deferred libglapi.so.0 ELF 5d85000- 5d8b000 Deferred libxcb-dri2.so.0 ELF 5d8b000- 5d9d000 Deferred libdrm.so.2 ELF 5ded000- 5e15000 Deferred libudev.so.1 ELF 5e15000- 5e55000 Deferred libnettle.so.6 ELF 5e55000- 5e7a000 Deferred libdrm_intel.so.1 ELF 5e7a000- 5e84000 Deferred libdrm_nouveau.so.2 ELF 5e84000- 5e92000 Deferred libdrm_radeon.so.1 ELF 5e96000- 5ea1000 Deferred libdrm_amdgpu.so.1 ELF 5ea5000- 5ec2000 Deferred libelf.so.1 ELF 5ede000- 5f38000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 5f40000- 5f43000 Deferred libllvmamdgpuutils.so.3.7 ELF 5f4f000- 5f52000 Deferred libllvmamdgpuinfo.so.3.7 ELF 617c000- 6224000 Deferred libllvmvectorize.so.3.7 ELF 6224000- 624e000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 637c000- 6fe7000 Dwarf radeonsi_dri.so ELF 71dc000- 71e5000 Deferred libllvmmcdisassembler.so.3.7 ELF 78f2000- 7a61000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7d61000- 7e28000 Deferred libllvmipo.so.3.7 ELF 7e28000- 7e5f000 Deferred libllvmipa.so.3.7 ELF 8173000- 823f000 Deferred libllvmamdgpudesc.so.3.7 ELF 8247000- 824a000 Deferred libllvmx86info.so.3.7 ELF 8256000- 8262000 Deferred libllvmx86utils.so.3.7 ELF 8331000- 836d000 Deferred libllvmbitwriter.so.3.7 ELF 836d000- 84d5000 Deferred libllvmx86disassembler.so.3.7 ELF 84d5000- 8578000 Deferred libllvmx86asmparser.so.3.7 ELF 8678000- 86b9000 Deferred libllvmprofiledata.so.3.7 ELF 86b9000- 86c9000 Deferred libllvmmcjit.so.3.7 ELF 86c9000- 86f3000 Deferred libllvmexecutionengine.so.3.7 ELF 8b1c000- 8da2000 Deferred libllvmx86codegen.so.3.7 ELF 8ea2000- 8eb6000 Deferred libllvmtarget.so.3.7 ELF 98f5000- 9bfe000 Deferred libllvmselectiondag.so.3.7 ELF 9bfe000- 9ccc000 Deferred libllvmasmprinter.so.3.7 ELF 9ccc000- 9ce8000 Deferred libgcc_s.so.1 ELF 9cec000- 9cf7000 Deferred libpciaccess.so.0 ELF a29a000- a788000 Deferred libllvmcodegen.so.3.7 ELF a988000- ac4a000 Deferred libllvmscalaropts.so.3.7 ELF b044000- b133000 Deferred libllvminstcombine.so.3.7 ELF b351000- b39c000 Deferred libllvmx86asmprinter.so.3.7 ELF b957000- b9ff000 Deferred libllvminstrumentation.so.3.7 ELF bfd7000- c13d000 Deferred libllvmtransformutils.so.3.7 ELF c13d000- c29a000 Deferred libllvmx86desc.so.3.7 ELF c29a000- c318000 Deferred libllvmruntimedyld.so.3.7 ELF c318000- c355000 Deferred libllvmmcparser.so.3.7 ELF c50c000- c7f9000 Deferred libllvmanalysis.so.3.7 ELF caf9000- cba0000 Deferred libllvmobject.so.3.7 ELF cba0000- cbf1000 Deferred libllvmbitreader.so.3.7 ELF ce07000- cec6000 Deferred libllvmmc.so.3.7 ELF d0c6000- d124000 Deferred libncurses.so.6 ELF d5d6000- d93c000 Deferred libllvmcore.so.3.7 ELF da3c000- db59000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000173 (D) Z:\home\austin\wine-valgrind\dlls\d3d11\tests\d3d11_test.exe 00000174 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30531== 28 bytes in 1 blocks are possibly lost in loss record 398 of 1,267 ==30531== at 0x7BC50754: notify_alloc (heap.c:254) ==30531== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30531== by 0x48265FD: dxgi_factory_create (factory.c:327) ==30531== by 0x4824B7E: CreateDXGIFactory1 (dxgi_main.c:63) ==30531== by 0x4B872FC: D3D11CreateDevice (d3d11_main.c:196) ==30531== by 0x4A1A8F5: test_create_device (d3d11.c:1297) ==30531== by 0x4A4BC70: func_d3d11 (d3d11.c:13379) ==30531== by 0x4A4CBAE: run_test (test.h:589) ==30531== by 0x4A4CFD9: main (test.h:671) ==30531== { 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 } make[1]: *** [Makefile:171: d3d11.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d11/tests' make: *** [Makefile:6383: 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 0x6778b2c (thread 0178), 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 (0x06778b2c). 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:06778b2c ESP:04b9e5d0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06b98000 ECX:046ccdf8 EDX:00200000 ESI:04656170 EDI:046ccdf8 Stack dump: 0x04b9e5d0: 04b9e60c 046c6744 00000003 00000002 0x04b9e5e0: 00007a50 00007a64 00000082 00007a6c 0x04b9e5f0: 00800000 00000000 00007a44 00007a48 0x04b9e600: 00007a4c 00000000 04655950 00007a74 0x04b9e610: 00000000 00000000 00000000 00000000 0x04b9e620: 00000000 00000000 00000000 e7b1fc00 Backtrace: =>0 0x06778b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0675f35b in radeonsi_dri.so (+0x63435a) (0x04654ce8) 2 0x0675f6e2 in radeonsi_dri.so (+0x6346e1) (0x04b9e768) 3 0x067dfa6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b9e768) 4 0x0615a79c in radeonsi_dri.so (+0x2f79b) (0x0464b608) 5 0x06592000 in radeonsi_dri.so (+0x466fff) (0x0464b608) 6 0x06591a3d in radeonsi_dri.so (+0x466a3c) (0x0464b608) 7 0x0645294b in radeonsi_dri.so (+0x32794a) (0x0464b608) 8 0x0644e976 in radeonsi_dri.so (+0x323975) (0x0464b580) 9 0x05bc9722 in libgl.so.1 (+0x43721) (0x04598908) 10 0x05b9ea42 in libgl.so.1 (+0x18a41) (0x045963e0) 11 0x05b9a60b in libgl.so.1 (+0x1460a) (0x04b9f224) 12 0x05b9a784 glXChooseVisual+0x63() in libgl.so.1 (0x04b9f224) 13 0x058095cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b9f2f8) 14 0x0580b023 init_opengl+0xfbe(once=0x5867e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b9f508) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b9f558) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b9f588) 17 0x0580b49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b9f5b8) 18 0x05813533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b9f5d8) 19 0x057fe293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6218, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b9f608) 20 0x04fe25c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b9f638) 21 0x04c47c4f wined3d_adapter_init+0xe0(adapter=0x48f2c68, ordinal=0, wined3d_creation_flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b9fa68) 22 0x04c48681 wined3d_init+0xa5(wined3d=0x48f2c58, flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b9fa98) 23 0x04ccec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b9faf8) 24 0x04bbfa07 d3d8_init+0x3d(d3d8=0x48f2c38) [/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 0x04a4283d func_device+0x1ed() [/home/austin/wine-valgrind/dlls/d3d8/tests/device.c:8184] in d3d8_test (0x04b9fcc8) 27 0x04a791d9 run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:589] in d3d8_test (0x04b9fd08) 28 0x04a79605 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:671] in d3d8_test (0x04b9fdd8) 29 0x04a79692 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d8_test (0x04b9fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b9fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b9fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b9fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b9ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b9ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b9ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4ba0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb3d2c8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb3d348) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb3e1f8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb3e238) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb3e774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb3e288) 42 0x7c000f80 main+0x145(argc=, argv=0xfeb3e774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb3e6c8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06778b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a94000 Dwarf d3d8_test \-PE 4a10000- 4a94000 \ d3d8_test ELF 4ba0000- 4bd7000 Dwarf d3d8 \-PE 4bb0000- 4bd7000 \ d3d8 ELF 4bd7000- 4d36000 Dwarf wined3d \-PE 4bf0000- 4d36000 \ wined3d ELF 4f36000- 507b000 Dwarf gdi32 \-PE 4f40000- 507b000 \ gdi32 ELF 507b000- 50fc000 Deferred advapi32 \-PE 5090000- 50fc000 \ advapi32 ELF 50fc000- 5271000 Deferred user32 \-PE 5110000- 5271000 \ user32 ELF 5471000- 548c000 Deferred version \-PE 5480000- 548c000 \ version ELF 54d5000- 54d8000 Deferred libxshmfence.so.1 ELF 54d8000- 5590000 Deferred libfreetype.so.6 ELF 5690000- 56a9000 Deferred libz.so.1 ELF 56a9000- 56bb000 Deferred libbz2.so.1 ELF 56bb000- 56f9000 Deferred libpng16.so.16 ELF 56f9000- 5736000 Deferred libfontconfig.so.1 ELF 5736000- 5760000 Deferred libexpat.so.1 ELF 5768000- 5774000 Deferred libxcursor.so.1 ELF 577c000- 5783000 Deferred libxfixes.so.3 ELF 5793000- 5796000 Deferred libx11-xcb.so.1 ELF 579e000- 57c3000 Deferred imm32 \-PE 57a0000- 57c3000 \ imm32 ELF 57cb000- 586b000 Dwarf winex11 \-PE 57e0000- 586b000 \ winex11 ELF 587b000- 587f000 Deferred libxinerama.so.1 ELF 5883000- 5889000 Deferred libxxf86vm.so.1 ELF 588d000- 5899000 Deferred libxrender.so.1 ELF 589d000- 58aa000 Deferred libxrandr.so.2 ELF 58ae000- 58b2000 Deferred libxcomposite.so.1 ELF 58bf000- 58d2000 Deferred libxext.so.6 ELF 58d6000- 5a27000 Deferred libx11.so.6 ELF 5a2b000- 5a57000 Deferred libxcb.so.1 ELF 5a5b000- 5a5f000 Deferred libxau.so.6 ELF 5a5f000- 5a66000 Deferred libxdmcp.so.6 ELF 5a6a000- 5a86000 Deferred libbsd.so.0 ELF 5a95000- 5a99000 Deferred libxcb-dri3.so.0 ELF 5a99000- 5a9d000 Deferred libxcb-present.so.0 ELF 5a9d000- 5aa0000 Deferred libllvmamdgpuutils.so.3.7 ELF 5aa6000- 5aae000 Deferred libxcb-sync.so.1 ELF 5ab6000- 5aba000 Deferred libxdamage.so.1 ELF 5ac2000- 5ac8000 Deferred libxcb-dri2.so.0 ELF 5ad6000- 5ae9000 Deferred libxi.so.6 ELF 5afd000- 5b03000 Deferred libtxc_dxtn.so ELF 5b56000- 5b7e000 Deferred libudev.so.1 ELF 5b86000- 5bfd000 Dwarf libgl.so.1 ELF 5cfd000- 5d34000 Deferred libglapi.so.0 ELF 5d34000- 5d51000 Deferred libxcb-glx.so.0 ELF 5d51000- 5d63000 Deferred libdrm.so.2 ELF 5ecf000- 5f0f000 Deferred libnettle.so.6 ELF 5f17000- 5f21000 Deferred libdrm_nouveau.so.2 ELF 612b000- 6d96000 Dwarf radeonsi_dri.so ELF 6f7b000- 6fa0000 Deferred libdrm_intel.so.1 ELF 6fa0000- 6fae000 Deferred libdrm_radeon.so.1 ELF 6fb2000- 6fbd000 Deferred libdrm_amdgpu.so.1 ELF 6fc1000- 6fde000 Deferred libelf.so.1 ELF 6fee000- 7096000 Deferred libllvmvectorize.so.3.7 ELF 78a1000- 7a10000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7d10000- 7dd7000 Deferred libllvmipo.so.3.7 ELF 7de7000- 7dea000 Deferred libllvmamdgpuinfo.so.3.7 ELF 81e0000- 823a000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 823a000- 8306000 Deferred libllvmamdgpudesc.so.3.7 ELF 8306000- 8330000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8330000- 836c000 Deferred libllvmbitwriter.so.3.7 ELF 836c000- 84d4000 Deferred libllvmx86disassembler.so.3.7 ELF 84d4000- 8577000 Deferred libllvmx86asmparser.so.3.7 ELF 869f000- 86a2000 Deferred libllvmx86info.so.3.7 ELF 8acb000- 8d51000 Deferred libllvmx86codegen.so.3.7 ELF 8e61000- 8e6a000 Deferred libllvmmcdisassembler.so.3.7 ELF 95a8000- 95df000 Deferred libllvmipa.so.3.7 ELF 97a4000- 9aad000 Deferred libllvmselectiondag.so.3.7 ELF 9aad000- 9b7b000 Deferred libllvmasmprinter.so.3.7 ELF 9b87000- 9b93000 Deferred libllvmx86utils.so.3.7 ELF 9b9b000- 9bab000 Deferred libllvmmcjit.so.3.7 ELF a149000- a637000 Deferred libllvmcodegen.so.3.7 ELF a737000- a9f9000 Deferred libllvmscalaropts.so.3.7 ELF aaf9000- ab0d000 Deferred libllvmtarget.so.3.7 ELF adf3000- ae34000 Deferred libllvmprofiledata.so.3.7 ELF ae34000- aedc000 Deferred libllvminstrumentation.so.3.7 ELF b000000- b0ef000 Deferred libllvminstcombine.so.3.7 ELF b1ef000- b23a000 Deferred libllvmx86asmprinter.so.3.7 ELF b23a000- b264000 Deferred libllvmexecutionengine.so.3.7 ELF b264000- b2a1000 Deferred libllvmmcparser.so.3.7 ELF b93f000- b9bd000 Deferred libllvmruntimedyld.so.3.7 ELF bd86000- beec000 Deferred libllvmtransformutils.so.3.7 ELF bfec000- c149000 Deferred libllvmx86desc.so.3.7 ELF c149000- c1f0000 Deferred libllvmobject.so.3.7 ELF c218000- c223000 Deferred libpciaccess.so.0 ELF c3bb000- c6a8000 Deferred libllvmanalysis.so.3.7 ELF ccb6000- cd07000 Deferred libllvmbitreader.so.3.7 ELF cd07000- cdc6000 Deferred libllvmmc.so.3.7 ELF cfc6000- cfe2000 Deferred libgcc_s.so.1 ELF cfea000- d048000 Deferred libncurses.so.6 ELF d385000- d6eb000 Deferred libllvmcore.so.3.7 ELF d7eb000- d908000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000177 (D) Z:\home\austin\wine-valgrind\dlls\d3d8\tests\d3d8_test.exe 00000178 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30555== 12 bytes in 1 blocks are definitely lost in loss record 76 of 1,262 ==30555== at 0x7BC50754: notify_alloc (heap.c:254) ==30555== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30555== by 0x4BB4772: Direct3DCreate8 (d3d8_main.c:44) ==30555== by 0x4A4283C: func_device (device.c:8184) ==30555== by 0x4A791D8: run_test (test.h:589) ==30555== by 0x4A79604: main (test.h:671) ==30555== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate8 fun:func_device fun:run_test fun:main } ==30555== 13,272 bytes in 1 blocks are definitely lost in loss record 1,250 of 1,262 ==30555== at 0x7BC50754: notify_alloc (heap.c:254) ==30555== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30555== by 0x4CCEC01: wined3d_create (wined3d_main.c:100) ==30555== by 0x4BBFA06: d3d8_init (directx.c:441) ==30555== by 0x4BB4793: Direct3DCreate8 (d3d8_main.c:47) ==30555== by 0x4A4283C: func_device (device.c:8184) ==30555== by 0x4A791D8: run_test (test.h:589) ==30555== by 0x4A79604: main (test.h:671) ==30555== { 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 } make[1]: *** [Makefile:173: 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 0x6769b2c (thread 017c), 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 (0x06769b2c). 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:06769b2c ESP:04b9e440 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06b89000 ECX:04750c88 EDX:00200000 ESI:046da000 EDI:04750c88 Stack dump: 0x04b9e440: 04b9e47c 0474a5d4 00000003 00000002 0x04b9e450: 00007a50 00007a64 00000082 00007a6c 0x04b9e460: 00800000 00000000 00007a44 00007a48 0x04b9e470: 00007a4c 00000000 046d97e0 00007a74 0x04b9e480: 00000000 00000000 00000000 00000000 0x04b9e490: 00000000 00000000 00000000 d1867800 Backtrace: =>0 0x06769b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0675035b in radeonsi_dri.so (+0x63435a) (0x046d8b78) 2 0x067506e2 in radeonsi_dri.so (+0x6346e1) (0x04b9e5d8) 3 0x067d0a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b9e5d8) 4 0x0614b79c in radeonsi_dri.so (+0x2f79b) (0x046cf498) 5 0x06583000 in radeonsi_dri.so (+0x466fff) (0x046cf498) 6 0x06582a3d in radeonsi_dri.so (+0x466a3c) (0x046cf498) 7 0x0644394b in radeonsi_dri.so (+0x32794a) (0x046cf498) 8 0x0643f976 in radeonsi_dri.so (+0x323975) (0x046cf410) 9 0x05c21722 in libgl.so.1 (+0x43721) (0x0461c798) 10 0x05bf6a42 in libgl.so.1 (+0x18a41) (0x0461a270) 11 0x05bf260b in libgl.so.1 (+0x1460a) (0x04b9f094) 12 0x05bf2784 glXChooseVisual+0x63() in libgl.so.1 (0x04b9f094) 13 0x057fe5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b9f168) 14 0x05800023 init_opengl+0xfbe(once=0x585ce38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b9f378) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b9f3c8) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b9f3f8) 17 0x0580049e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b9f428) 18 0x05808533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b9f448) 19 0x057f3293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48fe5b0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b9f478) 20 0x04fe25c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b9f4a8) 21 0x04c47c4f wined3d_adapter_init+0xe0(adapter=0x48fb000, ordinal=0, wined3d_creation_flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b9f8d8) 22 0x04c48681 wined3d_init+0xa5(wined3d=0x48faff0, flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b9f908) 23 0x04ccec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b9f968) 24 0x04bbfa07 d3d8_init+0x3d(d3d8=0x48fafd0) [/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 0x04a47967 test_state_management+0x6c() [/home/austin/wine-valgrind/dlls/d3d8/tests/stateblock.c:1801] in d3d8_test (0x04b9fcb8) 27 0x04a47d79 func_stateblock+0xa() [/home/austin/wine-valgrind/dlls/d3d8/tests/stateblock.c:1868] in d3d8_test (0x04b9fcc8) 28 0x04a791d9 run_test+0x96(name="stateblock") [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:589] in d3d8_test (0x04b9fd08) 29 0x04a79605 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:671] in d3d8_test (0x04b9fdd8) 30 0x04a79692 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d8_test (0x04b9fe18) 31 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b9fe38) 32 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b9fe88) 33 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b9fea8) 34 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b9ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b9ff98) 35 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b9ffb8) 36 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4ba0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfef5e2b8) 39 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfef5e338) 40 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfef5f1e8) 41 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfef5f228) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfef5f764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfef5f278) 43 0x7c000f80 main+0x145(argc=, argv=0xfef5f764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfef5f6b8) 44 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06769b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4820000- 483b000 Deferred version \-PE 4830000- 483b000 \ version ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a94000 Dwarf d3d8_test \-PE 4a10000- 4a94000 \ d3d8_test ELF 4ba0000- 4bd7000 Dwarf d3d8 \-PE 4bb0000- 4bd7000 \ d3d8 ELF 4bd7000- 4d36000 Dwarf wined3d \-PE 4bf0000- 4d36000 \ wined3d ELF 4f36000- 507b000 Dwarf gdi32 \-PE 4f40000- 507b000 \ gdi32 ELF 507b000- 50fc000 Deferred advapi32 \-PE 5090000- 50fc000 \ advapi32 ELF 50fc000- 5271000 Deferred user32 \-PE 5110000- 5271000 \ user32 ELF 54ba000- 54bd000 Deferred libxshmfence.so.1 ELF 54bd000- 5575000 Deferred libfreetype.so.6 ELF 5675000- 568e000 Deferred libz.so.1 ELF 568e000- 56a0000 Deferred libbz2.so.1 ELF 56a0000- 56de000 Deferred libpng16.so.16 ELF 56de000- 571b000 Deferred libfontconfig.so.1 ELF 571b000- 5745000 Deferred libexpat.so.1 ELF 574d000- 5759000 Deferred libxcursor.so.1 ELF 575d000- 5764000 Deferred libxfixes.so.3 ELF 5778000- 577b000 Deferred libx11-xcb.so.1 ELF 5793000- 57b8000 Deferred imm32 \-PE 57a0000- 57b8000 \ imm32 ELF 57c0000- 5860000 Dwarf winex11 \-PE 57d0000- 5860000 \ winex11 ELF 586c000- 5870000 Deferred libxinerama.so.1 ELF 5874000- 587a000 Deferred libxxf86vm.so.1 ELF 587e000- 588a000 Deferred libxrender.so.1 ELF 588e000- 589b000 Deferred libxrandr.so.2 ELF 589f000- 58a3000 Deferred libxcomposite.so.1 ELF 58b0000- 58c3000 Deferred libxext.so.6 ELF 58c7000- 5a18000 Deferred libx11.so.6 ELF 5a1c000- 5a48000 Deferred libxcb.so.1 ELF 5a4c000- 5a50000 Deferred libxau.so.6 ELF 5a50000- 5a57000 Deferred libxdmcp.so.6 ELF 5a5b000- 5a77000 Deferred libbsd.so.0 ELF 5a8d000- 5a90000 Deferred libllvmamdgpuutils.so.3.7 ELF 5ac7000- 5ada000 Deferred libxi.so.6 ELF 5afa000- 5b22000 Deferred libudev.so.1 ELF 5bde000- 5c55000 Dwarf libgl.so.1 ELF 5d5d000- 5d61000 Deferred libxcb-dri3.so.0 ELF 5d69000- 5d6d000 Deferred libxcb-present.so.0 ELF 5d6d000- 5d75000 Deferred libxcb-sync.so.1 ELF 5d79000- 5db0000 Deferred libglapi.so.0 ELF 5db0000- 5db4000 Deferred libxdamage.so.1 ELF 5db8000- 5dd5000 Deferred libxcb-glx.so.0 ELF 5dd9000- 5ddf000 Deferred libxcb-dri2.so.0 ELF 5ddf000- 5df1000 Deferred libdrm.so.2 ELF 5f09000- 5f13000 Deferred libdrm_nouveau.so.2 ELF 611c000- 6d87000 Dwarf radeonsi_dri.so ELF 6f80000- 6f86000 Deferred libtxc_dxtn.so ELF 6fb8000- 6ff8000 Deferred libnettle.so.6 ELF 6ff8000- 701d000 Deferred libdrm_intel.so.1 ELF 701d000- 702b000 Deferred libdrm_radeon.so.1 ELF 702f000- 703a000 Deferred libdrm_amdgpu.so.1 ELF 703e000- 705b000 Deferred libelf.so.1 ELF 707f000- 7082000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7892000- 7a01000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7d01000- 7dc8000 Deferred libllvmipo.so.3.7 ELF 7dcc000- 7df6000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 7dfe000- 7e01000 Deferred libllvmx86info.so.3.7 ELF 81d1000- 8279000 Deferred libllvmvectorize.so.3.7 ELF 8279000- 82d3000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 82d3000- 839f000 Deferred libllvmamdgpudesc.so.3.7 ELF 839f000- 83db000 Deferred libllvmbitwriter.so.3.7 ELF 83db000- 8543000 Deferred libllvmx86disassembler.so.3.7 ELF 8547000- 85ea000 Deferred libllvmx86asmparser.so.3.7 ELF 8616000- 8657000 Deferred libllvmprofiledata.so.3.7 ELF 8683000- 868c000 Deferred libllvmmcdisassembler.so.3.7 ELF 8abc000- 8d42000 Deferred libllvmx86codegen.so.3.7 ELF 8e4e000- 8e5a000 Deferred libllvmx86utils.so.3.7 ELF 9699000- 96d0000 Deferred libllvmipa.so.3.7 ELF 9895000- 9b9e000 Deferred libllvmselectiondag.so.3.7 ELF 9b9e000- 9c6c000 Deferred libllvmasmprinter.so.3.7 ELF 9c6c000- 9c7c000 Deferred libllvmmcjit.so.3.7 ELF 9c84000- 9c98000 Deferred libllvmtarget.so.3.7 ELF a23a000- a728000 Deferred libllvmcodegen.so.3.7 ELF a828000- aaea000 Deferred libllvmscalaropts.so.3.7 ELF aee4000- afd3000 Deferred libllvminstcombine.so.3.7 ELF b2dd000- b385000 Deferred libllvminstrumentation.so.3.7 ELF ba1d000- ba68000 Deferred libllvmx86asmprinter.so.3.7 ELF ba68000- ba92000 Deferred libllvmexecutionengine.so.3.7 ELF ba92000- baae000 Deferred libgcc_s.so.1 ELF bd9e000- bf04000 Deferred libllvmtransformutils.so.3.7 ELF c004000- c161000 Deferred libllvmx86desc.so.3.7 ELF c161000- c1df000 Deferred libllvmruntimedyld.so.3.7 ELF c1df000- c21c000 Deferred libllvmmcparser.so.3.7 ELF c21c000- c227000 Deferred libpciaccess.so.0 ELF c3d3000- c6c0000 Deferred libllvmanalysis.so.3.7 ELF c9c0000- ca67000 Deferred libllvmobject.so.3.7 ELF ca67000- cab8000 Deferred libllvmbitreader.so.3.7 ELF cdce000- ce8d000 Deferred libllvmmc.so.3.7 ELF cf8d000- cfeb000 Deferred libncurses.so.6 ELF d49d000- d803000 Deferred libllvmcore.so.3.7 ELF d903000- da20000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000017b (D) Z:\home\austin\wine-valgrind\dlls\d3d8\tests\d3d8_test.exe 0000017c 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30572== 12 bytes in 1 blocks are definitely lost in loss record 122 of 1,446 ==30572== at 0x7BC50754: notify_alloc (heap.c:254) ==30572== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30572== by 0x4BB4772: Direct3DCreate8 (d3d8_main.c:44) ==30572== by 0x4A47966: test_state_management (stateblock.c:1801) ==30572== by 0x4A47D78: func_stateblock (stateblock.c:1868) ==30572== by 0x4A791D8: run_test (test.h:589) ==30572== by 0x4A79604: main (test.h:671) ==30572== { 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 } ==30572== 13,272 bytes in 1 blocks are definitely lost in loss record 1,431 of 1,446 ==30572== at 0x7BC50754: notify_alloc (heap.c:254) ==30572== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30572== by 0x4CCEC01: wined3d_create (wined3d_main.c:100) ==30572== by 0x4BBFA06: d3d8_init (directx.c:441) ==30572== by 0x4BB4793: Direct3DCreate8 (d3d8_main.c:47) ==30572== by 0x4A47966: test_state_management (stateblock.c:1801) ==30572== by 0x4A47D78: func_stateblock (stateblock.c:1868) ==30572== by 0x4A791D8: run_test (test.h:589) ==30572== by 0x4A79604: main (test.h:671) ==30572== { 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 } make[1]: *** [Makefile:205: 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 0x6777b2c (thread 0180), 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 (0x06777b2c). 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:06777b2c ESP:04b9e2a0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06b97000 ECX:046cc4a0 EDX:00200000 ESI:04655818 EDI:046cc4a0 Stack dump: 0x04b9e2a0: 04b9e2dc 046c5dec 00000003 00000002 0x04b9e2b0: 00007a50 00007a64 00000082 00007a6c 0x04b9e2c0: 00800000 00000000 00007a44 00007a48 0x04b9e2d0: 00007a4c 00000000 04654ff8 00007a74 0x04b9e2e0: 00000000 00000000 00000000 00000000 0x04b9e2f0: 00000000 00000000 00000000 b9f42d00 Backtrace: =>0 0x06777b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0675e35b in radeonsi_dri.so (+0x63435a) (0x04654390) 2 0x0675e6e2 in radeonsi_dri.so (+0x6346e1) (0x04b9e438) 3 0x067dea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b9e438) 4 0x0615979c in radeonsi_dri.so (+0x2f79b) (0x0464acb0) 5 0x06591000 in radeonsi_dri.so (+0x466fff) (0x0464acb0) 6 0x06590a3d in radeonsi_dri.so (+0x466a3c) (0x0464acb0) 7 0x0645194b in radeonsi_dri.so (+0x32794a) (0x0464acb0) 8 0x0644d976 in radeonsi_dri.so (+0x323975) (0x0464ac28) 9 0x05bc8722 in libgl.so.1 (+0x43721) (0x04597fb0) 10 0x05b9da42 in libgl.so.1 (+0x18a41) (0x04595a88) 11 0x05b9960b in libgl.so.1 (+0x1460a) (0x04b9eef4) 12 0x05b99784 glXChooseVisual+0x63() in libgl.so.1 (0x04b9eef4) 13 0x058045cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b9efc8) 14 0x05806023 init_opengl+0xfbe(once=0x5862e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b9f1d8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b9f228) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b9f258) 17 0x0580649e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b9f288) 18 0x0580e533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b9f2a8) 19 0x057f9293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5410, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b9f2d8) 20 0x04fe25c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b9f308) 21 0x04c47c4f wined3d_adapter_init+0xe0(adapter=0x48f1e60, ordinal=0, wined3d_creation_flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b9f738) 22 0x04c48681 wined3d_init+0xa5(wined3d=0x48f1e50, flags=0xcc5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b9f768) 23 0x04ccec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b9f7c8) 24 0x04bbfa07 d3d8_init+0x3d(d3d8=0x48f1e30) [/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 0x04a78141 func_visual+0x2d() [/home/austin/wine-valgrind/dlls/d3d8/tests/visual.c:9811] in d3d8_test (0x04b9fcc8) 27 0x04a791d9 run_test+0x96(name="visual") [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:589] in d3d8_test (0x04b9fd08) 28 0x04a79605 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d8/tests/../../../include/wine/test.h:671] in d3d8_test (0x04b9fdd8) 29 0x04a79692 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d8_test (0x04b9fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b9fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b9fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b9fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b9ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b9ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b9ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4ba0000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb2b2c8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb2b348) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb2c1f8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb2c238) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb2c774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb2c288) 42 0x7c000f80 main+0x145(argc=, argv=0xfeb2c774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb2c6c8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06777b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4848000- 485a000 Deferred libbz2.so.1 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a94000 Dwarf d3d8_test \-PE 4a10000- 4a94000 \ d3d8_test ELF 4ba0000- 4bd7000 Dwarf d3d8 \-PE 4bb0000- 4bd7000 \ d3d8 ELF 4bd7000- 4d36000 Dwarf wined3d \-PE 4bf0000- 4d36000 \ wined3d ELF 4f36000- 507b000 Dwarf gdi32 \-PE 4f40000- 507b000 \ gdi32 ELF 507b000- 50fc000 Deferred advapi32 \-PE 5090000- 50fc000 \ advapi32 ELF 50fc000- 5271000 Deferred user32 \-PE 5110000- 5271000 \ user32 ELF 5471000- 548c000 Deferred version \-PE 5480000- 548c000 \ version ELF 54d8000- 5590000 Deferred libfreetype.so.6 ELF 5690000- 56a9000 Deferred libz.so.1 ELF 56a9000- 56e7000 Deferred libpng16.so.16 ELF 56e7000- 5724000 Deferred libfontconfig.so.1 ELF 5724000- 574e000 Deferred libexpat.so.1 ELF 5756000- 5762000 Deferred libxcursor.so.1 ELF 576a000- 5771000 Deferred libxfixes.so.3 ELF 5781000- 5784000 Deferred libxshmfence.so.1 ELF 579d000- 57c2000 Deferred imm32 \-PE 57a0000- 57c2000 \ imm32 ELF 57c6000- 5866000 Dwarf winex11 \-PE 57d0000- 5866000 \ winex11 ELF 5876000- 587a000 Deferred libxinerama.so.1 ELF 587e000- 5884000 Deferred libxxf86vm.so.1 ELF 5888000- 5894000 Deferred libxrender.so.1 ELF 5898000- 58a5000 Deferred libxrandr.so.2 ELF 58a9000- 58ad000 Deferred libxcomposite.so.1 ELF 58ba000- 58cd000 Deferred libxext.so.6 ELF 58d1000- 5a22000 Deferred libx11.so.6 ELF 5a2a000- 5a56000 Deferred libxcb.so.1 ELF 5a5a000- 5a5e000 Deferred libxau.so.6 ELF 5a5e000- 5a65000 Deferred libxdmcp.so.6 ELF 5a69000- 5a85000 Deferred libbsd.so.0 ELF 5a8d000- 5a90000 Deferred libx11-xcb.so.1 ELF 5a95000- 5a99000 Deferred libxcb-dri3.so.0 ELF 5a99000- 5a9d000 Deferred libxcb-present.so.0 ELF 5a9d000- 5aa0000 Deferred libllvmamdgpuutils.so.3.7 ELF 5aa6000- 5aae000 Deferred libxcb-sync.so.1 ELF 5ab6000- 5aba000 Deferred libxdamage.so.1 ELF 5abe000- 5ac4000 Deferred libxcb-dri2.so.0 ELF 5ad5000- 5ae8000 Deferred libxi.so.6 ELF 5afc000- 5b02000 Deferred libtxc_dxtn.so ELF 5b51000- 5b79000 Deferred libudev.so.1 ELF 5b85000- 5bfc000 Dwarf libgl.so.1 ELF 5cfc000- 5d33000 Deferred libglapi.so.0 ELF 5d33000- 5d50000 Deferred libxcb-glx.so.0 ELF 5d50000- 5d62000 Deferred libdrm.so.2 ELF 5eca000- 5f0a000 Deferred libnettle.so.6 ELF 5f16000- 5f20000 Deferred libdrm_nouveau.so.2 ELF 612a000- 6d95000 Dwarf radeonsi_dri.so ELF 6f7a000- 6f9f000 Deferred libdrm_intel.so.1 ELF 6f9f000- 6fad000 Deferred libdrm_radeon.so.1 ELF 6fad000- 6fb8000 Deferred libdrm_amdgpu.so.1 ELF 6fbc000- 6fd9000 Deferred libelf.so.1 ELF 6fe9000- 7091000 Deferred libllvmvectorize.so.3.7 ELF 78a0000- 7a0f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7d0f000- 7dd6000 Deferred libllvmipo.so.3.7 ELF 7de6000- 7de9000 Deferred libllvmamdgpuinfo.so.3.7 ELF 81df000- 8239000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8239000- 8305000 Deferred libllvmamdgpudesc.so.3.7 ELF 8305000- 832f000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 832f000- 836b000 Deferred libllvmbitwriter.so.3.7 ELF 836b000- 84d3000 Deferred libllvmx86disassembler.so.3.7 ELF 84d3000- 8576000 Deferred libllvmx86asmparser.so.3.7 ELF 869e000- 86a1000 Deferred libllvmx86info.so.3.7 ELF 8aca000- 8d50000 Deferred libllvmx86codegen.so.3.7 ELF 8e64000- 8e6d000 Deferred libllvmmcdisassembler.so.3.7 ELF 95a7000- 95de000 Deferred libllvmipa.so.3.7 ELF 97a3000- 9aac000 Deferred libllvmselectiondag.so.3.7 ELF 9aac000- 9b7a000 Deferred libllvmasmprinter.so.3.7 ELF 9b8a000- 9b96000 Deferred libllvmx86utils.so.3.7 ELF 9ec7000- 9ed7000 Deferred libllvmmcjit.so.3.7 ELF a148000- a636000 Deferred libllvmcodegen.so.3.7 ELF a736000- a9f8000 Deferred libllvmscalaropts.so.3.7 ELF aaf8000- ab0c000 Deferred libllvmtarget.so.3.7 ELF adf2000- ae33000 Deferred libllvmprofiledata.so.3.7 ELF ae33000- aedb000 Deferred libllvminstrumentation.so.3.7 ELF afff000- b0ee000 Deferred libllvminstcombine.so.3.7 ELF b1ee000- b239000 Deferred libllvmx86asmprinter.so.3.7 ELF b239000- b263000 Deferred libllvmexecutionengine.so.3.7 ELF b93e000- b9bc000 Deferred libllvmruntimedyld.so.3.7 ELF bd85000- beeb000 Deferred libllvmtransformutils.so.3.7 ELF bfeb000- c148000 Deferred libllvmx86desc.so.3.7 ELF c148000- c1ef000 Deferred libllvmobject.so.3.7 ELF c1ef000- c20b000 Deferred libgcc_s.so.1 ELF c20b000- c216000 Deferred libpciaccess.so.0 ELF c3ba000- c6a7000 Deferred libllvmanalysis.so.3.7 ELF ccb5000- ccf2000 Deferred libllvmmcparser.so.3.7 ELF ccf2000- cd43000 Deferred libllvmbitreader.so.3.7 ELF cd43000- ce02000 Deferred libllvmmc.so.3.7 ELF d384000- d6ea000 Deferred libllvmcore.so.3.7 ELF d7ea000- d907000 Deferred libllvmsupport.so.3.7 ELF da07000- da65000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000017f (D) Z:\home\austin\wine-valgrind\dlls\d3d8\tests\d3d8_test.exe 00000180 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30615== 12 bytes in 1 blocks are definitely lost in loss record 76 of 1,260 ==30615== at 0x7BC50754: notify_alloc (heap.c:254) ==30615== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30615== by 0x4BB4772: Direct3DCreate8 (d3d8_main.c:44) ==30615== by 0x4A78140: func_visual (visual.c:9811) ==30615== by 0x4A791D8: run_test (test.h:589) ==30615== by 0x4A79604: main (test.h:671) ==30615== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate8 fun:func_visual fun:run_test fun:main } ==30615== 13,272 bytes in 1 blocks are definitely lost in loss record 1,249 of 1,260 ==30615== at 0x7BC50754: notify_alloc (heap.c:254) ==30615== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30615== by 0x4CCEC01: wined3d_create (wined3d_main.c:100) ==30615== by 0x4BBFA06: d3d8_init (directx.c:441) ==30615== by 0x4BB4793: Direct3DCreate8 (d3d8_main.c:47) ==30615== by 0x4A78140: func_visual (visual.c:9811) ==30615== by 0x4A791D8: run_test (test.h:589) ==30615== by 0x4A79604: main (test.h:671) ==30615== { 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 } make[1]: *** [Makefile:237: visual.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d8/tests' make: *** [Makefile:6430: 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 0x6a36b2c (thread 0184), 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 (0x06a36b2c). 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:06a36b2c ESP:04c1e590 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e56000 ECX:046cce00 EDX:00200000 ESI:04656178 EDI:046cce00 Stack dump: 0x04c1e590: 04c1e5cc 046c674c 00000003 00000002 0x04c1e5a0: 00007a50 00007a64 00000082 00007a6c 0x04c1e5b0: 00800000 00000000 00007a44 00007a48 0x04c1e5c0: 00007a4c 00000000 04655958 00007a74 0x04c1e5d0: 00000000 00000000 00000000 00000000 0x04c1e5e0: 00000000 00000000 00000000 6ea92200 Backtrace: =>0 0x06a36b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06a1d35b in radeonsi_dri.so (+0x63435a) (0x04654cf0) 2 0x06a1d6e2 in radeonsi_dri.so (+0x6346e1) (0x04c1e728) 3 0x06a9da6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e728) 4 0x0641879c in radeonsi_dri.so (+0x2f79b) (0x0464b610) 5 0x06850000 in radeonsi_dri.so (+0x466fff) (0x0464b610) 6 0x0684fa3d in radeonsi_dri.so (+0x466a3c) (0x0464b610) 7 0x0671094b in radeonsi_dri.so (+0x32794a) (0x0464b610) 8 0x0670c976 in radeonsi_dri.so (+0x323975) (0x0464b588) 9 0x05d78722 in libgl.so.1 (+0x43721) (0x04598910) 10 0x05d4da42 in libgl.so.1 (+0x18a41) (0x045963e8) 11 0x05d4960b in libgl.so.1 (+0x1460a) (0x04c1f1e4) 12 0x05d49784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1f1e4) 13 0x059365cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1f2b8) 14 0x05938023 init_opengl+0xfbe(once=0x5994e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f4c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f518) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f548) 17 0x0593849e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f578) 18 0x05940533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f598) 19 0x0592b293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5fc8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f5c8) 20 0x0516e5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f5f8) 21 0x04cd3c4f wined3d_adapter_init+0xe0(adapter=0x48f2a18, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c1fa28) 22 0x04cd4681 wined3d_init+0xa5(wined3d=0x48f2a08, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c1fa58) 23 0x04d5ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c1fab8) 24 0x04c436bb d3d9_init+0x4d(d3d9=0x48f29e8, 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 0x04a176db test_qi_base_to_ex+0x26() [/home/austin/wine-valgrind/dlls/d3d9/tests/d3d9ex.c:244] in d3d9_test (0x04c1fbd8) 27 0x04a2ac4a func_d3d9ex+0x1bf() [/home/austin/wine-valgrind/dlls/d3d9/tests/d3d9ex.c:3733] in d3d9_test (0x04c1fcc8) 28 0x04ae15fa run_test+0x96(name="d3d9ex") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 29 0x04ae1a26 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 30 0x04ae1ab3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 31 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c1fe38) 32 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 33 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 34 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c1ff98) 35 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 36 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfed2d2c8) 39 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfed2d348) 40 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfed2e1f8) 41 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfed2e238) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfed2e774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfed2e288) 43 0x7c000f80 main+0x145(argc=, argv=0xfed2e774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfed2e6c8) 44 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06a36b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b14000 Dwarf d3d9_test \-PE 4a10000- 4b14000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc2000 Dwarf wined3d \-PE 4c70000- 4dc2000 \ wined3d ELF 50c2000- 5207000 Dwarf gdi32 \-PE 50d0000- 5207000 \ gdi32 ELF 5207000- 5288000 Deferred advapi32 \-PE 5210000- 5288000 \ advapi32 ELF 5288000- 53fd000 Deferred user32 \-PE 52a0000- 53fd000 \ user32 ELF 54fd000- 5518000 Deferred version \-PE 5500000- 5518000 \ version ELF 5564000- 561c000 Deferred libfreetype.so.6 ELF 5624000- 5630000 Deferred libxcursor.so.1 ELF 5634000- 563b000 Deferred libxfixes.so.3 ELF 564f000- 5652000 Deferred libxshmfence.so.1 ELF 5667000- 568c000 Deferred imm32 \-PE 5670000- 568c000 \ imm32 ELF 56a4000- 56a8000 Deferred libxinerama.so.1 ELF 56ac000- 56b2000 Deferred libxxf86vm.so.1 ELF 56b6000- 56c2000 Deferred libxrender.so.1 ELF 56c6000- 56d3000 Deferred libxrandr.so.2 ELF 56d7000- 56db000 Deferred libxcomposite.so.1 ELF 56ec000- 56ff000 Deferred libxext.so.6 ELF 570b000- 570f000 Deferred libxau.so.6 ELF 5713000- 571a000 Deferred libxdmcp.so.6 ELF 581c000- 5835000 Deferred libz.so.1 ELF 5835000- 5847000 Deferred libbz2.so.1 ELF 5847000- 5885000 Deferred libpng16.so.16 ELF 5889000- 58c6000 Deferred libfontconfig.so.1 ELF 58ca000- 58f4000 Deferred libexpat.so.1 ELF 58f8000- 5998000 Dwarf winex11 \-PE 5900000- 5998000 \ winex11 ELF 5998000- 5ae9000 Deferred libx11.so.6 ELF 5ae9000- 5b15000 Deferred libxcb.so.1 ELF 5b19000- 5b35000 Deferred libbsd.so.0 ELF 5b3d000- 5b40000 Deferred libx11-xcb.so.1 ELF 5b45000- 5b49000 Deferred libxcb-dri3.so.0 ELF 5b49000- 5b4d000 Deferred libxcb-present.so.0 ELF 5b4d000- 5b50000 Deferred libllvmamdgpuutils.so.3.7 ELF 5b51000- 5b59000 Deferred libxcb-sync.so.1 ELF 5b61000- 5b65000 Deferred libxdamage.so.1 ELF 5b69000- 5b6f000 Deferred libxcb-dri2.so.0 ELF 5b6f000- 5b81000 Deferred libdrm.so.2 ELF 5b85000- 5b98000 Deferred libxi.so.6 ELF 5ba8000- 5bae000 Deferred libtxc_dxtn.so ELF 5d35000- 5dac000 Dwarf libgl.so.1 ELF 5dac000- 5de3000 Deferred libglapi.so.0 ELF 5de3000- 5e00000 Deferred libxcb-glx.so.0 ELF 5e4c000- 5e74000 Deferred libudev.so.1 ELF 5f74000- 5fb4000 Deferred libnettle.so.6 ELF 5fb4000- 5fd9000 Deferred libdrm_intel.so.1 ELF 5fd9000- 5fe3000 Deferred libdrm_nouveau.so.2 ELF 63e9000- 7054000 Dwarf radeonsi_dri.so ELF 7239000- 7247000 Deferred libdrm_radeon.so.1 ELF 7247000- 7252000 Deferred libdrm_amdgpu.so.1 ELF 7758000- 7775000 Deferred libelf.so.1 ELF 7785000- 784c000 Deferred libllvmipo.so.3.7 ELF 795f000- 7ace000 Deferred libllvmamdgpucodegen.so.3.7 ELF 829e000- 8346000 Deferred libllvmvectorize.so.3.7 ELF 834e000- 83a8000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 83ac000- 8478000 Deferred libllvmamdgpudesc.so.3.7 ELF 847c000- 847f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 847f000- 84a9000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 84ad000- 84e9000 Deferred libllvmbitwriter.so.3.7 ELF 84ed000- 8655000 Deferred libllvmx86disassembler.so.3.7 ELF 8659000- 86fc000 Deferred libllvmx86asmparser.so.3.7 ELF 874c000- 8755000 Deferred libllvmmcdisassembler.so.3.7 ELF 875d000- 8760000 Deferred libllvmx86info.so.3.7 ELF 8b89000- 8e0f000 Deferred libllvmx86codegen.so.3.7 ELF 8f17000- 8f23000 Deferred libllvmx86utils.so.3.7 ELF 9666000- 9734000 Deferred libllvmasmprinter.so.3.7 ELF 9734000- 9775000 Deferred libllvmprofiledata.so.3.7 ELF 9775000- 9785000 Deferred libllvmmcjit.so.3.7 ELF 9789000- 979d000 Deferred libllvmtarget.so.3.7 ELF 9962000- 9c6b000 Deferred libllvmselectiondag.so.3.7 ELF a207000- a6f5000 Deferred libllvmcodegen.so.3.7 ELF a8f5000- a99d000 Deferred libllvminstrumentation.so.3.7 ELF a99d000- a9d4000 Deferred libllvmipa.so.3.7 ELF abe3000- ac2e000 Deferred libllvmx86asmprinter.so.3.7 ELF ac2e000- ac58000 Deferred libllvmexecutionengine.so.3.7 ELF ac60000- ac9d000 Deferred libllvmmcparser.so.3.7 ELF aeb1000- b173000 Deferred libllvmscalaropts.so.3.7 ELF b173000- b262000 Deferred libllvminstcombine.so.3.7 ELF b262000- b2e0000 Deferred libllvmruntimedyld.so.3.7 ELF b2e0000- b2fc000 Deferred libgcc_s.so.1 ELF b2fc000- b307000 Deferred libpciaccess.so.0 ELF bbc4000- bc6b000 Deferred libllvmobject.so.3.7 ELF c044000- c1aa000 Deferred libllvmtransformutils.so.3.7 ELF c2aa000- c407000 Deferred libllvmx86desc.so.3.7 ELF c407000- c458000 Deferred libllvmbitreader.so.3.7 ELF c458000- c4b6000 Deferred libncurses.so.6 ELF c679000- c966000 Deferred libllvmanalysis.so.3.7 ELF ce74000- cf33000 Deferred libllvmmc.so.3.7 ELF d643000- d9a9000 Deferred libllvmcore.so.3.7 ELF daa9000- dbc6000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000183 (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 00000184 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30638== 16 bytes in 1 blocks are definitely lost in loss record 122 of 1,261 ==30638== at 0x7BC50754: notify_alloc (heap.c:254) ==30638== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30638== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==30638== by 0x4A176DA: test_qi_base_to_ex (d3d9ex.c:244) ==30638== by 0x4A2AC49: func_d3d9ex (d3d9ex.c:3733) ==30638== by 0x4AE15F9: run_test (test.h:589) ==30638== by 0x4AE1A25: main (test.h:671) ==30638== { 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 } ==30638== 13,272 bytes in 1 blocks are definitely lost in loss record 1,249 of 1,261 ==30638== at 0x7BC50754: notify_alloc (heap.c:254) ==30638== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30638== by 0x4D5AC01: wined3d_create (wined3d_main.c:100) ==30638== by 0x4C436BA: d3d9_init (directx.c:679) ==30638== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==30638== by 0x4A176DA: test_qi_base_to_ex (d3d9ex.c:244) ==30638== by 0x4A2AC49: func_d3d9ex (d3d9ex.c:3733) ==30638== by 0x4AE15F9: run_test (test.h:589) ==30638== by 0x4AE1A25: main (test.h:671) ==30638== { 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 } make[1]: *** [Makefile:174: 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 0x6a46b2c (thread 0188), 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 (0x06a46b2c). 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:06a46b2c ESP:04c1e5d0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e66000 ECX:046ccdf8 EDX:00200000 ESI:04656170 EDI:046ccdf8 Stack dump: 0x04c1e5d0: 04c1e60c 046c6744 00000003 00000002 0x04c1e5e0: 00007a50 00007a64 00000082 00007a6c 0x04c1e5f0: 00800000 00000000 00007a44 00007a48 0x04c1e600: 00007a4c 00000000 04655950 00007a74 0x04c1e610: 00000000 00000000 00000000 00000000 0x04c1e620: 00000000 00000000 00000000 3f1cf700 Backtrace: =>0 0x06a46b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06a2d35b in radeonsi_dri.so (+0x63435a) (0x04654ce8) 2 0x06a2d6e2 in radeonsi_dri.so (+0x6346e1) (0x04c1e768) 3 0x06aada6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e768) 4 0x0642879c in radeonsi_dri.so (+0x2f79b) (0x0464b608) 5 0x06860000 in radeonsi_dri.so (+0x466fff) (0x0464b608) 6 0x0685fa3d in radeonsi_dri.so (+0x466a3c) (0x0464b608) 7 0x0672094b in radeonsi_dri.so (+0x32794a) (0x0464b608) 8 0x0671c976 in radeonsi_dri.so (+0x323975) (0x0464b580) 9 0x05d88722 in libgl.so.1 (+0x43721) (0x04598908) 10 0x05d5da42 in libgl.so.1 (+0x18a41) (0x045963e0) 11 0x05d5960b in libgl.so.1 (+0x1460a) (0x04c1f224) 12 0x05d59784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1f224) 13 0x059465cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1f2f8) 14 0x05948023 init_opengl+0xfbe(once=0x59a4e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f508) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f558) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f588) 17 0x0594849e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f5b8) 18 0x05950533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f5d8) 19 0x0593b293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5e88, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f608) 20 0x0516e5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f638) 21 0x04cd3c4f wined3d_adapter_init+0xe0(adapter=0x48f28d8, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c1fa68) 22 0x04cd4681 wined3d_init+0xa5(wined3d=0x48f28c8, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c1fa98) 23 0x04d5ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c1faf8) 24 0x04c436bb d3d9_init+0x4d(d3d9=0x48f28a8, 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 0x04a6872d func_device+0x135() [/home/austin/wine-valgrind/dlls/d3d9/tests/device.c:11464] in d3d9_test (0x04c1fcc8) 27 0x04ae15fa run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 28 0x04ae1a26 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 29 0x04ae1ab3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c1fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c1ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfedb92c8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfedb9348) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfedba1f8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfedba238) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfedba774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfedba288) 42 0x7c000f80 main+0x145(argc=, argv=0xfedba774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfedba6c8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06a46b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b14000 Dwarf d3d9_test \-PE 4a10000- 4b14000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc2000 Dwarf wined3d \-PE 4c70000- 4dc2000 \ wined3d ELF 50c2000- 5207000 Dwarf gdi32 \-PE 50d0000- 5207000 \ gdi32 ELF 5207000- 5288000 Deferred advapi32 \-PE 5210000- 5288000 \ advapi32 ELF 5288000- 53fd000 Deferred user32 \-PE 52a0000- 53fd000 \ user32 ELF 54fd000- 5518000 Deferred version \-PE 5500000- 5518000 \ version ELF 5564000- 561c000 Deferred libfreetype.so.6 ELF 5628000- 5634000 Deferred libxcursor.so.1 ELF 563c000- 5643000 Deferred libxfixes.so.3 ELF 5653000- 5656000 Deferred libxshmfence.so.1 ELF 566f000- 5694000 Deferred imm32 \-PE 5680000- 5694000 \ imm32 ELF 56a8000- 56ac000 Deferred libxinerama.so.1 ELF 56b0000- 56b6000 Deferred libxxf86vm.so.1 ELF 56ba000- 56c6000 Deferred libxrender.so.1 ELF 56ca000- 56d7000 Deferred libxrandr.so.2 ELF 56db000- 56df000 Deferred libxcomposite.so.1 ELF 56ec000- 56ff000 Deferred libxext.so.6 ELF 570b000- 570f000 Deferred libxau.so.6 ELF 5713000- 571a000 Deferred libxdmcp.so.6 ELF 5820000- 5839000 Deferred libz.so.1 ELF 583d000- 584f000 Deferred libbz2.so.1 ELF 5853000- 5891000 Deferred libpng16.so.16 ELF 5899000- 58d6000 Deferred libfontconfig.so.1 ELF 58da000- 5904000 Deferred libexpat.so.1 ELF 5908000- 59a8000 Dwarf winex11 \-PE 5910000- 59a8000 \ winex11 ELF 59a8000- 5af9000 Deferred libx11.so.6 ELF 5af9000- 5b25000 Deferred libxcb.so.1 ELF 5b25000- 5b41000 Deferred libbsd.so.0 ELF 5b4d000- 5b50000 Deferred libx11-xcb.so.1 ELF 5b55000- 5b59000 Deferred libxcb-dri3.so.0 ELF 5b59000- 5b5d000 Deferred libxcb-present.so.0 ELF 5b5d000- 5b60000 Deferred libllvmamdgpuutils.so.3.7 ELF 5b61000- 5b69000 Deferred libxcb-sync.so.1 ELF 5b6d000- 5b71000 Deferred libxdamage.so.1 ELF 5b75000- 5b7b000 Deferred libxcb-dri2.so.0 ELF 5b7b000- 5b8d000 Deferred libdrm.so.2 ELF 5b91000- 5ba4000 Deferred libxi.so.6 ELF 5bb4000- 5bba000 Deferred libtxc_dxtn.so ELF 5d45000- 5dbc000 Dwarf libgl.so.1 ELF 5dbc000- 5df3000 Deferred libglapi.so.0 ELF 5df3000- 5e10000 Deferred libxcb-glx.so.0 ELF 5e5c000- 5e84000 Deferred libudev.so.1 ELF 5f84000- 5fc4000 Deferred libnettle.so.6 ELF 5fc4000- 5fe9000 Deferred libdrm_intel.so.1 ELF 5fe9000- 5ff3000 Deferred libdrm_nouveau.so.2 ELF 63f9000- 7064000 Dwarf radeonsi_dri.so ELF 7249000- 7257000 Deferred libdrm_radeon.so.1 ELF 7257000- 7262000 Deferred libdrm_amdgpu.so.1 ELF 7768000- 7785000 Deferred libelf.so.1 ELF 7795000- 785c000 Deferred libllvmipo.so.3.7 ELF 796f000- 7ade000 Deferred libllvmamdgpucodegen.so.3.7 ELF 82ae000- 8356000 Deferred libllvmvectorize.so.3.7 ELF 835e000- 83b8000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 83bc000- 8488000 Deferred libllvmamdgpudesc.so.3.7 ELF 848c000- 848f000 Deferred libllvmamdgpuinfo.so.3.7 ELF 848f000- 84b9000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 84bd000- 84f9000 Deferred libllvmbitwriter.so.3.7 ELF 84fd000- 8665000 Deferred libllvmx86disassembler.so.3.7 ELF 8669000- 870c000 Deferred libllvmx86asmparser.so.3.7 ELF 875c000- 8765000 Deferred libllvmmcdisassembler.so.3.7 ELF 876d000- 8770000 Deferred libllvmx86info.so.3.7 ELF 8b99000- 8e1f000 Deferred libllvmx86codegen.so.3.7 ELF 8f27000- 8f33000 Deferred libllvmx86utils.so.3.7 ELF 9676000- 9744000 Deferred libllvmasmprinter.so.3.7 ELF 9744000- 9785000 Deferred libllvmprofiledata.so.3.7 ELF 9785000- 9795000 Deferred libllvmmcjit.so.3.7 ELF 9799000- 97ad000 Deferred libllvmtarget.so.3.7 ELF 9972000- 9c7b000 Deferred libllvmselectiondag.so.3.7 ELF a217000- a705000 Deferred libllvmcodegen.so.3.7 ELF a905000- a9ad000 Deferred libllvminstrumentation.so.3.7 ELF a9ad000- a9e4000 Deferred libllvmipa.so.3.7 ELF abf3000- ac3e000 Deferred libllvmx86asmprinter.so.3.7 ELF ac3e000- ac68000 Deferred libllvmexecutionengine.so.3.7 ELF ac70000- acad000 Deferred libllvmmcparser.so.3.7 ELF aec1000- b183000 Deferred libllvmscalaropts.so.3.7 ELF b183000- b272000 Deferred libllvminstcombine.so.3.7 ELF b272000- b2f0000 Deferred libllvmruntimedyld.so.3.7 ELF b2f0000- b30c000 Deferred libgcc_s.so.1 ELF b30c000- b317000 Deferred libpciaccess.so.0 ELF bbd4000- bc7b000 Deferred libllvmobject.so.3.7 ELF c054000- c1ba000 Deferred libllvmtransformutils.so.3.7 ELF c2ba000- c417000 Deferred libllvmx86desc.so.3.7 ELF c417000- c468000 Deferred libllvmbitreader.so.3.7 ELF c468000- c4c6000 Deferred libncurses.so.6 ELF c689000- c976000 Deferred libllvmanalysis.so.3.7 ELF ce84000- cf43000 Deferred libllvmmc.so.3.7 ELF d653000- d9b9000 Deferred libllvmcore.so.3.7 ELF dab9000- dbd6000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000187 (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 00000188 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30683== 16 bytes in 1 blocks are definitely lost in loss record 122 of 1,261 ==30683== at 0x7BC50754: notify_alloc (heap.c:254) ==30683== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30683== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==30683== by 0x4A6872C: func_device (device.c:11464) ==30683== by 0x4AE15F9: run_test (test.h:589) ==30683== by 0x4AE1A25: main (test.h:671) ==30683== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_device fun:run_test fun:main } ==30683== 13,272 bytes in 1 blocks are definitely lost in loss record 1,249 of 1,261 ==30683== at 0x7BC50754: notify_alloc (heap.c:254) ==30683== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30683== by 0x4D5AC01: wined3d_create (wined3d_main.c:100) ==30683== by 0x4C436BA: d3d9_init (directx.c:679) ==30683== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==30683== by 0x4A6872C: func_device (device.c:11464) ==30683== by 0x4AE15F9: run_test (test.h:589) ==30683== by 0x4AE1A25: main (test.h:671) ==30683== { 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 } make[1]: *** [Makefile:206: 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 0x6a36b2c (thread 018c), 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 (0x06a36b2c). 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:06a36b2c ESP:04c1e3e0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e56000 ECX:04750c88 EDX:00200000 ESI:046da000 EDI:04750c88 Stack dump: 0x04c1e3e0: 04c1e41c 0474a5d4 00000003 00000002 0x04c1e3f0: 00007a50 00007a64 00000082 00007a6c 0x04c1e400: 00800000 00000000 00007a44 00007a48 0x04c1e410: 00007a4c 00000000 046d97e0 00007a74 0x04c1e420: 00000000 00000000 00000000 00000000 0x04c1e430: 00000000 00000000 00000000 24ffc100 Backtrace: =>0 0x06a36b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06a1d35b in radeonsi_dri.so (+0x63435a) (0x046d8b78) 2 0x06a1d6e2 in radeonsi_dri.so (+0x6346e1) (0x04c1e578) 3 0x06a9da6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e578) 4 0x0641879c in radeonsi_dri.so (+0x2f79b) (0x046cf498) 5 0x06850000 in radeonsi_dri.so (+0x466fff) (0x046cf498) 6 0x0684fa3d in radeonsi_dri.so (+0x466a3c) (0x046cf498) 7 0x0671094b in radeonsi_dri.so (+0x32794a) (0x046cf498) 8 0x0670c976 in radeonsi_dri.so (+0x323975) (0x046cf410) 9 0x05de3722 in libgl.so.1 (+0x43721) (0x0461c798) 10 0x05db8a42 in libgl.so.1 (+0x18a41) (0x0461a270) 11 0x05db460b in libgl.so.1 (+0x1460a) (0x04c1f034) 12 0x05db4784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1f034) 13 0x059365cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1f108) 14 0x05938023 init_opengl+0xfbe(once=0x5994e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f318) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f368) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f398) 17 0x0593849e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f3c8) 18 0x05940533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f3e8) 19 0x0592b293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48fe570, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f418) 20 0x0516e5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f448) 21 0x04cd3c4f wined3d_adapter_init+0xe0(adapter=0x48fafc0, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c1f878) 22 0x04cd4681 wined3d_init+0xa5(wined3d=0x48fafb0, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c1f8a8) 23 0x04d5ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c1f908) 24 0x04c436bb d3d9_init+0x4d(d3d9=0x48faf90, 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 0x04a6e55e test_state_management+0x69() [/home/austin/wine-valgrind/dlls/d3d9/tests/stateblock.c:2020] in d3d9_test (0x04c1fcb8) 27 0x04a6e95a func_stateblock+0xa() [/home/austin/wine-valgrind/dlls/d3d9/tests/stateblock.c:2090] in d3d9_test (0x04c1fcc8) 28 0x04ae15fa run_test+0x96(name="stateblock") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 29 0x04ae1a26 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 30 0x04ae1ab3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 31 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c1fe38) 32 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 33 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 34 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c1ff98) 35 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 36 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe92d2b8) 39 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe92d338) 40 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe92e1e8) 41 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe92e228) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe92e764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe92e278) 43 0x7c000f80 main+0x145(argc=, argv=0xfe92e764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe92e6b8) 44 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06a36b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b14000 Dwarf d3d9_test \-PE 4a10000- 4b14000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc2000 Dwarf wined3d \-PE 4c70000- 4dc2000 \ wined3d ELF 50c2000- 5207000 Dwarf gdi32 \-PE 50d0000- 5207000 \ gdi32 ELF 5207000- 5288000 Deferred advapi32 \-PE 5210000- 5288000 \ advapi32 ELF 5288000- 53fd000 Deferred user32 \-PE 52a0000- 53fd000 \ user32 ELF 54fd000- 5518000 Deferred version \-PE 5500000- 5518000 \ version ELF 5564000- 561c000 Deferred libfreetype.so.6 ELF 5624000- 5630000 Deferred libxcursor.so.1 ELF 5634000- 563b000 Deferred libxfixes.so.3 ELF 564f000- 5652000 Deferred libxshmfence.so.1 ELF 5667000- 568c000 Deferred imm32 \-PE 5670000- 568c000 \ imm32 ELF 56a4000- 56a8000 Deferred libxinerama.so.1 ELF 56ac000- 56b2000 Deferred libxxf86vm.so.1 ELF 56b6000- 56c2000 Deferred libxrender.so.1 ELF 56c6000- 56d3000 Deferred libxrandr.so.2 ELF 56d7000- 56db000 Deferred libxcomposite.so.1 ELF 56ec000- 56ff000 Deferred libxext.so.6 ELF 570b000- 570f000 Deferred libxau.so.6 ELF 5713000- 571a000 Deferred libxdmcp.so.6 ELF 581c000- 5835000 Deferred libz.so.1 ELF 5835000- 5847000 Deferred libbz2.so.1 ELF 5847000- 5885000 Deferred libpng16.so.16 ELF 5889000- 58c6000 Deferred libfontconfig.so.1 ELF 58ca000- 58f4000 Deferred libexpat.so.1 ELF 58f8000- 5998000 Dwarf winex11 \-PE 5900000- 5998000 \ winex11 ELF 5998000- 5ae9000 Deferred libx11.so.6 ELF 5ae9000- 5b15000 Deferred libxcb.so.1 ELF 5b19000- 5b35000 Deferred libbsd.so.0 ELF 5b3d000- 5b40000 Deferred libx11-xcb.so.1 ELF 5b4d000- 5b50000 Deferred libllvmamdgpuutils.so.3.7 ELF 5b85000- 5b98000 Deferred libxi.so.6 ELF 5bb8000- 5be0000 Deferred libudev.so.1 ELF 5da0000- 5e17000 Dwarf libgl.so.1 ELF 5e1b000- 5e1f000 Deferred libxcb-dri3.so.0 ELF 5e1f000- 5e23000 Deferred libxcb-present.so.0 ELF 5e27000- 5e2f000 Deferred libxcb-sync.so.1 ELF 5e33000- 5e6a000 Deferred libglapi.so.0 ELF 5e72000- 5e76000 Deferred libxdamage.so.1 ELF 5e7a000- 5e97000 Deferred libxcb-glx.so.0 ELF 5e9b000- 5ea1000 Deferred libxcb-dri2.so.0 ELF 5ea5000- 5eb7000 Deferred libdrm.so.2 ELF 5fc3000- 5fe8000 Deferred libdrm_intel.so.1 ELF 63e9000- 7054000 Dwarf radeonsi_dri.so ELF 7241000- 724b000 Deferred libdrm_nouveau.so.2 ELF 7768000- 776e000 Deferred libtxc_dxtn.so ELF 77a0000- 77e0000 Deferred libnettle.so.6 ELF 77e0000- 77ee000 Deferred libdrm_radeon.so.1 ELF 77ee000- 77f9000 Deferred libdrm_amdgpu.so.1 ELF 77fd000- 781a000 Deferred libelf.so.1 ELF 783a000- 783d000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7851000- 7854000 Deferred libllvmx86info.so.3.7 ELF 795f000- 7ace000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7fe0000- 80a7000 Deferred libllvmipo.so.3.7 ELF 8365000- 840d000 Deferred libllvmvectorize.so.3.7 ELF 840d000- 8467000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8467000- 8533000 Deferred libllvmamdgpudesc.so.3.7 ELF 8533000- 855d000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 855d000- 8599000 Deferred libllvmbitwriter.so.3.7 ELF 8599000- 8701000 Deferred libllvmx86disassembler.so.3.7 ELF 8751000- 875a000 Deferred libllvmmcdisassembler.so.3.7 ELF 8b89000- 8c2c000 Deferred libllvmx86asmparser.so.3.7 ELF 8c2c000- 8eb2000 Deferred libllvmx86codegen.so.3.7 ELF 8eb2000- 8ef3000 Deferred libllvmprofiledata.so.3.7 ELF 8ef3000- 8f2a000 Deferred libllvmipa.so.3.7 ELF 9766000- 9834000 Deferred libllvmasmprinter.so.3.7 ELF 9834000- 987f000 Deferred libllvmx86asmprinter.so.3.7 ELF 9883000- 988f000 Deferred libllvmx86utils.so.3.7 ELF 9a62000- 9d6b000 Deferred libllvmselectiondag.so.3.7 ELF a086000- a096000 Deferred libllvmmcjit.so.3.7 ELF a307000- a7f5000 Deferred libllvmcodegen.so.3.7 ELF a9f5000- aa9d000 Deferred libllvminstrumentation.so.3.7 ELF aa9d000- aac7000 Deferred libllvmexecutionengine.so.3.7 ELF ace3000- acf7000 Deferred libllvmtarget.so.3.7 ELF acfb000- ad79000 Deferred libllvmruntimedyld.so.3.7 ELF ad81000- adbe000 Deferred libllvmmcparser.so.3.7 ELF afb1000- b273000 Deferred libllvmscalaropts.so.3.7 ELF b273000- b362000 Deferred libllvminstcombine.so.3.7 ELF b362000- b409000 Deferred libllvmobject.so.3.7 ELF bcc4000- bd15000 Deferred libllvmbitreader.so.3.7 ELF bd19000- bd35000 Deferred libgcc_s.so.1 ELF bd39000- bd44000 Deferred libpciaccess.so.0 ELF c144000- c2aa000 Deferred libllvmtransformutils.so.3.7 ELF c3aa000- c507000 Deferred libllvmx86desc.so.3.7 ELF c507000- c5c6000 Deferred libllvmmc.so.3.7 ELF c779000- ca66000 Deferred libllvmanalysis.so.3.7 ELF d319000- d377000 Deferred libncurses.so.6 ELF d69e000- da04000 Deferred libllvmcore.so.3.7 ELF db04000- dc21000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000018b (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 0000018c 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30714== 16 bytes in 1 blocks are definitely lost in loss record 181 of 1,447 ==30714== at 0x7BC50754: notify_alloc (heap.c:254) ==30714== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30714== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==30714== by 0x4A6E55D: test_state_management (stateblock.c:2020) ==30714== by 0x4A6E959: func_stateblock (stateblock.c:2090) ==30714== by 0x4AE15F9: run_test (test.h:589) ==30714== by 0x4AE1A25: main (test.h:671) ==30714== { 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 } ==30714== 13,272 bytes in 1 blocks are definitely lost in loss record 1,432 of 1,447 ==30714== at 0x7BC50754: notify_alloc (heap.c:254) ==30714== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30714== by 0x4D5AC01: wined3d_create (wined3d_main.c:100) ==30714== by 0x4C436BA: d3d9_init (directx.c:679) ==30714== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==30714== by 0x4A6E55D: test_state_management (stateblock.c:2020) ==30714== by 0x4A6E959: func_stateblock (stateblock.c:2090) ==30714== by 0x4AE15F9: run_test (test.h:589) ==30714== by 0x4AE1A25: main (test.h:671) ==30714== { 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 } make[1]: *** [Makefile:238: 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 0x6a2ab2c (thread 0190), 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 (0x06a2ab2c). 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:06a2ab2c ESP:04c1e280 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e4a000 ECX:046cc4a0 EDX:00200000 ESI:04655818 EDI:046cc4a0 Stack dump: 0x04c1e280: 04c1e2bc 046c5dec 00000003 00000002 0x04c1e290: 00007a50 00007a64 00000082 00007a6c 0x04c1e2a0: 00800000 00000000 00007a44 00007a48 0x04c1e2b0: 00007a4c 00000000 04654ff8 00007a74 0x04c1e2c0: 00000000 00000000 00000000 00000000 0x04c1e2d0: 00000000 00000000 00000000 7fb76a00 Backtrace: =>0 0x06a2ab2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06a1135b in radeonsi_dri.so (+0x63435a) (0x04654390) 2 0x06a116e2 in radeonsi_dri.so (+0x6346e1) (0x04c1e418) 3 0x06a91a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c1e418) 4 0x0640c79c in radeonsi_dri.so (+0x2f79b) (0x0464acb0) 5 0x06844000 in radeonsi_dri.so (+0x466fff) (0x0464acb0) 6 0x06843a3d in radeonsi_dri.so (+0x466a3c) (0x0464acb0) 7 0x0670494b in radeonsi_dri.so (+0x32794a) (0x0464acb0) 8 0x06700976 in radeonsi_dri.so (+0x323975) (0x0464ac28) 9 0x05d6c722 in libgl.so.1 (+0x43721) (0x04597fb0) 10 0x05d41a42 in libgl.so.1 (+0x18a41) (0x04595a88) 11 0x05d3d60b in libgl.so.1 (+0x1460a) (0x04c1eed4) 12 0x05d3d784 glXChooseVisual+0x63() in libgl.so.1 (0x04c1eed4) 13 0x0592a5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c1efa8) 14 0x0592c023 init_opengl+0xfbe(once=0x5988e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c1f1b8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c1f208) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c1f238) 17 0x0592c49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c1f268) 18 0x05934533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c1f288) 19 0x0591f293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f5410, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c1f2b8) 20 0x0516e5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c1f2e8) 21 0x04cd3c4f wined3d_adapter_init+0xe0(adapter=0x48f1e60, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c1f718) 22 0x04cd4681 wined3d_init+0xa5(wined3d=0x48f1e50, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c1f748) 23 0x04d5ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c1f7a8) 24 0x04c436bb d3d9_init+0x4d(d3d9=0x48f1e30, 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 0x04ae03e4 func_visual+0x2a() [/home/austin/wine-valgrind/dlls/d3d9/tests/visual.c:22347] in d3d9_test (0x04c1fcc8) 27 0x04ae15fa run_test+0x96(name="visual") [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:589] in d3d9_test (0x04c1fd08) 28 0x04ae1a26 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/d3d9/tests/../../../include/wine/test.h:671] in d3d9_test (0x04c1fdd8) 29 0x04ae1ab3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3d9_test (0x04c1fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c1fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c1fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c1fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c1ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c1ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c1ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c20000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb492c8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb49348) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb4a1f8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb4a238) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb4a774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb4a288) 42 0x7c000f80 main+0x145(argc=, argv=0xfeb4a774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb4a6c8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06a2ab2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b14000 Dwarf d3d9_test \-PE 4a10000- 4b14000 \ d3d9_test ELF 4c20000- 4c63000 Dwarf d3d9 \-PE 4c30000- 4c63000 \ d3d9 ELF 4c63000- 4dc2000 Dwarf wined3d \-PE 4c70000- 4dc2000 \ wined3d ELF 50c2000- 5207000 Dwarf gdi32 \-PE 50d0000- 5207000 \ gdi32 ELF 5207000- 5288000 Deferred advapi32 \-PE 5210000- 5288000 \ advapi32 ELF 5288000- 53fd000 Deferred user32 \-PE 52a0000- 53fd000 \ user32 ELF 54fd000- 5518000 Deferred version \-PE 5500000- 5518000 \ version ELF 5561000- 5564000 Deferred libxshmfence.so.1 ELF 5564000- 561c000 Deferred libfreetype.so.6 ELF 561c000- 5628000 Deferred libxcursor.so.1 ELF 562c000- 5633000 Deferred libxfixes.so.3 ELF 5649000- 564c000 Deferred libx11-xcb.so.1 ELF 5662000- 5687000 Deferred imm32 \-PE 5670000- 5687000 \ imm32 ELF 569f000- 56a3000 Deferred libxinerama.so.1 ELF 56a7000- 56ad000 Deferred libxxf86vm.so.1 ELF 56ad000- 56b9000 Deferred libxrender.so.1 ELF 56bd000- 56ca000 Deferred libxrandr.so.2 ELF 56ce000- 56d2000 Deferred libxcomposite.so.1 ELF 56e7000- 56fa000 Deferred libxext.so.6 ELF 570a000- 570e000 Deferred libxau.so.6 ELF 5712000- 5719000 Deferred libxdmcp.so.6 ELF 5719000- 571c000 Deferred libllvmamdgpuutils.so.3.7 ELF 581c000- 5835000 Deferred libz.so.1 ELF 5835000- 5847000 Deferred libbz2.so.1 ELF 5847000- 5885000 Deferred libpng16.so.16 ELF 5885000- 58c2000 Deferred libfontconfig.so.1 ELF 58c2000- 58ec000 Deferred libexpat.so.1 ELF 58ec000- 598c000 Dwarf winex11 \-PE 5900000- 598c000 \ winex11 ELF 598c000- 5add000 Deferred libx11.so.6 ELF 5add000- 5b09000 Deferred libxcb.so.1 ELF 5b0d000- 5b29000 Deferred libbsd.so.0 ELF 5b2d000- 5b30000 Deferred libllvmamdgpuinfo.so.3.7 ELF 5b35000- 5b39000 Deferred libxcb-dri3.so.0 ELF 5b39000- 5b3d000 Deferred libxcb-present.so.0 ELF 5b3d000- 5b45000 Deferred libxcb-sync.so.1 ELF 5b4d000- 5b51000 Deferred libxdamage.so.1 ELF 5b55000- 5b72000 Deferred libxcb-glx.so.0 ELF 5b72000- 5b78000 Deferred libxcb-dri2.so.0 ELF 5b79000- 5b8c000 Deferred libxi.so.6 ELF 5b9c000- 5ba2000 Deferred libtxc_dxtn.so ELF 5cfd000- 5d25000 Deferred libudev.so.1 ELF 5d29000- 5da0000 Dwarf libgl.so.1 ELF 5da0000- 5dd7000 Deferred libglapi.so.0 ELF 5dd7000- 5de9000 Deferred libdrm.so.2 ELF 5f59000- 5f99000 Deferred libnettle.so.6 ELF 5f9d000- 5fc2000 Deferred libdrm_intel.so.1 ELF 5fc6000- 5fd0000 Deferred libdrm_nouveau.so.2 ELF 63dd000- 7048000 Dwarf radeonsi_dri.so ELF 722d000- 723b000 Deferred libdrm_radeon.so.1 ELF 723b000- 7246000 Deferred libdrm_amdgpu.so.1 ELF 7748000- 7765000 Deferred libelf.so.1 ELF 7775000- 783c000 Deferred libllvmipo.so.3.7 ELF 7953000- 7ac2000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8292000- 833a000 Deferred libllvmvectorize.so.3.7 ELF 833e000- 8398000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 839c000- 8468000 Deferred libllvmamdgpudesc.so.3.7 ELF 846c000- 8496000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 849a000- 84d6000 Deferred libllvmbitwriter.so.3.7 ELF 84da000- 8642000 Deferred libllvmx86disassembler.so.3.7 ELF 8646000- 86e9000 Deferred libllvmx86asmparser.so.3.7 ELF 8739000- 8742000 Deferred libllvmmcdisassembler.so.3.7 ELF 874a000- 874d000 Deferred libllvmx86info.so.3.7 ELF 8b7d000- 8e03000 Deferred libllvmx86codegen.so.3.7 ELF 8f07000- 8f13000 Deferred libllvmx86utils.so.3.7 ELF 965a000- 9728000 Deferred libllvmasmprinter.so.3.7 ELF 9728000- 9769000 Deferred libllvmprofiledata.so.3.7 ELF 9769000- 9779000 Deferred libllvmmcjit.so.3.7 ELF 9779000- 978d000 Deferred libllvmtarget.so.3.7 ELF 9956000- 9c5f000 Deferred libllvmselectiondag.so.3.7 ELF a1fb000- a6e9000 Deferred libllvmcodegen.so.3.7 ELF a8e9000- a991000 Deferred libllvminstrumentation.so.3.7 ELF a991000- a9c8000 Deferred libllvmipa.so.3.7 ELF abd7000- ac22000 Deferred libllvmx86asmprinter.so.3.7 ELF ac22000- ac4c000 Deferred libllvmexecutionengine.so.3.7 ELF ac54000- ac91000 Deferred libllvmmcparser.so.3.7 ELF aea5000- b167000 Deferred libllvmscalaropts.so.3.7 ELF b167000- b256000 Deferred libllvminstcombine.so.3.7 ELF b256000- b2d4000 Deferred libllvmruntimedyld.so.3.7 ELF b2d4000- b2f0000 Deferred libgcc_s.so.1 ELF b2f0000- b2fb000 Deferred libpciaccess.so.0 ELF bbb8000- bc5f000 Deferred libllvmobject.so.3.7 ELF c038000- c19e000 Deferred libllvmtransformutils.so.3.7 ELF c29e000- c3fb000 Deferred libllvmx86desc.so.3.7 ELF c3fb000- c44c000 Deferred libllvmbitreader.so.3.7 ELF c44c000- c4aa000 Deferred libncurses.so.6 ELF c66d000- c95a000 Deferred libllvmanalysis.so.3.7 ELF ce68000- cf27000 Deferred libllvmmc.so.3.7 ELF d637000- d99d000 Deferred libllvmcore.so.3.7 ELF da9d000- dbba000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000018f (D) Z:\home\austin\wine-valgrind\dlls\d3d9\tests\d3d9_test.exe 00000190 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30750== 16 bytes in 1 blocks are definitely lost in loss record 122 of 1,260 ==30750== at 0x7BC50754: notify_alloc (heap.c:254) ==30750== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30750== by 0x4C34E46: Direct3DCreate9 (d3d9_main.c:42) ==30750== by 0x4AE03E3: func_visual (visual.c:22347) ==30750== by 0x4AE15F9: run_test (test.h:589) ==30750== by 0x4AE1A25: main (test.h:671) ==30750== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_visual fun:run_test fun:main } ==30750== 13,272 bytes in 1 blocks are definitely lost in loss record 1,249 of 1,260 ==30750== at 0x7BC50754: notify_alloc (heap.c:254) ==30750== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30750== by 0x4D5AC01: wined3d_create (wined3d_main.c:100) ==30750== by 0x4C436BA: d3d9_init (directx.c:679) ==30750== by 0x4C34E69: Direct3DCreate9 (d3d9_main.c:45) ==30750== by 0x4AE03E3: func_visual (visual.c:22347) ==30750== by 0x4AE15F9: run_test (test.h:589) ==30750== by 0x4AE1A25: main (test.h:671) ==30750== { 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 } make[1]: *** [Makefile:270: visual.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/d3d9/tests' make: *** [Makefile:6477: 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 0x6eb9b2c (thread 0198), 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 (0x06eb9b2c). 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:06eb9b2c ESP:04b3e4f0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:072d9000 ECX:0471e1f8 EDX:00200000 ESI:046a7570 EDI:0471e1f8 Stack dump: 0x04b3e4f0: 04b3e52c 04717b44 00000003 00000002 0x04b3e500: 00007a50 00007a64 00000082 00007a6c 0x04b3e510: 00800000 00000000 00007a44 00007a48 0x04b3e520: 00007a4c 00000000 046a6d50 00007a74 0x04b3e530: 00000000 00000000 00000000 00000000 0x04b3e540: 00000000 00000000 00000000 9e895d00 Backtrace: =>0 0x06eb9b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06ea035b in radeonsi_dri.so (+0x63435a) (0x046a60e8) 2 0x06ea06e2 in radeonsi_dri.so (+0x6346e1) (0x04b3e688) 3 0x06f20a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b3e688) 4 0x0689b79c in radeonsi_dri.so (+0x2f79b) (0x0469ca08) 5 0x06cd3000 in radeonsi_dri.so (+0x466fff) (0x0469ca08) 6 0x06cd2a3d in radeonsi_dri.so (+0x466a3c) (0x0469ca08) 7 0x06b9394b in radeonsi_dri.so (+0x32794a) (0x0469ca08) 8 0x06b8f976 in radeonsi_dri.so (+0x323975) (0x0469c980) 9 0x0624c722 in libgl.so.1 (+0x43721) (0x045e9d08) 10 0x06221a42 in libgl.so.1 (+0x18a41) (0x045e77e0) 11 0x0621d60b in libgl.so.1 (+0x1460a) (0x04b3f144) 12 0x0621d784 glXChooseVisual+0x63() in libgl.so.1 (0x04b3f144) 13 0x05d425cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b3f218) 14 0x05d44023 init_opengl+0xfbe(once=0x5da0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b3f428) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b3f478) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b3f4a8) 17 0x05d4449e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b3f4d8) 18 0x05d4c533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b3f4f8) 19 0x05d37293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f9530, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b3f528) 20 0x050125c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b3f558) 21 0x04c77c4f wined3d_adapter_init+0xe0(adapter=0x48f5f80, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b3f988) 22 0x04c78681 wined3d_init+0xa5(wined3d=0x48f5f70, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b3f9b8) 23 0x04cfec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b3fa18) 24 0x04be76bb d3d9_init+0x4d(d3d9=0x48f5f50, 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 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b3fe38) 32 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b3fe88) 33 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b3fea8) 34 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b3ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b3ff98) 35 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b3ffb8) 36 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b40000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfedfb2a8) 39 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfedfb328) 40 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfedfc1d8) 41 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfedfc218) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfedfc754, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfedfc268) 43 0x7c000f80 main+0x145(argc=, argv=0xfedfc754) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfedfc6a8) 44 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06eb9b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4824000- 483f000 Deferred version \-PE 4830000- 483f000 \ version ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 4d66000 Dwarf wined3d \-PE 4c20000- 4d66000 \ wined3d ELF 4f66000- 50ab000 Dwarf gdi32 \-PE 4f70000- 50ab000 \ gdi32 ELF 50ab000- 512c000 Deferred advapi32 \-PE 50c0000- 512c000 \ advapi32 ELF 512c000- 52a1000 Deferred user32 \-PE 5140000- 52a1000 \ user32 ELF 54a1000- 5550000 Deferred d3dx9_36 \-PE 54b0000- 5550000 \ d3dx9_36 ELF 5550000- 5579000 Deferred d3dxof \-PE 5560000- 5579000 \ d3dxof ELF 5579000- 56fb000 Deferred ole32 \-PE 5590000- 56fb000 \ ole32 ELF 57fb000- 5888000 Deferred rpcrt4 \-PE 5810000- 5888000 \ rpcrt4 ELF 58e0000- 5998000 Deferred libfreetype.so.6 ELF 5b9c000- 5bb5000 Deferred libz.so.1 ELF 5bbd000- 5bcf000 Deferred libbz2.so.1 ELF 5bd3000- 5c11000 Deferred libpng16.so.16 ELF 5c19000- 5c56000 Deferred libfontconfig.so.1 ELF 5c5a000- 5c84000 Deferred libexpat.so.1 ELF 5c90000- 5c9c000 Deferred libxcursor.so.1 ELF 5ca0000- 5ca7000 Deferred libxfixes.so.3 ELF 5cbb000- 5cbe000 Deferred libxshmfence.so.1 ELF 5cd7000- 5cfc000 Deferred imm32 \-PE 5ce0000- 5cfc000 \ imm32 ELF 5d04000- 5da4000 Dwarf winex11 \-PE 5d10000- 5da4000 \ winex11 ELF 5db8000- 5dbc000 Deferred libxinerama.so.1 ELF 5dc0000- 5dc6000 Deferred libxxf86vm.so.1 ELF 5dca000- 5dd6000 Deferred libxrender.so.1 ELF 5dda000- 5de7000 Deferred libxrandr.so.2 ELF 5deb000- 5def000 Deferred libxcomposite.so.1 ELF 5dfc000- 5e0f000 Deferred libxext.so.6 ELF 5e13000- 5f64000 Deferred libx11.so.6 ELF 5f6c000- 5f98000 Deferred libxcb.so.1 ELF 5f9c000- 5fa0000 Deferred libxau.so.6 ELF 5fa0000- 5fa7000 Deferred libxdmcp.so.6 ELF 5fab000- 5fc7000 Deferred libbsd.so.0 ELF 5fd1000- 5fd5000 Deferred libxcb-dri3.so.0 ELF 5fd5000- 5fd9000 Deferred libxcb-present.so.0 ELF 5fdd000- 5fe0000 Deferred libx11-xcb.so.1 ELF 5fe1000- 5fe9000 Deferred libxcb-sync.so.1 ELF 5fe9000- 5fed000 Deferred libxdamage.so.1 ELF 5fed000- 600a000 Deferred libxcb-glx.so.0 ELF 600e000- 6014000 Deferred libxcb-dri2.so.0 ELF 6014000- 6017000 Deferred libllvmamdgpuutils.so.3.7 ELF 6017000- 602a000 Deferred libxi.so.6 ELF 602a000- 6061000 Deferred libglapi.so.0 ELF 6069000- 606c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 617c000- 6182000 Deferred libtxc_dxtn.so ELF 61d9000- 6201000 Deferred libudev.so.1 ELF 6209000- 6280000 Dwarf libgl.so.1 ELF 6280000- 6292000 Deferred libdrm.so.2 ELF 62f6000- 6336000 Deferred libnettle.so.6 ELF 633a000- 635f000 Deferred libdrm_intel.so.1 ELF 6363000- 636d000 Deferred libdrm_nouveau.so.2 ELF 6371000- 637f000 Deferred libdrm_radeon.so.1 ELF 6383000- 638e000 Deferred libdrm_amdgpu.so.1 ELF 6392000- 63af000 Deferred libelf.so.1 ELF 63cf000- 6429000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 6435000- 645f000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 686c000- 74d7000 Dwarf radeonsi_dri.so ELF 76d4000- 76d7000 Deferred libllvmx86info.so.3.7 ELF 7de2000- 7f51000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8251000- 8318000 Deferred libllvmipo.so.3.7 ELF 8721000- 87c9000 Deferred libllvmvectorize.so.3.7 ELF 87c9000- 8895000 Deferred libllvmamdgpudesc.so.3.7 ELF 8895000- 88d1000 Deferred libllvmbitwriter.so.3.7 ELF 88d1000- 8a39000 Deferred libllvmx86disassembler.so.3.7 ELF 8a39000- 8adc000 Deferred libllvmx86asmparser.so.3.7 ELF 900c000- 9292000 Deferred libllvmx86codegen.so.3.7 ELF 9392000- 939b000 Deferred libllvmmcdisassembler.so.3.7 ELF 93a7000- 93b3000 Deferred libllvmx86utils.so.3.7 ELF 9ae9000- 9b20000 Deferred libllvmipa.so.3.7 ELF 9ce5000- 9fee000 Deferred libllvmselectiondag.so.3.7 ELF 9fee000- a0bc000 Deferred libllvmasmprinter.so.3.7 ELF a0c4000- a0d4000 Deferred libllvmmcjit.so.3.7 ELF a68a000- ab78000 Deferred libllvmcodegen.so.3.7 ELF ad78000- b03a000 Deferred libllvmscalaropts.so.3.7 ELF b13a000- b14e000 Deferred libllvmtarget.so.3.7 ELF b434000- b475000 Deferred libllvmprofiledata.so.3.7 ELF b475000- b51d000 Deferred libllvminstrumentation.so.3.7 ELF b641000- b730000 Deferred libllvminstcombine.so.3.7 ELF b730000- b77b000 Deferred libllvmx86asmprinter.so.3.7 ELF b77b000- b7a5000 Deferred libllvmexecutionengine.so.3.7 ELF bf47000- bfc5000 Deferred libllvmruntimedyld.so.3.7 ELF bfc5000- c002000 Deferred libllvmmcparser.so.3.7 ELF c3c7000- c52d000 Deferred libllvmtransformutils.so.3.7 ELF c62d000- c78a000 Deferred libllvmx86desc.so.3.7 ELF c78a000- c831000 Deferred libllvmobject.so.3.7 ELF c83d000- c859000 Deferred libgcc_s.so.1 ELF c9fc000- cce9000 Deferred libllvmanalysis.so.3.7 ELF d2f7000- d348000 Deferred libllvmbitreader.so.3.7 ELF d348000- d407000 Deferred libllvmmc.so.3.7 ELF d607000- d612000 Deferred libpciaccess.so.0 ELF d612000- d670000 Deferred libncurses.so.6 ELF d9c6000- dd2c000 Deferred libllvmcore.so.3.7 ELF de2c000- df49000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000197 (D) Z:\home\austin\wine-valgrind\dlls\d3dcompiler_43\tests\d3dcompiler_43_test.exe 00000198 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30797== 16 bytes in 1 blocks are definitely lost in loss record 124 of 1,284 ==30797== at 0x7BC50754: notify_alloc (heap.c:254) ==30797== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30797== by 0x4BD8E46: Direct3DCreate9 (d3d9_main.c:42) ==30797== by 0x4A1E822: init_d3d9 (hlsl.c:88) ==30797== by 0x4A201BB: func_hlsl (hlsl.c:661) ==30797== by 0x4A274DB: run_test (test.h:589) ==30797== by 0x4A27907: main (test.h:671) ==30797== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:init_d3d9 fun:func_hlsl fun:run_test fun:main } ==30797== 13,272 bytes in 1 blocks are definitely lost in loss record 1,274 of 1,284 ==30797== at 0x7BC50754: notify_alloc (heap.c:254) ==30797== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30797== by 0x4CFEC01: wined3d_create (wined3d_main.c:100) ==30797== by 0x4BE76BA: d3d9_init (directx.c:679) ==30797== by 0x4BD8E69: Direct3DCreate9 (d3d9_main.c:45) ==30797== by 0x4A1E822: init_d3d9 (hlsl.c:88) ==30797== by 0x4A201BB: func_hlsl (hlsl.c:661) ==30797== by 0x4A274DB: run_test (test.h:589) ==30797== by 0x4A27907: main (test.h:671) ==30797== { 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 } make[1]: *** [Makefile:238: 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' make: *** [Makefile:6714: 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 0x6992b2c (thread 019e), 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 (0x06992b2c). 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:06992b2c ESP:04b5e3c0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06db2000 ECX:04779840 EDX:00200000 ESI:04702bb8 EDI:04779840 Stack dump: 0x04b5e3c0: 04b5e3fc 0477318c 00000003 00000002 0x04b5e3d0: 00007a50 00007a64 00000082 00007a6c 0x04b5e3e0: 00800000 00000000 00007a44 00007a48 0x04b5e3f0: 00007a4c 00000000 04702398 00007a74 0x04b5e400: 00000000 00000000 00000000 00000000 0x04b5e410: 00000000 00000000 00000000 99e46300 Backtrace: =>0 0x06992b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0697935b in radeonsi_dri.so (+0x63435a) (0x04701730) 2 0x069796e2 in radeonsi_dri.so (+0x6346e1) (0x04b5e558) 3 0x069f9a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b5e558) 4 0x0637479c in radeonsi_dri.so (+0x2f79b) (0x046f8050) 5 0x067ac000 in radeonsi_dri.so (+0x466fff) (0x046f8050) 6 0x067aba3d in radeonsi_dri.so (+0x466a3c) (0x046f8050) 7 0x0666c94b in radeonsi_dri.so (+0x32794a) (0x046f8050) 8 0x06668976 in radeonsi_dri.so (+0x323975) (0x046f7fc8) 9 0x05faa722 in libgl.so.1 (+0x43721) (0x04645350) 10 0x05f7fa42 in libgl.so.1 (+0x18a41) (0x04642e28) 11 0x05f7b60b in libgl.so.1 (+0x1460a) (0x04b5f014) 12 0x05f7b784 glXChooseVisual+0x63() in libgl.so.1 (0x04b5f014) 13 0x059d25cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b5f0e8) 14 0x059d4023 init_opengl+0xfbe(once=0x5a30e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b5f2f8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b5f348) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b5f378) 17 0x059d449e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b5f3a8) 18 0x059dc533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b5f3c8) 19 0x059c7293 X11DRV_wine_get_wgl_driver+0x10(dev=0x5d8c050, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b5f3f8) 20 0x0514b5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b5f428) 21 0x04cb0c4f wined3d_adapter_init+0xe0(adapter=0x5d88aa0, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b5f858) 22 0x04cb1681 wined3d_init+0xa5(wined3d=0x5d88a90, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b5f888) 23 0x04d37c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b5f8e8) 24 0x04be3de4 ddraw_init+0xda(ddraw=0x5d889d8, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04b5fac8) 25 0x04bf743e DDRAW_Create+0x163(guid=(nil), DD=0x4b5fba8, UnkOuter=(nil), iid=0x4c247f4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b5fb28) 26 0x04bf760d DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b5fb68) 27 0x04b750c6 d3drm1_CreateDeviceFromClipper+0xe6(iface=0x5d88980, clipper=0x5d889b0, 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 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b5fe38) 34 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b5fe88) 35 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b5fea8) 36 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b5ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b5ff98) 37 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b5ffb8) 38 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b60000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfedd82b8) 41 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfedd8338) 42 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfedd91e8) 43 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfedd9228) 44 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfedd9764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfedd9278) 45 0x7c000f80 main+0x145(argc=, argv=0xfedd9764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfedd96b8) 46 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06992b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 4d9f000 Dwarf wined3d \-PE 4c50000- 4d9f000 \ wined3d ELF 509f000- 51e4000 Dwarf gdi32 \-PE 50b0000- 51e4000 \ gdi32 ELF 51e4000- 5265000 Deferred advapi32 \-PE 51f0000- 5265000 \ advapi32 ELF 526d000- 53e2000 Deferred user32 \-PE 5280000- 53e2000 \ user32 ELF 54ea000- 5505000 Deferred version \-PE 54f0000- 5505000 \ version ELF 5565000- 561d000 Deferred libfreetype.so.6 ELF 5825000- 583e000 Deferred libz.so.1 ELF 5846000- 5858000 Deferred libbz2.so.1 ELF 5860000- 589e000 Deferred libpng16.so.16 ELF 58a2000- 58df000 Deferred libfontconfig.so.1 ELF 58e7000- 5911000 Deferred libexpat.so.1 ELF 5921000- 592d000 Deferred libxcursor.so.1 ELF 5931000- 5938000 Deferred libxfixes.so.3 ELF 594c000- 594f000 Deferred libxshmfence.so.1 ELF 5967000- 598c000 Deferred imm32 \-PE 5970000- 598c000 \ imm32 ELF 5994000- 5a34000 Dwarf winex11 \-PE 59a0000- 5a34000 \ winex11 ELF 5a48000- 5a4c000 Deferred libxinerama.so.1 ELF 5a50000- 5a56000 Deferred libxxf86vm.so.1 ELF 5a5a000- 5a66000 Deferred libxrender.so.1 ELF 5a6a000- 5a77000 Deferred libxrandr.so.2 ELF 5a7b000- 5a7f000 Deferred libxcomposite.so.1 ELF 5a8c000- 5a9f000 Deferred libxext.so.6 ELF 5aa3000- 5bf4000 Deferred libx11.so.6 ELF 5bfc000- 5c28000 Deferred libxcb.so.1 ELF 5c2c000- 5c30000 Deferred libxau.so.6 ELF 5c30000- 5c37000 Deferred libxdmcp.so.6 ELF 5c3b000- 5c57000 Deferred libbsd.so.0 ELF 5c6d000- 5c70000 Deferred libx11-xcb.so.1 ELF 5ca7000- 5cba000 Deferred libxi.so.6 ELF 5eb4000- 5eba000 Deferred libtxc_dxtn.so ELF 5efd000- 5f25000 Deferred libudev.so.1 ELF 5f2d000- 5f31000 Deferred libxcb-dri3.so.0 ELF 5f35000- 5f39000 Deferred libxcb-present.so.0 ELF 5f39000- 5f41000 Deferred libxcb-sync.so.1 ELF 5f49000- 5f4d000 Deferred libxdamage.so.1 ELF 5f55000- 5f5b000 Deferred libxcb-dri2.so.0 ELF 5f67000- 5fde000 Dwarf libgl.so.1 ELF 602a000- 606a000 Deferred libnettle.so.6 ELF 606a000- 608f000 Deferred libdrm_intel.so.1 ELF 608f000- 6099000 Deferred libdrm_nouveau.so.2 ELF 6099000- 60a7000 Deferred libdrm_radeon.so.1 ELF 60a7000- 60b2000 Deferred libdrm_amdgpu.so.1 ELF 60b6000- 60d3000 Deferred libelf.so.1 ELF 60db000- 60de000 Deferred libllvmamdgpuutils.so.3.7 ELF 60de000- 60fb000 Deferred libxcb-glx.so.0 ELF 62fc000- 6333000 Deferred libglapi.so.0 ELF 6333000- 6345000 Deferred libdrm.so.2 ELF 6345000- 6fb0000 Dwarf radeonsi_dri.so ELF 7195000- 7304000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7308000- 73b0000 Deferred libllvmvectorize.so.3.7 ELF 77b0000- 7877000 Deferred libllvmipo.so.3.7 ELF 7883000- 7886000 Deferred libllvmamdgpuinfo.so.3.7 ELF 848b000- 84e5000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 84e5000- 85b1000 Deferred libllvmamdgpudesc.so.3.7 ELF 85b1000- 85db000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 85db000- 8617000 Deferred libllvmbitwriter.so.3.7 ELF 8617000- 877f000 Deferred libllvmx86disassembler.so.3.7 ELF 877f000- 8822000 Deferred libllvmx86asmparser.so.3.7 ELF 8932000- 8973000 Deferred libllvmprofiledata.so.3.7 ELF 899b000- 89a4000 Deferred libllvmmcdisassembler.so.3.7 ELF 89ac000- 89af000 Deferred libllvmx86info.so.3.7 ELF 8de5000- 906b000 Deferred libllvmx86codegen.so.3.7 ELF 956b000- 9577000 Deferred libllvmx86utils.so.3.7 ELF 957b000- 958b000 Deferred libllvmmcjit.so.3.7 ELF 98c2000- 9990000 Deferred libllvmasmprinter.so.3.7 ELF 9990000- 99c7000 Deferred libllvmipa.so.3.7 ELF 99cb000- 99f5000 Deferred libllvmexecutionengine.so.3.7 ELF 9bbe000- 9ec7000 Deferred libllvmselectiondag.so.3.7 ELF a463000- a951000 Deferred libllvmcodegen.so.3.7 ELF ab51000- ae13000 Deferred libllvmscalaropts.so.3.7 ELF af13000- af27000 Deferred libllvmtarget.so.3.7 ELF b20d000- b2fc000 Deferred libllvminstcombine.so.3.7 ELF b3fc000- b447000 Deferred libllvmx86asmprinter.so.3.7 ELF ba4e000- ba8b000 Deferred libllvmmcparser.so.3.7 ELF bf6d000- c015000 Deferred libllvminstrumentation.so.3.7 ELF c115000- c193000 Deferred libllvmruntimedyld.so.3.7 ELF c193000- c1af000 Deferred libgcc_s.so.1 ELF c1af000- c1ba000 Deferred libpciaccess.so.0 ELF c5a0000- c706000 Deferred libllvmtransformutils.so.3.7 ELF cbd5000- cd32000 Deferred libllvmx86desc.so.3.7 ELF cd32000- d01f000 Deferred libllvmanalysis.so.3.7 ELF d11f000- d1c6000 Deferred libllvmobject.so.3.7 ELF d1c6000- d217000 Deferred libllvmbitreader.so.3.7 ELF d52d000- d5ec000 Deferred libllvmmc.so.3.7 ELF d6ec000- d74a000 Deferred libncurses.so.6 ELF dbfc000- df62000 Deferred libllvmcore.so.3.7 ELF e162000- e27f000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000019d (D) Z:\home\austin\wine-valgrind\dlls\d3drm\tests\d3drm_test.exe 0000019e 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30827== 20 bytes in 1 blocks are definitely lost in loss record 236 of 1,463 ==30827== at 0x7BC50754: notify_alloc (heap.c:254) ==30827== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30827== by 0x4BDFD33: DirectDrawCreateClipper (ddraw.c:3331) ==30827== by 0x4A2D15D: test_Device (d3drm.c:2607) ==30827== by 0x4A45293: func_d3drm (d3drm.c:6545) ==30827== by 0x4A4811D: run_test (test.h:589) ==30827== by 0x4A48549: main (test.h:671) ==30827== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DirectDrawCreateClipper fun:test_Device fun:func_d3drm fun:run_test fun:main } ==30827== 28 bytes in 1 blocks are definitely lost in loss record 481 of 1,463 ==30827== at 0x7BC50754: notify_alloc (heap.c:254) ==30827== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30827== by 0x4B7AAEE: Direct3DRMCreate (d3drm.c:2039) ==30827== by 0x4A2D10D: test_Device (d3drm.c:2604) ==30827== by 0x4A45293: func_d3drm (d3drm.c:6545) ==30827== by 0x4A4811D: run_test (test.h:589) ==30827== by 0x4A48549: main (test.h:671) ==30827== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DRMCreate fun:test_Device fun:func_d3drm fun:run_test fun:main } ==30827== 164 bytes in 1 blocks are definitely lost in loss record 1,188 of 1,463 ==30827== at 0x7BC50754: notify_alloc (heap.c:254) ==30827== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30827== by 0x4BF73D7: DDRAW_Create (main.c:267) ==30827== by 0x4BF760C: DirectDrawCreate (main.c:309) ==30827== by 0x4B750C5: d3drm1_CreateDeviceFromClipper (d3drm.c:378) ==30827== by 0x4A2D255: test_Device (d3drm.c:2614) ==30827== by 0x4A45293: func_d3drm (d3drm.c:6545) ==30827== by 0x4A4811D: run_test (test.h:589) ==30827== by 0x4A48549: main (test.h:671) ==30827== { 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 } make[1]: *** [Makefile:172: 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' make: *** [Makefile:6818: 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 0x6a77b2c (thread 01a4), 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 (0x06a77b2c). 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:06a77b2c ESP:04b0d6c0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06e97000 ECX:0472e720 EDX:00200000 ESI:046b7a98 EDI:0472e720 Stack dump: 0x04b0d6c0: 04b0d6fc 0472806c 00000003 00000002 0x04b0d6d0: 00007a50 00007a64 00000082 00007a6c 0x04b0d6e0: 00800000 00000000 00007a44 00007a48 0x04b0d6f0: 00007a4c 00000000 046b7278 00007a74 0x04b0d700: 00000000 00000000 00000000 00000000 0x04b0d710: 00000000 00000000 00000000 8fc97f00 Backtrace: =>0 0x06a77b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06a5e35b in radeonsi_dri.so (+0x63435a) (0x046b6610) 2 0x06a5e6e2 in radeonsi_dri.so (+0x6346e1) (0x04b0d858) 3 0x06adea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0d858) 4 0x0645979c in radeonsi_dri.so (+0x2f79b) (0x046acf30) 5 0x06891000 in radeonsi_dri.so (+0x466fff) (0x046acf30) 6 0x06890a3d in radeonsi_dri.so (+0x466a3c) (0x046acf30) 7 0x0675194b in radeonsi_dri.so (+0x32794a) (0x046acf30) 8 0x0674d976 in radeonsi_dri.so (+0x323975) (0x046acea8) 9 0x05f12722 in libgl.so.1 (+0x43721) (0x045fa230) 10 0x05ee7a42 in libgl.so.1 (+0x18a41) (0x045f7d08) 11 0x05ee360b in libgl.so.1 (+0x1460a) (0x04b0e314) 12 0x05ee3784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0e314) 13 0x059fc5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0e3e8) 14 0x059fe023 init_opengl+0xfbe(once=0x5a5ae38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0e5f8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0e648) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0e678) 17 0x059fe49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0e6a8) 18 0x05a06533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0e6c8) 19 0x059f1293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f9440, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0e6f8) 20 0x050e15c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0e728) 21 0x04c46c4f wined3d_adapter_init+0xe0(adapter=0x48f5e90, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0eb58) 22 0x04c47681 wined3d_init+0xa5(wined3d=0x48f5e80, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0eb88) 23 0x04ccdc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0ebe8) 24 0x04bc158a dxgi_factory_init+0x44(factory=0x48f5e50, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b0ec18) 25 0x04bc1622 dxgi_factory_create+0x51(riid=0x5e70908, 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 0x05e503f3 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 0x04821f90 create_device+0x95() [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/d3dx10.c:54] in d3dx10_43_test (0x04b0ee08) 29 0x04822022 test_D3DX10UnsetAllDeviceObjects+0x26() [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/d3dx10.c:192] in d3dx10_43_test (0x04b0fcb8) 30 0x04826793 func_d3dx10+0xa() [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/d3dx10.c:793] in d3dx10_43_test (0x04b0fcc8) 31 0x04827548 run_test+0x96(name="d3dx10") [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/../../../include/wine/test.h:589] in d3dx10_43_test (0x04b0fd08) 32 0x04827973 main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx10_43/tests/../../../include/wine/test.h:671] in d3dx10_43_test (0x04b0fdd8) 33 0x04827a04 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx10_43_test (0x04b0fe18) 34 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 35 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 36 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 37 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 38 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 39 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea6a2b8) 42 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea6a338) 43 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea6b1e8) 44 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea6b228) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea6b764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea6b278) 46 0x7c000f80 main+0x145(argc=, argv=0xfea6b764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea6b6b8) 47 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06a77b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482d000 Dwarf d3dx10_43_test \-PE 4820000- 482d000 \ d3dx10_43_test ELF 4844000- 485a000 Deferred d3d10_1 \-PE 4850000- 485a000 \ d3d10_1 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 4d35000 Dwarf wined3d \-PE 4bf0000- 4d35000 \ wined3d ELF 5035000- 517a000 Dwarf gdi32 \-PE 5040000- 517a000 \ gdi32 ELF 5182000- 5203000 Deferred advapi32 \-PE 5190000- 5203000 \ advapi32 ELF 520f000- 5384000 Deferred user32 \-PE 5220000- 5384000 \ user32 ELF 548c000- 54a7000 Deferred version \-PE 5490000- 54a7000 \ version ELF 54b3000- 5537000 Deferred d3dcompiler_43 \-PE 54c0000- 5537000 \ d3dcompiler_43 ELF 5597000- 564f000 Deferred libfreetype.so.6 ELF 5857000- 5870000 Deferred libz.so.1 ELF 5874000- 5886000 Deferred libbz2.so.1 ELF 588e000- 58cc000 Deferred libpng16.so.16 ELF 58d0000- 590d000 Deferred libfontconfig.so.1 ELF 5911000- 593b000 Deferred libexpat.so.1 ELF 5943000- 594f000 Deferred libxcursor.so.1 ELF 5953000- 595a000 Deferred libxfixes.so.3 ELF 5991000- 59b6000 Deferred imm32 \-PE 59a0000- 59b6000 \ imm32 ELF 59be000- 5a5e000 Dwarf winex11 \-PE 59d0000- 5a5e000 \ winex11 ELF 5a6e000- 5a72000 Deferred libxinerama.so.1 ELF 5a76000- 5a7c000 Deferred libxxf86vm.so.1 ELF 5a7c000- 5a88000 Deferred libxrender.so.1 ELF 5a8c000- 5a99000 Deferred libxrandr.so.2 ELF 5a9d000- 5aa1000 Deferred libxcomposite.so.1 ELF 5ab6000- 5ac9000 Deferred libxext.so.6 ELF 5ad1000- 5c22000 Deferred libx11.so.6 ELF 5d2a000- 5d56000 Deferred libxcb.so.1 ELF 5d5e000- 5d62000 Deferred libxau.so.6 ELF 5d66000- 5d6d000 Deferred libxdmcp.so.6 ELF 5d6d000- 5d89000 Deferred libbsd.so.0 ELF 5d9d000- 5da0000 Deferred libxshmfence.so.1 ELF 5da1000- 5da5000 Deferred libxcb-dri3.so.0 ELF 5da5000- 5da9000 Deferred libxcb-present.so.0 ELF 5da9000- 5db1000 Deferred libxcb-sync.so.1 ELF 5db9000- 5dbd000 Deferred libxdamage.so.1 ELF 5dbd000- 5dc0000 Deferred libx11-xcb.so.1 ELF 5dc4000- 5dca000 Deferred libxcb-dri2.so.0 ELF 5dd6000- 5dd9000 Deferred libllvmamdgpuutils.so.3.7 ELF 5dd9000- 5dec000 Deferred libxi.so.6 ELF 5dfc000- 5e02000 Deferred libtxc_dxtn.so ELF 5e3d000- 5e83000 Dwarf d3d10 \-PE 5e40000- 5e83000 \ d3d10 ELF 5e9f000- 5ec7000 Deferred libudev.so.1 ELF 5ecf000- 5f46000 Dwarf libgl.so.1 ELF 5f46000- 5f7d000 Deferred libglapi.so.0 ELF 5f7d000- 5f9a000 Deferred libxcb-glx.so.0 ELF 5f9a000- 5fac000 Deferred libdrm.so.2 ELF 600c000- 604c000 Deferred libnettle.so.6 ELF 6050000- 6075000 Deferred libdrm_intel.so.1 ELF 6079000- 6083000 Deferred libdrm_nouveau.so.2 ELF 6087000- 6095000 Deferred libdrm_radeon.so.1 ELF 6099000- 60a4000 Deferred libdrm_amdgpu.so.1 ELF 60a8000- 60c5000 Deferred libelf.so.1 ELF 60e5000- 60e8000 Deferred libllvmamdgpuinfo.so.3.7 ELF 60ec000- 6116000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 642a000- 7095000 Dwarf radeonsi_dri.so ELF 7292000- 7295000 Deferred libllvmx86info.so.3.7 ELF 7aa0000- 7c0f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8121000- 81e8000 Deferred libllvmipo.so.3.7 ELF 83a6000- 844e000 Deferred libllvmvectorize.so.3.7 ELF 844e000- 84a8000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 84a8000- 8574000 Deferred libllvmamdgpudesc.so.3.7 ELF 8574000- 85b0000 Deferred libllvmbitwriter.so.3.7 ELF 85b0000- 8718000 Deferred libllvmx86disassembler.so.3.7 ELF 8718000- 87bb000 Deferred libllvmx86asmparser.so.3.7 ELF 87bb000- 8889000 Deferred libllvmasmprinter.so.3.7 ELF 8cca000- 8f50000 Deferred libllvmx86codegen.so.3.7 ELF 9068000- 9071000 Deferred libllvmmcdisassembler.so.3.7 ELF 97a7000- 97de000 Deferred libllvmipa.so.3.7 ELF 99a3000- 9cac000 Deferred libllvmselectiondag.so.3.7 ELF a348000- a836000 Deferred libllvmcodegen.so.3.7 ELF a936000- abf8000 Deferred libllvmscalaropts.so.3.7 ELF acf8000- ad04000 Deferred libllvmx86utils.so.3.7 ELF aff2000- b033000 Deferred libllvmprofiledata.so.3.7 ELF b033000- b0db000 Deferred libllvminstrumentation.so.3.7 ELF b0db000- b0eb000 Deferred libllvmmcjit.so.3.7 ELF b1ff000- b2ee000 Deferred libllvminstcombine.so.3.7 ELF b2ee000- b339000 Deferred libllvmx86asmprinter.so.3.7 ELF b339000- b363000 Deferred libllvmexecutionengine.so.3.7 ELF bb05000- bb19000 Deferred libllvmtarget.so.3.7 ELF bb29000- bba7000 Deferred libllvmruntimedyld.so.3.7 ELF bf85000- c0eb000 Deferred libllvmtransformutils.so.3.7 ELF c1eb000- c348000 Deferred libllvmx86desc.so.3.7 ELF c348000- c3ef000 Deferred libllvmobject.so.3.7 ELF c407000- c423000 Deferred libgcc_s.so.1 ELF c5ba000- c8a7000 Deferred libllvmanalysis.so.3.7 ELF cdb5000- cdf2000 Deferred libllvmmcparser.so.3.7 ELF cdf2000- ce43000 Deferred libllvmbitreader.so.3.7 ELF ce43000- cf02000 Deferred libllvmmc.so.3.7 ELF d20a000- d215000 Deferred libpciaccess.so.0 ELF d584000- d8ea000 Deferred libllvmcore.so.3.7 ELF d9ea000- db07000 Deferred libllvmsupport.so.3.7 ELF db07000- db65000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001a3 (D) Z:\home\austin\wine-valgrind\dlls\d3dx10_43\tests\d3dx10_43_test.exe 000001a4 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:171: 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' make: *** [Makefile:7055: 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 0x6fe2b2c (thread 01ac), 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 (0x06fe2b2c). 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:06fe2b2c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07402000 ECX:047a28a8 EDX:00200000 ESI:0472bc20 EDI:047a28a8 Stack dump: 0x04c4e690: 04c4e6cc 0479c1f4 00000003 00000002 0x04c4e6a0: 00007a50 00007a64 00000082 00007a6c 0x04c4e6b0: 00800000 00000000 00007a44 00007a48 0x04c4e6c0: 00007a4c 00000000 0472b400 00007a74 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 5b820900 Backtrace: =>0 0x06fe2b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fc935b in radeonsi_dri.so (+0x63435a) (0x0472a798) 2 0x06fc96e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e828) 3 0x07049a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069c479c in radeonsi_dri.so (+0x2f79b) (0x047210b8) 5 0x06dfc000 in radeonsi_dri.so (+0x466fff) (0x047210b8) 6 0x06dfba3d in radeonsi_dri.so (+0x466a3c) (0x047210b8) 7 0x06cbc94b in radeonsi_dri.so (+0x32794a) (0x047210b8) 8 0x06cb8976 in radeonsi_dri.so (+0x323975) (0x04721030) 9 0x0645f722 in libgl.so.1 (+0x43721) (0x0466e3b8) 10 0x06434a42 in libgl.so.1 (+0x18a41) (0x0466be90) 11 0x0643060b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x06430784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f6f5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f71023 init_opengl+0xfbe(once=0x5fcde38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f7149e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f79533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f64293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019d0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056b7c4f wined3d_adapter_init+0xe0(adapter=0x48fe420, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb28) 22 0x056b8681 wined3d_init+0xa5(wined3d=0x48fe410, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb58) 23 0x0573ec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fbb8) 24 0x0561b6bb d3d9_init+0x4d(d3d9=0x48fe3f0, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x0560ce6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04a224f6 func_core+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/core.c:1235] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8b8a run_test+0x96(name="core") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab8fb6 main+0x245(argc=, argv=0x48d1df8) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfee8b2b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfee8b338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfee8c1e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfee8c228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfee8c764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfee8c278) 42 0x7c000f80 main+0x145(argc=, argv=0xfee8c764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfee8c6b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fe2b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 5563000- 55f0000 Deferred rpcrt4 \-PE 5570000- 55f0000 \ rpcrt4 ELF 55f8000- 563b000 Dwarf d3d9 \-PE 5600000- 563b000 \ d3d9 ELF 5647000- 57a6000 Dwarf wined3d \-PE 5660000- 57a6000 \ wined3d ELF 5b0e000- 5bc6000 Deferred libfreetype.so.6 ELF 5dca000- 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 5ec2000- 5ece000 Deferred libxcursor.so.1 ELF 5ed2000- 5ed9000 Deferred libxfixes.so.3 ELF 5eed000- 5ef0000 Deferred libxshmfence.so.1 ELF 5f04000- 5f29000 Deferred imm32 \-PE 5f10000- 5f29000 \ imm32 ELF 5f31000- 5fd1000 Dwarf winex11 \-PE 5f40000- 5fd1000 \ winex11 ELF 5fe5000- 5fe9000 Deferred libxinerama.so.1 ELF 5fed000- 5ff3000 Deferred libxxf86vm.so.1 ELF 5ff7000- 6003000 Deferred libxrender.so.1 ELF 6007000- 6014000 Deferred libxrandr.so.2 ELF 6018000- 601c000 Deferred libxcomposite.so.1 ELF 6029000- 603c000 Deferred libxext.so.6 ELF 6040000- 6191000 Deferred libx11.so.6 ELF 61a5000- 61a9000 Deferred libxcb-dri3.so.0 ELF 61ad000- 61b1000 Deferred libxcb-present.so.0 ELF 61b5000- 61bd000 Deferred libxcb-sync.so.1 ELF 61c5000- 61c9000 Deferred libxdamage.so.1 ELF 61cd000- 61d0000 Deferred libx11-xcb.so.1 ELF 61d8000- 61de000 Deferred libxcb-dri2.so.0 ELF 61fd000- 6200000 Deferred libllvmamdgpuutils.so.3.7 ELF 6267000- 6284000 Deferred libxcb-glx.so.0 ELF 6295000- 62c1000 Deferred libxcb.so.1 ELF 62c9000- 62cd000 Deferred libxau.so.6 ELF 62cd000- 62d4000 Deferred libxdmcp.so.6 ELF 62d8000- 62f4000 Deferred libbsd.so.0 ELF 62fc000- 6333000 Deferred libglapi.so.0 ELF 6344000- 6357000 Deferred libxi.so.6 ELF 63dc000- 63e2000 Deferred libtxc_dxtn.so ELF 641c000- 6493000 Dwarf libgl.so.1 ELF 6493000- 64a5000 Deferred libdrm.so.2 ELF 64a5000- 64cd000 Deferred libudev.so.1 ELF 64cd000- 650d000 Deferred libnettle.so.6 ELF 650d000- 6532000 Deferred libdrm_intel.so.1 ELF 6536000- 6540000 Deferred libdrm_nouveau.so.2 ELF 6540000- 654e000 Deferred libdrm_radeon.so.1 ELF 6552000- 655d000 Deferred libdrm_amdgpu.so.1 ELF 6561000- 657e000 Deferred libelf.so.1 ELF 6592000- 6595000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6995000- 7600000 Dwarf radeonsi_dri.so ELF 78fd000- 7900000 Deferred libllvmx86info.so.3.7 ELF 800b000- 817a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 837a000- 8441000 Deferred libllvmipo.so.3.7 ELF 8445000- 846f000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 868c000- 8734000 Deferred libllvmvectorize.so.3.7 ELF 8734000- 8770000 Deferred libllvmbitwriter.so.3.7 ELF 894a000- 89a4000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a4000- 8a70000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a70000- 8bd8000 Deferred libllvmx86disassembler.so.3.7 ELF 8bd8000- 8c7b000 Deferred libllvmx86asmparser.so.3.7 ELF 8c7b000- 8f01000 Deferred libllvmx86codegen.so.3.7 ELF 9635000- 9676000 Deferred libllvmprofiledata.so.3.7 ELF 9696000- 96cd000 Deferred libllvmipa.so.3.7 ELF 9b12000- 9be0000 Deferred libllvmasmprinter.so.3.7 ELF 9be0000- 9be9000 Deferred libllvmmcdisassembler.so.3.7 ELF 9bf9000- 9c05000 Deferred libllvmx86utils.so.3.7 ELF 9d12000- 9d22000 Deferred libllvmmcjit.so.3.7 ELF 9d2a000- 9d3e000 Deferred libllvmtarget.so.3.7 ELF 9f0e000- a217000 Deferred libllvmselectiondag.so.3.7 ELF a8b3000- ada1000 Deferred libllvmcodegen.so.3.7 ELF aea1000- b163000 Deferred libllvmscalaropts.so.3.7 ELF b76a000- b859000 Deferred libllvminstcombine.so.3.7 ELF b959000- ba01000 Deferred libllvminstrumentation.so.3.7 ELF c082000- c0cd000 Deferred libllvmx86asmprinter.so.3.7 ELF c0cd000- c0f7000 Deferred libllvmexecutionengine.so.3.7 ELF c0fb000- c117000 Deferred libgcc_s.so.1 ELF c11b000- c126000 Deferred libpciaccess.so.0 ELF c417000- c57d000 Deferred libllvmtransformutils.so.3.7 ELF c67d000- c7da000 Deferred libllvmx86desc.so.3.7 ELF c7da000- c858000 Deferred libllvmruntimedyld.so.3.7 ELF c858000- c895000 Deferred libllvmmcparser.so.3.7 ELF ca4c000- cd39000 Deferred libllvmanalysis.so.3.7 ELF d039000- d0e0000 Deferred libllvmobject.so.3.7 ELF d0e0000- d131000 Deferred libllvmbitreader.so.3.7 ELF d347000- d406000 Deferred libllvmmc.so.3.7 ELF d606000- d664000 Deferred libncurses.so.6 ELF db16000- de7c000 Deferred libllvmcore.so.3.7 ELF e07c000- e199000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001ab (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001ac 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30920== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,466 ==30920== at 0x7BC50754: notify_alloc (heap.c:254) ==30920== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30920== by 0x560CE46: Direct3DCreate9 (d3d9_main.c:42) ==30920== by 0x4A224F5: func_core (core.c:1235) ==30920== by 0x4AB8B89: run_test (test.h:589) ==30920== by 0x4AB8FB5: main (test.h:671) ==30920== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_core fun:run_test fun:main } ==30920== 13,272 bytes in 1 blocks are possibly lost in loss record 1,450 of 1,466 ==30920== at 0x7BC50754: notify_alloc (heap.c:254) ==30920== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30920== by 0x573EC01: wined3d_create (wined3d_main.c:100) ==30920== by 0x561B6BA: d3d9_init (directx.c:679) ==30920== by 0x560CE69: Direct3DCreate9 (d3d9_main.c:45) ==30920== by 0x4A224F5: func_core (core.c:1235) ==30920== by 0x4AB8B89: run_test (test.h:589) ==30920== by 0x4AB8FB5: main (test.h:671) ==30920== { 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 } make[1]: *** [Makefile:218: 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 0x6fd2b2c (thread 01b0), 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 (0x06fd2b2c). 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:06fd2b2c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:073f2000 ECX:047a28a8 EDX:00200000 ESI:0472bc20 EDI:047a28a8 Stack dump: 0x04c4e690: 04c4e6cc 0479c1f4 00000003 00000002 0x04c4e6a0: 00007a50 00007a64 00000082 00007a6c 0x04c4e6b0: 00800000 00000000 00007a44 00007a48 0x04c4e6c0: 00007a4c 00000000 0472b400 00007a74 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 3fb9af00 Backtrace: =>0 0x06fd2b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fb935b in radeonsi_dri.so (+0x63435a) (0x0472a798) 2 0x06fb96e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e828) 3 0x07039a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069b479c in radeonsi_dri.so (+0x2f79b) (0x047210b8) 5 0x06dec000 in radeonsi_dri.so (+0x466fff) (0x047210b8) 6 0x06deba3d in radeonsi_dri.so (+0x466a3c) (0x047210b8) 7 0x06cac94b in radeonsi_dri.so (+0x32794a) (0x047210b8) 8 0x06ca8976 in radeonsi_dri.so (+0x323975) (0x04721030) 9 0x0644f722 in libgl.so.1 (+0x43721) (0x0466e3b8) 10 0x06424a42 in libgl.so.1 (+0x18a41) (0x0466be90) 11 0x0642060b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x06420784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f5f5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f61023 init_opengl+0xfbe(once=0x5fbde38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f6149e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f69533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f54293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019e0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056a7c4f wined3d_adapter_init+0xe0(adapter=0x48fe430, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb28) 22 0x056a8681 wined3d_init+0xa5(wined3d=0x48fe420, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb58) 23 0x0572ec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fbb8) 24 0x0560f6bb d3d9_init+0x4d(d3d9=0x48fe400, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05600e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04a31dbe func_effect+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/effect.c:4302] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8b8a run_test+0x96(name="effect") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab8fb6 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfed5e2b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfed5e338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfed5f1e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfed5f228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfed5f764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfed5f278) 42 0x7c000f80 main+0x145(argc=, argv=0xfed5f764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfed5f6b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fd2b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 555b000- 55e8000 Deferred rpcrt4 \-PE 5570000- 55e8000 \ rpcrt4 ELF 55ec000- 562f000 Dwarf d3d9 \-PE 55f0000- 562f000 \ d3d9 ELF 5637000- 5796000 Dwarf wined3d \-PE 5650000- 5796000 \ wined3d ELF 5afe000- 5bb6000 Deferred libfreetype.so.6 ELF 5dba000- 5dd3000 Deferred libz.so.1 ELF 5ddb000- 5ded000 Deferred libbz2.so.1 ELF 5df1000- 5e2f000 Deferred libpng16.so.16 ELF 5e37000- 5e74000 Deferred libfontconfig.so.1 ELF 5e7c000- 5ea6000 Deferred libexpat.so.1 ELF 5eb2000- 5ebe000 Deferred libxcursor.so.1 ELF 5ec2000- 5ec9000 Deferred libxfixes.so.3 ELF 5edd000- 5ee0000 Deferred libxshmfence.so.1 ELF 5ef4000- 5f19000 Deferred imm32 \-PE 5f00000- 5f19000 \ imm32 ELF 5f21000- 5fc1000 Dwarf winex11 \-PE 5f30000- 5fc1000 \ winex11 ELF 5fd5000- 5fd9000 Deferred libxinerama.so.1 ELF 5fdd000- 5fe3000 Deferred libxxf86vm.so.1 ELF 5fe7000- 5ff3000 Deferred libxrender.so.1 ELF 5ff7000- 6004000 Deferred libxrandr.so.2 ELF 6008000- 600c000 Deferred libxcomposite.so.1 ELF 6019000- 602c000 Deferred libxext.so.6 ELF 6030000- 6181000 Deferred libx11.so.6 ELF 6195000- 6199000 Deferred libxcb-dri3.so.0 ELF 619d000- 61a1000 Deferred libxcb-present.so.0 ELF 61a5000- 61ad000 Deferred libxcb-sync.so.1 ELF 61b5000- 61b9000 Deferred libxdamage.so.1 ELF 61bd000- 61c0000 Deferred libx11-xcb.so.1 ELF 61c8000- 61ce000 Deferred libxcb-dri2.so.0 ELF 61ed000- 61f0000 Deferred libllvmamdgpuutils.so.3.7 ELF 6257000- 6274000 Deferred libxcb-glx.so.0 ELF 6285000- 62b1000 Deferred libxcb.so.1 ELF 62b9000- 62bd000 Deferred libxau.so.6 ELF 62bd000- 62c4000 Deferred libxdmcp.so.6 ELF 62c8000- 62e4000 Deferred libbsd.so.0 ELF 62ec000- 6323000 Deferred libglapi.so.0 ELF 6334000- 6347000 Deferred libxi.so.6 ELF 63cc000- 63d2000 Deferred libtxc_dxtn.so ELF 640c000- 6483000 Dwarf libgl.so.1 ELF 6483000- 6495000 Deferred libdrm.so.2 ELF 6495000- 64bd000 Deferred libudev.so.1 ELF 64bd000- 64fd000 Deferred libnettle.so.6 ELF 64fd000- 6522000 Deferred libdrm_intel.so.1 ELF 6526000- 6530000 Deferred libdrm_nouveau.so.2 ELF 6530000- 653e000 Deferred libdrm_radeon.so.1 ELF 6542000- 654d000 Deferred libdrm_amdgpu.so.1 ELF 6551000- 656e000 Deferred libelf.so.1 ELF 6582000- 6585000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6985000- 75f0000 Dwarf radeonsi_dri.so ELF 78ed000- 78f0000 Deferred libllvmx86info.so.3.7 ELF 7ffb000- 816a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 836a000- 8431000 Deferred libllvmipo.so.3.7 ELF 8435000- 845f000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 867c000- 8724000 Deferred libllvmvectorize.so.3.7 ELF 8724000- 8760000 Deferred libllvmbitwriter.so.3.7 ELF 893a000- 8994000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8994000- 8a60000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a60000- 8bc8000 Deferred libllvmx86disassembler.so.3.7 ELF 8bc8000- 8c6b000 Deferred libllvmx86asmparser.so.3.7 ELF 8c6b000- 8ef1000 Deferred libllvmx86codegen.so.3.7 ELF 9625000- 9666000 Deferred libllvmprofiledata.so.3.7 ELF 9686000- 96bd000 Deferred libllvmipa.so.3.7 ELF 9b02000- 9bd0000 Deferred libllvmasmprinter.so.3.7 ELF 9bd0000- 9bd9000 Deferred libllvmmcdisassembler.so.3.7 ELF 9be9000- 9bf5000 Deferred libllvmx86utils.so.3.7 ELF 9d02000- 9d12000 Deferred libllvmmcjit.so.3.7 ELF 9d1a000- 9d2e000 Deferred libllvmtarget.so.3.7 ELF 9efe000- a207000 Deferred libllvmselectiondag.so.3.7 ELF a8a3000- ad91000 Deferred libllvmcodegen.so.3.7 ELF ae91000- b153000 Deferred libllvmscalaropts.so.3.7 ELF b75a000- b849000 Deferred libllvminstcombine.so.3.7 ELF b949000- b9f1000 Deferred libllvminstrumentation.so.3.7 ELF c072000- c0bd000 Deferred libllvmx86asmprinter.so.3.7 ELF c0bd000- c0e7000 Deferred libllvmexecutionengine.so.3.7 ELF c0eb000- c107000 Deferred libgcc_s.so.1 ELF c10b000- c116000 Deferred libpciaccess.so.0 ELF c407000- c56d000 Deferred libllvmtransformutils.so.3.7 ELF c66d000- c7ca000 Deferred libllvmx86desc.so.3.7 ELF c7ca000- c848000 Deferred libllvmruntimedyld.so.3.7 ELF c848000- c885000 Deferred libllvmmcparser.so.3.7 ELF ca3c000- cd29000 Deferred libllvmanalysis.so.3.7 ELF d029000- d0d0000 Deferred libllvmobject.so.3.7 ELF d0d0000- d121000 Deferred libllvmbitreader.so.3.7 ELF d337000- d3f6000 Deferred libllvmmc.so.3.7 ELF d5f6000- d654000 Deferred libncurses.so.6 ELF db06000- de6c000 Deferred libllvmcore.so.3.7 ELF e06c000- e189000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001af (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001b0 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30940== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,466 ==30940== at 0x7BC50754: notify_alloc (heap.c:254) ==30940== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30940== by 0x5600E46: Direct3DCreate9 (d3d9_main.c:42) ==30940== by 0x4A31DBD: func_effect (effect.c:4302) ==30940== by 0x4AB8B89: run_test (test.h:589) ==30940== by 0x4AB8FB5: main (test.h:671) ==30940== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_effect fun:run_test fun:main } ==30940== 13,272 bytes in 1 blocks are possibly lost in loss record 1,450 of 1,466 ==30940== at 0x7BC50754: notify_alloc (heap.c:254) ==30940== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30940== by 0x572EC01: wined3d_create (wined3d_main.c:100) ==30940== by 0x560F6BA: d3d9_init (directx.c:679) ==30940== by 0x5600E69: Direct3DCreate9 (d3d9_main.c:45) ==30940== by 0x4A31DBD: func_effect (effect.c:4302) ==30940== by 0x4AB8B89: run_test (test.h:589) ==30940== by 0x4AB8FB5: main (test.h:671) ==30940== { 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 } make[1]: *** [Makefile:253: 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 0x6fe7b2c (thread 01b4), 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 (0x06fe7b2c). 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:06fe7b2c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07407000 ECX:047a2940 EDX:00200000 ESI:0472bcb8 EDI:047a2940 Stack dump: 0x04c4e690: 04c4e6cc 0479c28c 00000003 00000002 0x04c4e6a0: 00007a50 00007a64 00000082 00007a6c 0x04c4e6b0: 00800000 00000000 00007a44 00007a48 0x04c4e6c0: 00007a4c 00000000 0472b498 00007a74 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 d8e20400 Backtrace: =>0 0x06fe7b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fce35b in radeonsi_dri.so (+0x63435a) (0x0472a830) 2 0x06fce6e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e828) 3 0x0704ea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069c979c in radeonsi_dri.so (+0x2f79b) (0x04721150) 5 0x06e01000 in radeonsi_dri.so (+0x466fff) (0x04721150) 6 0x06e00a3d in radeonsi_dri.so (+0x466a3c) (0x04721150) 7 0x06cc194b in radeonsi_dri.so (+0x32794a) (0x04721150) 8 0x06cbd976 in radeonsi_dri.so (+0x323975) (0x047210c8) 9 0x06464722 in libgl.so.1 (+0x43721) (0x0466e450) 10 0x06439a42 in libgl.so.1 (+0x18a41) (0x0466bf28) 11 0x0643560b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x06435784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f745cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f76023 init_opengl+0xfbe(once=0x5fd2e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f7649e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f7e533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f69293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019d0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056b3c4f wined3d_adapter_init+0xe0(adapter=0x48fe420, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb28) 22 0x056b4681 wined3d_init+0xa5(wined3d=0x48fe410, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb58) 23 0x0573ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fbb8) 24 0x056176bb d3d9_init+0x4d(d3d9=0x48fe3f0, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05608e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04a32f0e func_line+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/line.c:132] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8b8a run_test+0x96(name="line") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab8fb6 main+0x245(argc=, argv=0x48d1df8) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe80a2b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe80a338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe80b1e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe80b228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe80b764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe80b278) 42 0x7c000f80 main+0x145(argc=, argv=0xfe80b764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe80b6b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fe7b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 555f000- 55ec000 Deferred rpcrt4 \-PE 5570000- 55ec000 \ rpcrt4 ELF 55f4000- 5637000 Dwarf d3d9 \-PE 5600000- 5637000 \ d3d9 ELF 5643000- 57a2000 Dwarf wined3d \-PE 5650000- 57a2000 \ wined3d ELF 5aff000- 5b02000 Deferred libxshmfence.so.1 ELF 5b0a000- 5bc2000 Deferred libfreetype.so.6 ELF 5dc6000- 5ddf000 Deferred libz.so.1 ELF 5de7000- 5df9000 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 5ec2000- 5ece000 Deferred libxcursor.so.1 ELF 5ed2000- 5ed9000 Deferred libxfixes.so.3 ELF 5eed000- 5ef0000 Deferred libx11-xcb.so.1 ELF 5f0d000- 5f32000 Deferred imm32 \-PE 5f10000- 5f32000 \ 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 602a000- 603d000 Deferred libxext.so.6 ELF 6041000- 6192000 Deferred libx11.so.6 ELF 61ae000- 61b2000 Deferred libxcb-dri3.so.0 ELF 61ba000- 61be000 Deferred libxcb-present.so.0 ELF 61be000- 61c6000 Deferred libxcb-sync.so.1 ELF 61d2000- 61d6000 Deferred libxdamage.so.1 ELF 61fd000- 6200000 Deferred libllvmamdgpuutils.so.3.7 ELF 626b000- 6288000 Deferred libxcb-glx.so.0 ELF 6288000- 628e000 Deferred libxcb-dri2.so.0 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 6301000- 6338000 Deferred libglapi.so.0 ELF 6349000- 635c000 Deferred libxi.so.6 ELF 63dd000- 641d000 Deferred libnettle.so.6 ELF 6421000- 6498000 Dwarf libgl.so.1 ELF 6498000- 64aa000 Deferred libdrm.so.2 ELF 64aa000- 64d2000 Deferred libudev.so.1 ELF 64e2000- 64e8000 Deferred libtxc_dxtn.so ELF 651e000- 6543000 Deferred libdrm_intel.so.1 ELF 6547000- 6551000 Deferred libdrm_nouveau.so.2 ELF 6555000- 6563000 Deferred libdrm_radeon.so.1 ELF 6567000- 6572000 Deferred libdrm_amdgpu.so.1 ELF 6576000- 6593000 Deferred libelf.so.1 ELF 6597000- 659a000 Deferred libllvmamdgpuinfo.so.3.7 ELF 699a000- 7605000 Dwarf radeonsi_dri.so ELF 7902000- 7905000 Deferred libllvmx86info.so.3.7 ELF 8010000- 817f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 837f000- 8446000 Deferred libllvmipo.so.3.7 ELF 8452000- 847c000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8691000- 8739000 Deferred libllvmvectorize.so.3.7 ELF 8741000- 877d000 Deferred libllvmbitwriter.so.3.7 ELF 894f000- 89a9000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a9000- 8a75000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a75000- 8bdd000 Deferred libllvmx86disassembler.so.3.7 ELF 8bdd000- 8c80000 Deferred libllvmx86asmparser.so.3.7 ELF 8c80000- 8f06000 Deferred libllvmx86codegen.so.3.7 ELF 964e000- 968f000 Deferred libllvmprofiledata.so.3.7 ELF 96bf000- 96c8000 Deferred libllvmmcdisassembler.so.3.7 ELF 9b17000- 9be5000 Deferred libllvmasmprinter.so.3.7 ELF 9be5000- 9bf1000 Deferred libllvmx86utils.so.3.7 ELF 9bf1000- 9c01000 Deferred libllvmmcjit.so.3.7 ELF 9d17000- 9d4e000 Deferred libllvmipa.so.3.7 ELF 9f13000- a21c000 Deferred libllvmselectiondag.so.3.7 ELF a8b8000- ada6000 Deferred libllvmcodegen.so.3.7 ELF aea6000- b168000 Deferred libllvmscalaropts.so.3.7 ELF b268000- b27c000 Deferred libllvmtarget.so.3.7 ELF b76f000- b85e000 Deferred libllvminstcombine.so.3.7 ELF b95e000- ba06000 Deferred libllvminstrumentation.so.3.7 ELF c087000- c0d2000 Deferred libllvmx86asmprinter.so.3.7 ELF c0d2000- c0fc000 Deferred libllvmexecutionengine.so.3.7 ELF c118000- c134000 Deferred libgcc_s.so.1 ELF c41c000- c582000 Deferred libllvmtransformutils.so.3.7 ELF c682000- c7df000 Deferred libllvmx86desc.so.3.7 ELF c7df000- c85d000 Deferred libllvmruntimedyld.so.3.7 ELF c85d000- c89a000 Deferred libllvmmcparser.so.3.7 ELF c8a2000- c8ad000 Deferred libpciaccess.so.0 ELF ca51000- cd3e000 Deferred libllvmanalysis.so.3.7 ELF d03e000- d0e5000 Deferred libllvmobject.so.3.7 ELF d0e5000- d136000 Deferred libllvmbitreader.so.3.7 ELF d34c000- d40b000 Deferred libllvmmc.so.3.7 ELF d60b000- d669000 Deferred libncurses.so.6 ELF db1b000- de81000 Deferred libllvmcore.so.3.7 ELF e081000- e19e000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001b3 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001b4 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==30976== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,467 ==30976== at 0x7BC50754: notify_alloc (heap.c:254) ==30976== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30976== by 0x5608E46: Direct3DCreate9 (d3d9_main.c:42) ==30976== by 0x4A32F0D: func_line (line.c:132) ==30976== by 0x4AB8B89: run_test (test.h:589) ==30976== by 0x4AB8FB5: main (test.h:671) ==30976== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_line fun:run_test fun:main } ==30976== 13,272 bytes in 1 blocks are possibly lost in loss record 1,451 of 1,467 ==30976== at 0x7BC50754: notify_alloc (heap.c:254) ==30976== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==30976== by 0x573AC01: wined3d_create (wined3d_main.c:100) ==30976== by 0x56176BA: d3d9_init (directx.c:679) ==30976== by 0x5608E69: Direct3DCreate9 (d3d9_main.c:45) ==30976== by 0x4A32F0D: func_line (line.c:132) ==30976== by 0x4AB8B89: run_test (test.h:589) ==30976== by 0x4AB8FB5: main (test.h:671) ==30976== { 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 } make[1]: *** [Makefile:289: 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 0x6ff7b2c (thread 01ba), 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 (0x06ff7b2c). 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:06ff7b2c ESP:04c4e400 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07417000 ECX:047a29d8 EDX:00200000 ESI:0472bd50 EDI:047a29d8 Stack dump: 0x04c4e400: 04c4e43c 0479c324 00000003 00000002 0x04c4e410: 00007a50 00007a64 00000082 00007a6c 0x04c4e420: 00800000 00000000 00007a44 00007a48 0x04c4e430: 00007a4c 00000000 0472b530 00007a74 0x04c4e440: 00000000 00000000 00000000 00000000 0x04c4e450: 00000000 00000000 00000000 5ff36100 Backtrace: =>0 0x06ff7b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fde35b in radeonsi_dri.so (+0x63435a) (0x0472a8c8) 2 0x06fde6e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e598) 3 0x0705ea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e598) 4 0x069d979c in radeonsi_dri.so (+0x2f79b) (0x047211e8) 5 0x06e11000 in radeonsi_dri.so (+0x466fff) (0x047211e8) 6 0x06e10a3d in radeonsi_dri.so (+0x466a3c) (0x047211e8) 7 0x06cd194b in radeonsi_dri.so (+0x32794a) (0x047211e8) 8 0x06ccd976 in radeonsi_dri.so (+0x323975) (0x04721160) 9 0x06474722 in libgl.so.1 (+0x43721) (0x0466e4e8) 10 0x06449a42 in libgl.so.1 (+0x18a41) (0x0466bfc0) 11 0x0644560b in libgl.so.1 (+0x1460a) (0x04c4f054) 12 0x06445784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f054) 13 0x05f845cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f128) 14 0x05f86023 init_opengl+0xfbe(once=0x5fe2e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f338) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f388) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f3b8) 17 0x05f8649e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f3e8) 18 0x05f8e533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f408) 19 0x05f79293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49021c8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f438) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f468) 21 0x056c3c4f wined3d_adapter_init+0xe0(adapter=0x48fec18, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4f898) 22 0x056c4681 wined3d_init+0xa5(wined3d=0x48fec08, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4f8c8) 23 0x0574ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4f928) 24 0x056276bb d3d9_init+0x4d(d3d9=0x48febe8, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4f968) 25 0x05618e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4f9b8) 26 0x04a657a9 new_test_context+0xb4() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/mesh.c:136] in d3dx9_36_test (0x04c4fa48) 27 0x04a697e1 D3DXCreateMeshTest+0xf1() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/mesh.c:1216] in d3dx9_36_test (0x04c4fcb8) 28 0x04a92deb func_mesh+0x23() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/mesh.c:11198] in d3dx9_36_test (0x04c4fcc8) 29 0x04ab8b8a run_test+0x96(name="mesh") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 30 0x04ab8fb6 main+0x245(argc=, argv=0x48d1df8) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 31 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 32 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 33 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 34 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 35 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 36 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 37 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfec522b8) 40 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfec52338) 41 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfec531e8) 42 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfec53228) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfec53764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfec53278) 44 0x7c000f80 main+0x145(argc=, argv=0xfec53764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfec536b8) 45 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06ff7b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5544000- 555f000 Deferred version \-PE 5550000- 555f000 \ version ELF 556b000- 55f8000 Deferred rpcrt4 \-PE 5580000- 55f8000 \ rpcrt4 ELF 5604000- 5647000 Dwarf d3d9 \-PE 5610000- 5647000 \ d3d9 ELF 5653000- 57b2000 Dwarf wined3d \-PE 5660000- 57b2000 \ wined3d ELF 5b0f000- 5b12000 Deferred libxshmfence.so.1 ELF 5b1a000- 5bd2000 Deferred libfreetype.so.6 ELF 5dd6000- 5def000 Deferred libz.so.1 ELF 5df7000- 5e09000 Deferred libbz2.so.1 ELF 5e11000- 5e4f000 Deferred libpng16.so.16 ELF 5e57000- 5e94000 Deferred libfontconfig.so.1 ELF 5e9c000- 5ec6000 Deferred libexpat.so.1 ELF 5ed2000- 5ede000 Deferred libxcursor.so.1 ELF 5ee2000- 5ee9000 Deferred libxfixes.so.3 ELF 5efd000- 5f00000 Deferred libx11-xcb.so.1 ELF 5f1d000- 5f42000 Deferred imm32 \-PE 5f20000- 5f42000 \ imm32 ELF 5f46000- 5fe6000 Dwarf winex11 \-PE 5f50000- 5fe6000 \ winex11 ELF 5ff6000- 5ffa000 Deferred libxinerama.so.1 ELF 5ffe000- 6004000 Deferred libxxf86vm.so.1 ELF 6008000- 6014000 Deferred libxrender.so.1 ELF 6018000- 6025000 Deferred libxrandr.so.2 ELF 6029000- 602d000 Deferred libxcomposite.so.1 ELF 603a000- 604d000 Deferred libxext.so.6 ELF 6051000- 61a2000 Deferred libx11.so.6 ELF 61ce000- 61d2000 Deferred libxcb-dri3.so.0 ELF 61da000- 61de000 Deferred libxcb-present.so.0 ELF 61de000- 61e6000 Deferred libxcb-sync.so.1 ELF 61ea000- 61ee000 Deferred libxdamage.so.1 ELF 620d000- 6210000 Deferred libllvmamdgpuutils.so.3.7 ELF 626b000- 62a2000 Deferred libglapi.so.0 ELF 62a2000- 62a8000 Deferred libxcb-dri2.so.0 ELF 62aa000- 62d6000 Deferred libxcb.so.1 ELF 62de000- 62e2000 Deferred libxau.so.6 ELF 62e6000- 62ed000 Deferred libxdmcp.so.6 ELF 62ed000- 6309000 Deferred libbsd.so.0 ELF 6311000- 632e000 Deferred libxcb-glx.so.0 ELF 632e000- 6340000 Deferred libdrm.so.2 ELF 6359000- 636c000 Deferred libxi.so.6 ELF 63ed000- 642d000 Deferred libnettle.so.6 ELF 6431000- 64a8000 Dwarf libgl.so.1 ELF 64a8000- 64d0000 Deferred libudev.so.1 ELF 64dc000- 64e2000 Deferred libtxc_dxtn.so ELF 651c000- 6541000 Deferred libdrm_intel.so.1 ELF 6545000- 654f000 Deferred libdrm_nouveau.so.2 ELF 654f000- 655d000 Deferred libdrm_radeon.so.1 ELF 6561000- 656c000 Deferred libdrm_amdgpu.so.1 ELF 6570000- 658d000 Deferred libelf.so.1 ELF 69aa000- 7615000 Dwarf radeonsi_dri.so ELF 7906000- 7909000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8020000- 818f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 838f000- 8456000 Deferred libllvmipo.so.3.7 ELF 8456000- 8480000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 848c000- 848f000 Deferred libllvmx86info.so.3.7 ELF 86a1000- 8749000 Deferred libllvmvectorize.so.3.7 ELF 8749000- 8785000 Deferred libllvmbitwriter.so.3.7 ELF 895f000- 89b9000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89b9000- 8a85000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a85000- 8bed000 Deferred libllvmx86disassembler.so.3.7 ELF 8bed000- 8c90000 Deferred libllvmx86asmparser.so.3.7 ELF 8c90000- 8f16000 Deferred libllvmx86codegen.so.3.7 ELF 964a000- 968b000 Deferred libllvmprofiledata.so.3.7 ELF 969f000- 96d6000 Deferred libllvmipa.so.3.7 ELF 96e6000- 96ef000 Deferred libllvmmcdisassembler.so.3.7 ELF 9b27000- 9bf5000 Deferred libllvmasmprinter.so.3.7 ELF 9c05000- 9c11000 Deferred libllvmx86utils.so.3.7 ELF 9d27000- 9d37000 Deferred libllvmmcjit.so.3.7 ELF 9d37000- 9d4b000 Deferred libllvmtarget.so.3.7 ELF 9f23000- a22c000 Deferred libllvmselectiondag.so.3.7 ELF a8c8000- adb6000 Deferred libllvmcodegen.so.3.7 ELF aeb6000- b178000 Deferred libllvmscalaropts.so.3.7 ELF b77f000- b86e000 Deferred libllvminstcombine.so.3.7 ELF b96e000- ba16000 Deferred libllvminstrumentation.so.3.7 ELF c097000- c0e2000 Deferred libllvmx86asmprinter.so.3.7 ELF c0e2000- c10c000 Deferred libllvmexecutionengine.so.3.7 ELF c10c000- c128000 Deferred libgcc_s.so.1 ELF c128000- c133000 Deferred libpciaccess.so.0 ELF c42c000- c592000 Deferred libllvmtransformutils.so.3.7 ELF c692000- c7ef000 Deferred libllvmx86desc.so.3.7 ELF c7ef000- c86d000 Deferred libllvmruntimedyld.so.3.7 ELF c86d000- c8aa000 Deferred libllvmmcparser.so.3.7 ELF ca61000- cd4e000 Deferred libllvmanalysis.so.3.7 ELF d04e000- d0f5000 Deferred libllvmobject.so.3.7 ELF d0f5000- d146000 Deferred libllvmbitreader.so.3.7 ELF d35c000- d41b000 Deferred libllvmmc.so.3.7 ELF d61b000- d679000 Deferred libncurses.so.6 ELF db2b000- de91000 Deferred libllvmcore.so.3.7 ELF e091000- e1ae000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001b9 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001ba 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31006== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,468 ==31006== at 0x7BC50754: notify_alloc (heap.c:254) ==31006== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31006== by 0x5618E46: Direct3DCreate9 (d3d9_main.c:42) ==31006== by 0x4A657A8: new_test_context (mesh.c:136) ==31006== by 0x4A697E0: D3DXCreateMeshTest (mesh.c:1216) ==31006== by 0x4A92DEA: func_mesh (mesh.c:11198) ==31006== by 0x4AB8B89: run_test (test.h:589) ==31006== by 0x4AB8FB5: main (test.h:671) ==31006== { 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 } make[1]: *** [Makefile:359: 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 0x6fe7b2c (thread 01be), 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 (0x06fe7b2c). 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:06fe7b2c ESP:04c4e680 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07407000 ECX:047a29d0 EDX:00200000 ESI:0472bd48 EDI:047a29d0 Stack dump: 0x04c4e680: 04c4e6bc 0479c31c 00000003 00000002 0x04c4e690: 00007a50 00007a64 00000082 00007a6c 0x04c4e6a0: 00800000 00000000 00007a44 00007a48 0x04c4e6b0: 00007a4c 00000000 0472b528 00007a74 0x04c4e6c0: 00000000 00000000 00000000 00000000 0x04c4e6d0: 00000000 00000000 00000000 433ae700 Backtrace: =>0 0x06fe7b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fce35b in radeonsi_dri.so (+0x63435a) (0x0472a8c0) 2 0x06fce6e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e818) 3 0x0704ea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e818) 4 0x069c979c in radeonsi_dri.so (+0x2f79b) (0x047211e0) 5 0x06e01000 in radeonsi_dri.so (+0x466fff) (0x047211e0) 6 0x06e00a3d in radeonsi_dri.so (+0x466a3c) (0x047211e0) 7 0x06cc194b in radeonsi_dri.so (+0x32794a) (0x047211e0) 8 0x06cbd976 in radeonsi_dri.so (+0x323975) (0x04721158) 9 0x06464722 in libgl.so.1 (+0x43721) (0x0466e4e0) 10 0x06439a42 in libgl.so.1 (+0x18a41) (0x0466bfb8) 11 0x0643560b in libgl.so.1 (+0x1460a) (0x04c4f2d4) 12 0x06435784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2d4) 13 0x05f745cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3a8) 14 0x05f76023 init_opengl+0xfbe(once=0x5fd2e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5b8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f608) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f638) 17 0x05f7649e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f668) 18 0x05f7e533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f688) 19 0x05f69293 X11DRV_wine_get_wgl_driver+0x10(dev=0x4903660, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6b8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6e8) 21 0x056b3c4f wined3d_adapter_init+0xe0(adapter=0x49000b0, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb18) 22 0x056b4681 wined3d_init+0xa5(wined3d=0x49000a0, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb48) 23 0x0573ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fba8) 24 0x056176bb d3d9_init+0x4d(d3d9=0x4900080, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbe8) 25 0x05608e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc38) 26 0x04a9da97 test_setting_constants+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/shader.c:1464] in d3dx9_36_test (0x04c4fcb8) 27 0x04aa1507 func_shader+0x23() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/shader.c:6499] in d3dx9_36_test (0x04c4fcc8) 28 0x04ab8b8a run_test+0x96(name="shader") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 29 0x04ab8fb6 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 30 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 31 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 32 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 33 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 34 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 35 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 36 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfecdb2b8) 39 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfecdb338) 40 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfecdc1e8) 41 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfecdc228) 42 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfecdc764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfecdc278) 43 0x7c000f80 main+0x145(argc=, argv=0xfecdc764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfecdc6b8) 44 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fe7b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 555f000- 55ec000 Deferred rpcrt4 \-PE 5570000- 55ec000 \ rpcrt4 ELF 55f4000- 5637000 Dwarf d3d9 \-PE 5600000- 5637000 \ d3d9 ELF 5643000- 57a2000 Dwarf wined3d \-PE 5650000- 57a2000 \ wined3d ELF 5aff000- 5b02000 Deferred libxshmfence.so.1 ELF 5b0a000- 5bc2000 Deferred libfreetype.so.6 ELF 5dc6000- 5ddf000 Deferred libz.so.1 ELF 5de7000- 5df9000 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 5ec2000- 5ece000 Deferred libxcursor.so.1 ELF 5ed2000- 5ed9000 Deferred libxfixes.so.3 ELF 5eed000- 5ef0000 Deferred libx11-xcb.so.1 ELF 5f0d000- 5f32000 Deferred imm32 \-PE 5f10000- 5f32000 \ 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 602a000- 603d000 Deferred libxext.so.6 ELF 6041000- 6192000 Deferred libx11.so.6 ELF 61be000- 61c2000 Deferred libxcb-dri3.so.0 ELF 61ca000- 61ce000 Deferred libxcb-present.so.0 ELF 61ce000- 61d6000 Deferred libxcb-sync.so.1 ELF 61da000- 61de000 Deferred libxdamage.so.1 ELF 61fd000- 6200000 Deferred libllvmamdgpuutils.so.3.7 ELF 625b000- 6292000 Deferred libglapi.so.0 ELF 6292000- 6298000 Deferred libxcb-dri2.so.0 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 6301000- 631e000 Deferred libxcb-glx.so.0 ELF 631e000- 6330000 Deferred libdrm.so.2 ELF 6349000- 635c000 Deferred libxi.so.6 ELF 63dd000- 641d000 Deferred libnettle.so.6 ELF 6421000- 6498000 Dwarf libgl.so.1 ELF 6498000- 64c0000 Deferred libudev.so.1 ELF 64cc000- 64d2000 Deferred libtxc_dxtn.so ELF 650c000- 6531000 Deferred libdrm_intel.so.1 ELF 6535000- 653f000 Deferred libdrm_nouveau.so.2 ELF 653f000- 654d000 Deferred libdrm_radeon.so.1 ELF 6551000- 655c000 Deferred libdrm_amdgpu.so.1 ELF 6560000- 657d000 Deferred libelf.so.1 ELF 699a000- 7605000 Dwarf radeonsi_dri.so ELF 78f6000- 78f9000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8010000- 817f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 837f000- 8446000 Deferred libllvmipo.so.3.7 ELF 8446000- 8470000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 847c000- 847f000 Deferred libllvmx86info.so.3.7 ELF 8691000- 8739000 Deferred libllvmvectorize.so.3.7 ELF 8739000- 8775000 Deferred libllvmbitwriter.so.3.7 ELF 894f000- 89a9000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a9000- 8a75000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a75000- 8bdd000 Deferred libllvmx86disassembler.so.3.7 ELF 8bdd000- 8c80000 Deferred libllvmx86asmparser.so.3.7 ELF 8c80000- 8f06000 Deferred libllvmx86codegen.so.3.7 ELF 963a000- 967b000 Deferred libllvmprofiledata.so.3.7 ELF 968f000- 96c6000 Deferred libllvmipa.so.3.7 ELF 96d6000- 96df000 Deferred libllvmmcdisassembler.so.3.7 ELF 9b17000- 9be5000 Deferred libllvmasmprinter.so.3.7 ELF 9bf5000- 9c01000 Deferred libllvmx86utils.so.3.7 ELF 9d17000- 9d27000 Deferred libllvmmcjit.so.3.7 ELF 9d27000- 9d3b000 Deferred libllvmtarget.so.3.7 ELF 9f13000- a21c000 Deferred libllvmselectiondag.so.3.7 ELF a8b8000- ada6000 Deferred libllvmcodegen.so.3.7 ELF aea6000- b168000 Deferred libllvmscalaropts.so.3.7 ELF b76f000- b85e000 Deferred libllvminstcombine.so.3.7 ELF b95e000- ba06000 Deferred libllvminstrumentation.so.3.7 ELF c087000- c0d2000 Deferred libllvmx86asmprinter.so.3.7 ELF c0d2000- c0fc000 Deferred libllvmexecutionengine.so.3.7 ELF c0fc000- c118000 Deferred libgcc_s.so.1 ELF c118000- c123000 Deferred libpciaccess.so.0 ELF c41c000- c582000 Deferred libllvmtransformutils.so.3.7 ELF c682000- c7df000 Deferred libllvmx86desc.so.3.7 ELF c7df000- c85d000 Deferred libllvmruntimedyld.so.3.7 ELF c85d000- c89a000 Deferred libllvmmcparser.so.3.7 ELF ca51000- cd3e000 Deferred libllvmanalysis.so.3.7 ELF d03e000- d0e5000 Deferred libllvmobject.so.3.7 ELF d0e5000- d136000 Deferred libllvmbitreader.so.3.7 ELF d34c000- d40b000 Deferred libllvmmc.so.3.7 ELF d60b000- d669000 Deferred libncurses.so.6 ELF db1b000- de81000 Deferred libllvmcore.so.3.7 ELF e081000- e19e000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001bd (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001be 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31025== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,469 ==31025== at 0x7BC50754: notify_alloc (heap.c:254) ==31025== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31025== by 0x5608E46: Direct3DCreate9 (d3d9_main.c:42) ==31025== by 0x4A9DA96: test_setting_constants (shader.c:1464) ==31025== by 0x4AA1506: func_shader (shader.c:6499) ==31025== by 0x4AB8B89: run_test (test.h:589) ==31025== by 0x4AB8FB5: main (test.h:671) ==31025== { 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 } ==31025== 13,272 bytes in 1 blocks are possibly lost in loss record 1,452 of 1,469 ==31025== at 0x7BC50754: notify_alloc (heap.c:254) ==31025== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31025== by 0x573AC01: wined3d_create (wined3d_main.c:100) ==31025== by 0x56176BA: d3d9_init (directx.c:679) ==31025== by 0x5608E69: Direct3DCreate9 (d3d9_main.c:45) ==31025== by 0x4A9DA96: test_setting_constants (shader.c:1464) ==31025== by 0x4AA1506: func_shader (shader.c:6499) ==31025== by 0x4AB8B89: run_test (test.h:589) ==31025== by 0x4AB8FB5: main (test.h:671) ==31025== { 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 } make[1]: *** [Makefile:394: 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 0x6fc2b2c (thread 01c2), 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 (0x06fc2b2c). 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:06fc2b2c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:073e2000 ECX:047a29d8 EDX:00200000 ESI:0472bd50 EDI:047a29d8 Stack dump: 0x04c4e690: 04c4e6cc 0479c324 00000003 00000002 0x04c4e6a0: 00007a50 00007a64 00000082 00007a6c 0x04c4e6b0: 00800000 00000000 00007a44 00007a48 0x04c4e6c0: 00007a4c 00000000 0472b530 00007a74 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 ff404600 Backtrace: =>0 0x06fc2b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fa935b in radeonsi_dri.so (+0x63435a) (0x0472a8c8) 2 0x06fa96e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e828) 3 0x07029a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069a479c in radeonsi_dri.so (+0x2f79b) (0x047211e8) 5 0x06ddc000 in radeonsi_dri.so (+0x466fff) (0x047211e8) 6 0x06ddba3d in radeonsi_dri.so (+0x466a3c) (0x047211e8) 7 0x06c9c94b in radeonsi_dri.so (+0x32794a) (0x047211e8) 8 0x06c98976 in radeonsi_dri.so (+0x323975) (0x04721160) 9 0x0643f722 in libgl.so.1 (+0x43721) (0x0466e4e8) 10 0x06414a42 in libgl.so.1 (+0x18a41) (0x0466bfc0) 11 0x0641060b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x06410784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f535cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f55023 init_opengl+0xfbe(once=0x5fb1e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f5549e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f5d533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f48293 X11DRV_wine_get_wgl_driver+0x10(dev=0x4901a28, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x0569fc4f wined3d_adapter_init+0xe0(adapter=0x48fe478, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb28) 22 0x056a0681 wined3d_init+0xa5(wined3d=0x48fe468, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb58) 23 0x05726c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fbb8) 24 0x0560b6bb d3d9_init+0x4d(d3d9=0x48fe448, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x055fce6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04aa8ee3 func_surface+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/surface.c:1418] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8b8a run_test+0x96(name="surface") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab8fb6 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb5c2b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb5c338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb5d1e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb5d228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb5d764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb5d278) 42 0x7c000f80 main+0x145(argc=, argv=0xfeb5d764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb5d6b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fc2b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 555b000- 55e8000 Deferred rpcrt4 \-PE 5570000- 55e8000 \ rpcrt4 ELF 55e8000- 562b000 Dwarf d3d9 \-PE 55f0000- 562b000 \ d3d9 ELF 562f000- 578e000 Dwarf wined3d \-PE 5640000- 578e000 \ wined3d ELF 5af2000- 5baa000 Deferred libfreetype.so.6 ELF 5db2000- 5dcb000 Deferred libz.so.1 ELF 5dd3000- 5de5000 Deferred libbz2.so.1 ELF 5ded000- 5e2b000 Deferred libpng16.so.16 ELF 5e2f000- 5e6c000 Deferred libfontconfig.so.1 ELF 5e70000- 5e9a000 Deferred libexpat.so.1 ELF 5ea6000- 5eb2000 Deferred libxcursor.so.1 ELF 5eba000- 5ec1000 Deferred libxfixes.so.3 ELF 5ed1000- 5ed4000 Deferred libxshmfence.so.1 ELF 5ee8000- 5f0d000 Deferred imm32 \-PE 5ef0000- 5f0d000 \ imm32 ELF 5f15000- 5fb5000 Dwarf winex11 \-PE 5f20000- 5fb5000 \ winex11 ELF 5fc9000- 5fcd000 Deferred libxinerama.so.1 ELF 5fd1000- 5fd7000 Deferred libxxf86vm.so.1 ELF 5fdb000- 5fe7000 Deferred libxrender.so.1 ELF 5feb000- 5ff8000 Deferred libxrandr.so.2 ELF 5ffc000- 6000000 Deferred libxcomposite.so.1 ELF 600d000- 6020000 Deferred libxext.so.6 ELF 6020000- 6171000 Deferred libx11.so.6 ELF 6185000- 6189000 Deferred libxcb-dri3.so.0 ELF 618d000- 6191000 Deferred libxcb-present.so.0 ELF 6195000- 619d000 Deferred libxcb-sync.so.1 ELF 61a1000- 61a5000 Deferred libxdamage.so.1 ELF 61a9000- 61ac000 Deferred libx11-xcb.so.1 ELF 61b4000- 61ba000 Deferred libxcb-dri2.so.0 ELF 61dd000- 61e0000 Deferred libllvmamdgpuutils.so.3.7 ELF 624b000- 6268000 Deferred libxcb-glx.so.0 ELF 6275000- 62a1000 Deferred libxcb.so.1 ELF 62a9000- 62ad000 Deferred libxau.so.6 ELF 62ad000- 62b4000 Deferred libxdmcp.so.6 ELF 62b8000- 62d4000 Deferred libbsd.so.0 ELF 62dc000- 6313000 Deferred libglapi.so.0 ELF 6324000- 6337000 Deferred libxi.so.6 ELF 63bc000- 63c2000 Deferred libtxc_dxtn.so ELF 63fc000- 6473000 Dwarf libgl.so.1 ELF 6473000- 6485000 Deferred libdrm.so.2 ELF 6485000- 64ad000 Deferred libudev.so.1 ELF 64ad000- 64ed000 Deferred libnettle.so.6 ELF 64ed000- 6512000 Deferred libdrm_intel.so.1 ELF 6516000- 6520000 Deferred libdrm_nouveau.so.2 ELF 6520000- 652e000 Deferred libdrm_radeon.so.1 ELF 6532000- 653d000 Deferred libdrm_amdgpu.so.1 ELF 6541000- 655e000 Deferred libelf.so.1 ELF 6572000- 6575000 Deferred libllvmamdgpuinfo.so.3.7 ELF 6975000- 75e0000 Dwarf radeonsi_dri.so ELF 78dd000- 78e0000 Deferred libllvmx86info.so.3.7 ELF 7feb000- 815a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 835a000- 8421000 Deferred libllvmipo.so.3.7 ELF 8425000- 844f000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 866c000- 8714000 Deferred libllvmvectorize.so.3.7 ELF 8714000- 8750000 Deferred libllvmbitwriter.so.3.7 ELF 892a000- 8984000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8984000- 8a50000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a50000- 8bb8000 Deferred libllvmx86disassembler.so.3.7 ELF 8bb8000- 8c5b000 Deferred libllvmx86asmparser.so.3.7 ELF 8c5b000- 8ee1000 Deferred libllvmx86codegen.so.3.7 ELF 9615000- 9656000 Deferred libllvmprofiledata.so.3.7 ELF 9676000- 96ad000 Deferred libllvmipa.so.3.7 ELF 9af2000- 9bc0000 Deferred libllvmasmprinter.so.3.7 ELF 9bc0000- 9bc9000 Deferred libllvmmcdisassembler.so.3.7 ELF 9bd9000- 9be5000 Deferred libllvmx86utils.so.3.7 ELF 9cf2000- 9d02000 Deferred libllvmmcjit.so.3.7 ELF 9d0a000- 9d1e000 Deferred libllvmtarget.so.3.7 ELF 9eee000- a1f7000 Deferred libllvmselectiondag.so.3.7 ELF a893000- ad81000 Deferred libllvmcodegen.so.3.7 ELF ae81000- b143000 Deferred libllvmscalaropts.so.3.7 ELF b74a000- b839000 Deferred libllvminstcombine.so.3.7 ELF b939000- b9e1000 Deferred libllvminstrumentation.so.3.7 ELF c062000- c0ad000 Deferred libllvmx86asmprinter.so.3.7 ELF c0ad000- c0d7000 Deferred libllvmexecutionengine.so.3.7 ELF c0db000- c0f7000 Deferred libgcc_s.so.1 ELF c0fb000- c106000 Deferred libpciaccess.so.0 ELF c3f7000- c55d000 Deferred libllvmtransformutils.so.3.7 ELF c65d000- c7ba000 Deferred libllvmx86desc.so.3.7 ELF c7ba000- c838000 Deferred libllvmruntimedyld.so.3.7 ELF c838000- c875000 Deferred libllvmmcparser.so.3.7 ELF ca2c000- cd19000 Deferred libllvmanalysis.so.3.7 ELF d019000- d0c0000 Deferred libllvmobject.so.3.7 ELF d0c0000- d111000 Deferred libllvmbitreader.so.3.7 ELF d327000- d3e6000 Deferred libllvmmc.so.3.7 ELF d5e6000- d644000 Deferred libncurses.so.6 ELF daf6000- de5c000 Deferred libllvmcore.so.3.7 ELF e05c000- e179000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001c1 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001c2 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31043== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,467 ==31043== at 0x7BC50754: notify_alloc (heap.c:254) ==31043== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31043== by 0x55FCE46: Direct3DCreate9 (d3d9_main.c:42) ==31043== by 0x4AA8EE2: func_surface (surface.c:1418) ==31043== by 0x4AB8B89: run_test (test.h:589) ==31043== by 0x4AB8FB5: main (test.h:671) ==31043== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_surface fun:run_test fun:main } ==31043== 13,272 bytes in 1 blocks are possibly lost in loss record 1,451 of 1,467 ==31043== at 0x7BC50754: notify_alloc (heap.c:254) ==31043== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31043== by 0x5726C01: wined3d_create (wined3d_main.c:100) ==31043== by 0x560B6BA: d3d9_init (directx.c:679) ==31043== by 0x55FCE69: Direct3DCreate9 (d3d9_main.c:45) ==31043== by 0x4AA8EE2: func_surface (surface.c:1418) ==31043== by 0x4AB8B89: run_test (test.h:589) ==31043== by 0x4AB8FB5: main (test.h:671) ==31043== { 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 } make[1]: *** [Makefile:429: 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 0x6fe7b2c (thread 01c6), 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 (0x06fe7b2c). 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:06fe7b2c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07407000 ECX:047a29d8 EDX:00200000 ESI:0472bd50 EDI:047a29d8 Stack dump: 0x04c4e690: 04c4e6cc 0479c324 00000003 00000002 0x04c4e6a0: 00007a50 00007a64 00000082 00007a6c 0x04c4e6b0: 00800000 00000000 00007a44 00007a48 0x04c4e6c0: 00007a4c 00000000 0472b530 00007a74 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 a968a500 Backtrace: =>0 0x06fe7b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fce35b in radeonsi_dri.so (+0x63435a) (0x0472a8c8) 2 0x06fce6e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e828) 3 0x0704ea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069c979c in radeonsi_dri.so (+0x2f79b) (0x047211e8) 5 0x06e01000 in radeonsi_dri.so (+0x466fff) (0x047211e8) 6 0x06e00a3d in radeonsi_dri.so (+0x466a3c) (0x047211e8) 7 0x06cc194b in radeonsi_dri.so (+0x32794a) (0x047211e8) 8 0x06cbd976 in radeonsi_dri.so (+0x323975) (0x04721160) 9 0x06464722 in libgl.so.1 (+0x43721) (0x0466e4e8) 10 0x06439a42 in libgl.so.1 (+0x18a41) (0x0466bfc0) 11 0x0643560b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x06435784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f745cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f76023 init_opengl+0xfbe(once=0x5fd2e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f7649e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f7e533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f69293 X11DRV_wine_get_wgl_driver+0x10(dev=0x4901a28, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056b3c4f wined3d_adapter_init+0xe0(adapter=0x48fe478, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb28) 22 0x056b4681 wined3d_init+0xa5(wined3d=0x48fe468, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb58) 23 0x0573ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fbb8) 24 0x056176bb d3d9_init+0x4d(d3d9=0x48fe448, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05608e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04ab4a96 func_texture+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/texture.c:2248] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8b8a run_test+0x96(name="texture") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab8fb6 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe8022b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe802338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe8031e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe803228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe803764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe803278) 42 0x7c000f80 main+0x145(argc=, argv=0xfe803764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe8036b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fe7b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 555f000- 55ec000 Deferred rpcrt4 \-PE 5570000- 55ec000 \ rpcrt4 ELF 55f4000- 5637000 Dwarf d3d9 \-PE 5600000- 5637000 \ d3d9 ELF 5643000- 57a2000 Dwarf wined3d \-PE 5650000- 57a2000 \ wined3d ELF 5aff000- 5b02000 Deferred libxshmfence.so.1 ELF 5b0a000- 5bc2000 Deferred libfreetype.so.6 ELF 5dc6000- 5ddf000 Deferred libz.so.1 ELF 5de7000- 5df9000 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 5ec2000- 5ece000 Deferred libxcursor.so.1 ELF 5ed2000- 5ed9000 Deferred libxfixes.so.3 ELF 5eed000- 5ef0000 Deferred libx11-xcb.so.1 ELF 5f0d000- 5f32000 Deferred imm32 \-PE 5f10000- 5f32000 \ 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 602a000- 603d000 Deferred libxext.so.6 ELF 6041000- 6192000 Deferred libx11.so.6 ELF 61ae000- 61b2000 Deferred libxcb-dri3.so.0 ELF 61ba000- 61be000 Deferred libxcb-present.so.0 ELF 61be000- 61c6000 Deferred libxcb-sync.so.1 ELF 61d2000- 61d6000 Deferred libxdamage.so.1 ELF 61fd000- 6200000 Deferred libllvmamdgpuutils.so.3.7 ELF 626b000- 6288000 Deferred libxcb-glx.so.0 ELF 6288000- 628e000 Deferred libxcb-dri2.so.0 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 6301000- 6338000 Deferred libglapi.so.0 ELF 6349000- 635c000 Deferred libxi.so.6 ELF 63dd000- 641d000 Deferred libnettle.so.6 ELF 6421000- 6498000 Dwarf libgl.so.1 ELF 6498000- 64aa000 Deferred libdrm.so.2 ELF 64aa000- 64d2000 Deferred libudev.so.1 ELF 64e2000- 64e8000 Deferred libtxc_dxtn.so ELF 651e000- 6543000 Deferred libdrm_intel.so.1 ELF 6547000- 6551000 Deferred libdrm_nouveau.so.2 ELF 6555000- 6563000 Deferred libdrm_radeon.so.1 ELF 6567000- 6572000 Deferred libdrm_amdgpu.so.1 ELF 6576000- 6593000 Deferred libelf.so.1 ELF 6597000- 659a000 Deferred libllvmamdgpuinfo.so.3.7 ELF 699a000- 7605000 Dwarf radeonsi_dri.so ELF 7902000- 7905000 Deferred libllvmx86info.so.3.7 ELF 8010000- 817f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 837f000- 8446000 Deferred libllvmipo.so.3.7 ELF 8452000- 847c000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8691000- 8739000 Deferred libllvmvectorize.so.3.7 ELF 8741000- 877d000 Deferred libllvmbitwriter.so.3.7 ELF 894f000- 89a9000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a9000- 8a75000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a75000- 8bdd000 Deferred libllvmx86disassembler.so.3.7 ELF 8bdd000- 8c80000 Deferred libllvmx86asmparser.so.3.7 ELF 8c80000- 8f06000 Deferred libllvmx86codegen.so.3.7 ELF 964e000- 968f000 Deferred libllvmprofiledata.so.3.7 ELF 96bf000- 96c8000 Deferred libllvmmcdisassembler.so.3.7 ELF 9b17000- 9be5000 Deferred libllvmasmprinter.so.3.7 ELF 9be5000- 9bf1000 Deferred libllvmx86utils.so.3.7 ELF 9bf1000- 9c01000 Deferred libllvmmcjit.so.3.7 ELF 9d17000- 9d4e000 Deferred libllvmipa.so.3.7 ELF 9f13000- a21c000 Deferred libllvmselectiondag.so.3.7 ELF a8b8000- ada6000 Deferred libllvmcodegen.so.3.7 ELF aea6000- b168000 Deferred libllvmscalaropts.so.3.7 ELF b268000- b27c000 Deferred libllvmtarget.so.3.7 ELF b76f000- b85e000 Deferred libllvminstcombine.so.3.7 ELF b95e000- ba06000 Deferred libllvminstrumentation.so.3.7 ELF c087000- c0d2000 Deferred libllvmx86asmprinter.so.3.7 ELF c0d2000- c0fc000 Deferred libllvmexecutionengine.so.3.7 ELF c118000- c134000 Deferred libgcc_s.so.1 ELF c41c000- c582000 Deferred libllvmtransformutils.so.3.7 ELF c682000- c7df000 Deferred libllvmx86desc.so.3.7 ELF c7df000- c85d000 Deferred libllvmruntimedyld.so.3.7 ELF c85d000- c89a000 Deferred libllvmmcparser.so.3.7 ELF c8a2000- c8ad000 Deferred libpciaccess.so.0 ELF ca51000- cd3e000 Deferred libllvmanalysis.so.3.7 ELF d03e000- d0e5000 Deferred libllvmobject.so.3.7 ELF d0e5000- d136000 Deferred libllvmbitreader.so.3.7 ELF d34c000- d40b000 Deferred libllvmmc.so.3.7 ELF d60b000- d669000 Deferred libncurses.so.6 ELF db1b000- de81000 Deferred libllvmcore.so.3.7 ELF e081000- e19e000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001c5 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001c6 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31080== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,467 ==31080== at 0x7BC50754: notify_alloc (heap.c:254) ==31080== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31080== by 0x5608E46: Direct3DCreate9 (d3d9_main.c:42) ==31080== by 0x4AB4A95: func_texture (texture.c:2248) ==31080== by 0x4AB8B89: run_test (test.h:589) ==31080== by 0x4AB8FB5: main (test.h:671) ==31080== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_texture fun:run_test fun:main } ==31080== 13,272 bytes in 1 blocks are possibly lost in loss record 1,451 of 1,467 ==31080== at 0x7BC50754: notify_alloc (heap.c:254) ==31080== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31080== by 0x573AC01: wined3d_create (wined3d_main.c:100) ==31080== by 0x56176BA: d3d9_init (directx.c:679) ==31080== by 0x5608E69: Direct3DCreate9 (d3d9_main.c:45) ==31080== by 0x4AB4A95: func_texture (texture.c:2248) ==31080== by 0x4AB8B89: run_test (test.h:589) ==31080== by 0x4AB8FB5: main (test.h:671) ==31080== { 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 } make[1]: *** [Makefile:465: 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 0x6fe7b2c (thread 01ca), 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 (0x06fe7b2c). 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:06fe7b2c ESP:04c4e690 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07407000 ECX:047a29d8 EDX:00200000 ESI:0472bd50 EDI:047a29d8 Stack dump: 0x04c4e690: 04c4e6cc 0479c324 00000003 00000002 0x04c4e6a0: 00007a50 00007a64 00000082 00007a6c 0x04c4e6b0: 00800000 00000000 00007a44 00007a48 0x04c4e6c0: 00007a4c 00000000 0472b530 00007a74 0x04c4e6d0: 00000000 00000000 00000000 00000000 0x04c4e6e0: 00000000 00000000 00000000 b5c62f00 Backtrace: =>0 0x06fe7b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06fce35b in radeonsi_dri.so (+0x63435a) (0x0472a8c8) 2 0x06fce6e2 in radeonsi_dri.so (+0x6346e1) (0x04c4e828) 3 0x0704ea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c4e828) 4 0x069c979c in radeonsi_dri.so (+0x2f79b) (0x047211e8) 5 0x06e01000 in radeonsi_dri.so (+0x466fff) (0x047211e8) 6 0x06e00a3d in radeonsi_dri.so (+0x466a3c) (0x047211e8) 7 0x06cc194b in radeonsi_dri.so (+0x32794a) (0x047211e8) 8 0x06cbd976 in radeonsi_dri.so (+0x323975) (0x04721160) 9 0x06464722 in libgl.so.1 (+0x43721) (0x0466e4e8) 10 0x06439a42 in libgl.so.1 (+0x18a41) (0x0466bfc0) 11 0x0643560b in libgl.so.1 (+0x1460a) (0x04c4f2e4) 12 0x06435784 glXChooseVisual+0x63() in libgl.so.1 (0x04c4f2e4) 13 0x05f745cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c4f3b8) 14 0x05f76023 init_opengl+0xfbe(once=0x5fd2e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c4f5c8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c4f618) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c4f648) 17 0x05f7649e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c4f678) 18 0x05f7e533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c4f698) 19 0x05f69293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49019e0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c4f6c8) 20 0x054a75c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c4f6f8) 21 0x056b3c4f wined3d_adapter_init+0xe0(adapter=0x48fe430, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c4fb28) 22 0x056b4681 wined3d_init+0xa5(wined3d=0x48fe420, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c4fb58) 23 0x0573ac71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c4fbb8) 24 0x056176bb d3d9_init+0x4d(d3d9=0x48fe400, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04c4fbf8) 25 0x05608e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04c4fc48) 26 0x04ab641d func_volume+0x8d() [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/volume.c:280] in d3dx9_36_test (0x04c4fcc8) 27 0x04ab8b8a run_test+0x96(name="volume") [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:589] in d3dx9_36_test (0x04c4fd08) 28 0x04ab8fb6 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/d3dx9_36/tests/../../../include/wine/test.h:671] in d3dx9_36_test (0x04c4fdd8) 29 0x04ab9043 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in d3dx9_36_test (0x04c4fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c4fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c4fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c4fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c4ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c4ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4c50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfee422b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfee42338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfee431e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfee43228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfee43764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfee43278) 42 0x7c000f80 main+0x145(argc=, argv=0xfee43764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfee436b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06fe7b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4839000 Deferred d3dxof \-PE 4820000- 4839000 \ d3dxof ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 52fb000 Deferred user32 \-PE 51a0000- 52fb000 \ user32 ELF 53fb000- 5540000 Dwarf gdi32 \-PE 5410000- 5540000 \ gdi32 ELF 5540000- 555b000 Deferred version \-PE 5550000- 555b000 \ version ELF 555f000- 55ec000 Deferred rpcrt4 \-PE 5570000- 55ec000 \ rpcrt4 ELF 55f4000- 5637000 Dwarf d3d9 \-PE 5600000- 5637000 \ d3d9 ELF 5643000- 57a2000 Dwarf wined3d \-PE 5650000- 57a2000 \ wined3d ELF 5aff000- 5b02000 Deferred libxshmfence.so.1 ELF 5b0a000- 5bc2000 Deferred libfreetype.so.6 ELF 5dc6000- 5ddf000 Deferred libz.so.1 ELF 5de7000- 5df9000 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 5ec2000- 5ece000 Deferred libxcursor.so.1 ELF 5ed2000- 5ed9000 Deferred libxfixes.so.3 ELF 5eed000- 5ef0000 Deferred libx11-xcb.so.1 ELF 5f0d000- 5f32000 Deferred imm32 \-PE 5f10000- 5f32000 \ 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 602a000- 603d000 Deferred libxext.so.6 ELF 6041000- 6192000 Deferred libx11.so.6 ELF 61ae000- 61b2000 Deferred libxcb-dri3.so.0 ELF 61ba000- 61be000 Deferred libxcb-present.so.0 ELF 61be000- 61c6000 Deferred libxcb-sync.so.1 ELF 61d2000- 61d6000 Deferred libxdamage.so.1 ELF 61fd000- 6200000 Deferred libllvmamdgpuutils.so.3.7 ELF 626b000- 6288000 Deferred libxcb-glx.so.0 ELF 6288000- 628e000 Deferred libxcb-dri2.so.0 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 6301000- 6338000 Deferred libglapi.so.0 ELF 6349000- 635c000 Deferred libxi.so.6 ELF 63dd000- 641d000 Deferred libnettle.so.6 ELF 6421000- 6498000 Dwarf libgl.so.1 ELF 6498000- 64aa000 Deferred libdrm.so.2 ELF 64aa000- 64d2000 Deferred libudev.so.1 ELF 64e2000- 64e8000 Deferred libtxc_dxtn.so ELF 651e000- 6543000 Deferred libdrm_intel.so.1 ELF 6547000- 6551000 Deferred libdrm_nouveau.so.2 ELF 6555000- 6563000 Deferred libdrm_radeon.so.1 ELF 6567000- 6572000 Deferred libdrm_amdgpu.so.1 ELF 6576000- 6593000 Deferred libelf.so.1 ELF 6597000- 659a000 Deferred libllvmamdgpuinfo.so.3.7 ELF 699a000- 7605000 Dwarf radeonsi_dri.so ELF 7902000- 7905000 Deferred libllvmx86info.so.3.7 ELF 8010000- 817f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 837f000- 8446000 Deferred libllvmipo.so.3.7 ELF 8452000- 847c000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8691000- 8739000 Deferred libllvmvectorize.so.3.7 ELF 8741000- 877d000 Deferred libllvmbitwriter.so.3.7 ELF 894f000- 89a9000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a9000- 8a75000 Deferred libllvmamdgpudesc.so.3.7 ELF 8a75000- 8bdd000 Deferred libllvmx86disassembler.so.3.7 ELF 8bdd000- 8c80000 Deferred libllvmx86asmparser.so.3.7 ELF 8c80000- 8f06000 Deferred libllvmx86codegen.so.3.7 ELF 964e000- 968f000 Deferred libllvmprofiledata.so.3.7 ELF 96bf000- 96c8000 Deferred libllvmmcdisassembler.so.3.7 ELF 9b17000- 9be5000 Deferred libllvmasmprinter.so.3.7 ELF 9be5000- 9bf1000 Deferred libllvmx86utils.so.3.7 ELF 9bf1000- 9c01000 Deferred libllvmmcjit.so.3.7 ELF 9d17000- 9d4e000 Deferred libllvmipa.so.3.7 ELF 9f13000- a21c000 Deferred libllvmselectiondag.so.3.7 ELF a8b8000- ada6000 Deferred libllvmcodegen.so.3.7 ELF aea6000- b168000 Deferred libllvmscalaropts.so.3.7 ELF b268000- b27c000 Deferred libllvmtarget.so.3.7 ELF b76f000- b85e000 Deferred libllvminstcombine.so.3.7 ELF b95e000- ba06000 Deferred libllvminstrumentation.so.3.7 ELF c087000- c0d2000 Deferred libllvmx86asmprinter.so.3.7 ELF c0d2000- c0fc000 Deferred libllvmexecutionengine.so.3.7 ELF c118000- c134000 Deferred libgcc_s.so.1 ELF c41c000- c582000 Deferred libllvmtransformutils.so.3.7 ELF c682000- c7df000 Deferred libllvmx86desc.so.3.7 ELF c7df000- c85d000 Deferred libllvmruntimedyld.so.3.7 ELF c85d000- c89a000 Deferred libllvmmcparser.so.3.7 ELF c8a2000- c8ad000 Deferred libpciaccess.so.0 ELF ca51000- cd3e000 Deferred libllvmanalysis.so.3.7 ELF d03e000- d0e5000 Deferred libllvmobject.so.3.7 ELF d0e5000- d136000 Deferred libllvmbitreader.so.3.7 ELF d34c000- d40b000 Deferred libllvmmc.so.3.7 ELF d60b000- d669000 Deferred libncurses.so.6 ELF db1b000- de81000 Deferred libllvmcore.so.3.7 ELF e081000- e19e000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001c9 (D) Z:\home\austin\wine-valgrind\dlls\d3dx9_36\tests\d3dx9_36_test.exe 000001ca 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31102== 16 bytes in 1 blocks are definitely lost in loss record 182 of 1,467 ==31102== at 0x7BC50754: notify_alloc (heap.c:254) ==31102== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31102== by 0x5608E46: Direct3DCreate9 (d3d9_main.c:42) ==31102== by 0x4AB641C: func_volume (volume.c:280) ==31102== by 0x4AB8B89: run_test (test.h:589) ==31102== by 0x4AB8FB5: main (test.h:671) ==31102== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:Direct3DCreate9 fun:func_volume fun:run_test fun:main } ==31102== 13,272 bytes in 1 blocks are possibly lost in loss record 1,451 of 1,467 ==31102== at 0x7BC50754: notify_alloc (heap.c:254) ==31102== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31102== by 0x573AC01: wined3d_create (wined3d_main.c:100) ==31102== by 0x56176BA: d3d9_init (directx.c:679) ==31102== by 0x5608E69: Direct3DCreate9 (d3d9_main.c:45) ==31102== by 0x4AB641C: func_volume (volume.c:280) ==31102== by 0x4AB8B89: run_test (test.h:589) ==31102== by 0x4AB8FB5: main (test.h:671) ==31102== { 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 } make[1]: *** [Makefile:501: 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' make: *** [Makefile:7396: 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 0x6e18b2c (thread 01d2), 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 (0x06e18b2c). 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:06e18b2c ESP:04c8e430 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07238000 ECX:046ed000 EDX:00200000 ESI:04676378 EDI:046ed000 Stack dump: 0x04c8e430: 04c8e46c 046e694c 00000003 00000002 0x04c8e440: 00007a50 00007a64 00000082 00007a6c 0x04c8e450: 00800000 00000000 00007a44 00007a48 0x04c8e460: 00007a4c 00000000 04675b58 00007a74 0x04c8e470: 00000000 00000000 00000000 00000000 0x04c8e480: 00000000 00000000 00000000 53edf800 Backtrace: =>0 0x06e18b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06dff35b in radeonsi_dri.so (+0x63435a) (0x04674ef0) 2 0x06dff6e2 in radeonsi_dri.so (+0x6346e1) (0x04c8e5c8) 3 0x06e7fa6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c8e5c8) 4 0x067fa79c in radeonsi_dri.so (+0x2f79b) (0x0466b810) 5 0x06c32000 in radeonsi_dri.so (+0x466fff) (0x0466b810) 6 0x06c31a3d in radeonsi_dri.so (+0x466a3c) (0x0466b810) 7 0x06af294b in radeonsi_dri.so (+0x32794a) (0x0466b810) 8 0x06aee976 in radeonsi_dri.so (+0x323975) (0x0466b788) 9 0x062ab722 in libgl.so.1 (+0x43721) (0x045b8b10) 10 0x06280a42 in libgl.so.1 (+0x18a41) (0x045b65e8) 11 0x0627c60b in libgl.so.1 (+0x1460a) (0x04c8f084) 12 0x0627c784 glXChooseVisual+0x63() in libgl.so.1 (0x04c8f084) 13 0x05d9d5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c8f158) 14 0x05d9f023 init_opengl+0xfbe(once=0x5dfbe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c8f368) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c8f3b8) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c8f3e8) 17 0x05d9f49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c8f418) 18 0x05da7533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c8f438) 19 0x05d92293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6ab8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c8f468) 20 0x0521a5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c8f498) 21 0x04d7fc4f wined3d_adapter_init+0xe0(adapter=0x48f3508, ordinal=0, wined3d_creation_flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c8f8c8) 22 0x04d80681 wined3d_init+0xa5(wined3d=0x48f34f8, flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c8f8f8) 23 0x04e06c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c8f958) 24 0x04cb2de4 ddraw_init+0xda(ddraw=0x48f3440, flags=0xcb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04c8fb38) 25 0x04cc643e DDRAW_Create+0x163(guid=(nil), DD=0x4b81544, UnkOuter=(nil), iid=0x4b47ba0) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c8fb98) 26 0x04cc673b DirectDrawCreateEx+0xbc(driver_guid=, ddraw=, interface_iid=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:342] in ddraw (0x04c8fbd8) 27 0x04a181f4 CreateDirect3D+0x3a() [/home/austin/wine-valgrind/dlls/ddraw/tests/d3d.c:100] in ddraw_test (0x04c8fc98) 28 0x04a2b7bc func_d3d+0x67() [/home/austin/wine-valgrind/dlls/ddraw/tests/d3d.c:3660] in ddraw_test (0x04c8fcc8) 29 0x04b46efa run_test+0x96(name="d3d") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c8fd08) 30 0x04b47326 main+0x245(argc=, argv=0x48d1dd8) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c8fdd8) 31 0x04b473b3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c8fe18) 32 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c8fe38) 33 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c8fe88) 34 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c8fea8) 35 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c8ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c8ff98) 36 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c8ffb8) 37 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c8ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4c90000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfefb92c8) 40 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfefb9348) 41 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfefba1f8) 42 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfefba238) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfefba774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfefba288) 44 0x7c000f80 main+0x145(argc=, argv=0xfefba774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfefba6c8) 45 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06e18b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b82000 Dwarf ddraw_test \-PE 4a10000- 4b82000 \ ddraw_test ELF 4c90000- 4d0f000 Dwarf ddraw \-PE 4ca0000- 4d0f000 \ ddraw ELF 4d0f000- 4e6e000 Dwarf wined3d \-PE 4d20000- 4e6e000 \ wined3d ELF 516e000- 52b3000 Dwarf gdi32 \-PE 5180000- 52b3000 \ gdi32 ELF 52b3000- 5334000 Deferred advapi32 \-PE 52c0000- 5334000 \ advapi32 ELF 5334000- 54a9000 Deferred user32 \-PE 5350000- 54a9000 \ user32 ELF 55a9000- 55c4000 Deferred version \-PE 55b0000- 55c4000 \ version ELF 55c4000- 5746000 Deferred ole32 \-PE 55e0000- 5746000 \ ole32 ELF 584a000- 58d7000 Deferred rpcrt4 \-PE 5860000- 58d7000 \ rpcrt4 ELF 5937000- 59ef000 Deferred libfreetype.so.6 ELF 5bf7000- 5c10000 Deferred libz.so.1 ELF 5c14000- 5c26000 Deferred libbz2.so.1 ELF 5c2e000- 5c6c000 Deferred libpng16.so.16 ELF 5c70000- 5cad000 Deferred libfontconfig.so.1 ELF 5cb1000- 5cdb000 Deferred libexpat.so.1 ELF 5ce3000- 5cef000 Deferred libxcursor.so.1 ELF 5cf3000- 5cfa000 Deferred libxfixes.so.3 ELF 5d32000- 5d57000 Deferred imm32 \-PE 5d40000- 5d57000 \ imm32 ELF 5d5f000- 5dff000 Dwarf winex11 \-PE 5d70000- 5dff000 \ winex11 ELF 5e0f000- 5e13000 Deferred libxinerama.so.1 ELF 5e17000- 5e1d000 Deferred libxxf86vm.so.1 ELF 5e1d000- 5e29000 Deferred libxrender.so.1 ELF 5e2d000- 5e3a000 Deferred libxrandr.so.2 ELF 5e3e000- 5e42000 Deferred libxcomposite.so.1 ELF 5e57000- 5e6a000 Deferred libxext.so.6 ELF 5e72000- 5fc3000 Deferred libx11.so.6 ELF 5fcb000- 5ff7000 Deferred libxcb.so.1 ELF 5ffb000- 5fff000 Deferred libxau.so.6 ELF 5fff000- 6006000 Deferred libxdmcp.so.6 ELF 600a000- 6026000 Deferred libbsd.so.0 ELF 6031000- 6035000 Deferred libxcb-dri3.so.0 ELF 6035000- 6039000 Deferred libxcb-present.so.0 ELF 6039000- 6041000 Deferred libxcb-sync.so.1 ELF 6045000- 6048000 Deferred libxshmfence.so.1 ELF 6048000- 604c000 Deferred libxdamage.so.1 ELF 604c000- 604f000 Deferred libx11-xcb.so.1 ELF 604f000- 606c000 Deferred libxcb-glx.so.0 ELF 6070000- 6076000 Deferred libxcb-dri2.so.0 ELF 6076000- 6089000 Deferred libxi.so.6 ELF 6089000- 60c0000 Deferred libglapi.so.0 ELF 60c8000- 60cb000 Deferred libllvmamdgpuutils.so.3.7 ELF 61db000- 61e1000 Deferred libtxc_dxtn.so ELF 625c000- 6266000 Deferred libdrm_nouveau.so.2 ELF 6268000- 62df000 Dwarf libgl.so.1 ELF 62df000- 62f1000 Deferred libdrm.so.2 ELF 633d000- 6365000 Deferred libudev.so.1 ELF 6365000- 63a5000 Deferred libnettle.so.6 ELF 63a5000- 63ca000 Deferred libdrm_intel.so.1 ELF 63ce000- 63dc000 Deferred libdrm_radeon.so.1 ELF 63e0000- 63eb000 Deferred libdrm_amdgpu.so.1 ELF 63ef000- 640c000 Deferred libelf.so.1 ELF 6418000- 64c0000 Deferred libllvmvectorize.so.3.7 ELF 64c8000- 64cb000 Deferred libllvmamdgpuinfo.so.3.7 ELF 67cb000- 7436000 Dwarf radeonsi_dri.so ELF 7733000- 7736000 Deferred libllvmx86info.so.3.7 ELF 7e41000- 7fb0000 Deferred libllvmamdgpucodegen.so.3.7 ELF 82b0000- 8377000 Deferred libllvmipo.so.3.7 ELF 8377000- 83a1000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8780000- 87da000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 87da000- 88a6000 Deferred libllvmamdgpudesc.so.3.7 ELF 88a6000- 88e2000 Deferred libllvmbitwriter.so.3.7 ELF 88e2000- 8a4a000 Deferred libllvmx86disassembler.so.3.7 ELF 8a4a000- 8aed000 Deferred libllvmx86asmparser.so.3.7 ELF 8c31000- 8c3a000 Deferred libllvmmcdisassembler.so.3.7 ELF 906b000- 92f1000 Deferred libllvmx86codegen.so.3.7 ELF 93f5000- 9401000 Deferred libllvmx86utils.so.3.7 ELF 9a48000- 9b16000 Deferred libllvmasmprinter.so.3.7 ELF 9b16000- 9b57000 Deferred libllvmprofiledata.so.3.7 ELF 9b57000- 9b67000 Deferred libllvmmcjit.so.3.7 ELF 9b67000- 9b7b000 Deferred libllvmtarget.so.3.7 ELF 9d44000- a04d000 Deferred libllvmselectiondag.so.3.7 ELF a5e9000- aad7000 Deferred libllvmcodegen.so.3.7 ELF acd7000- af99000 Deferred libllvmscalaropts.so.3.7 ELF af99000- b088000 Deferred libllvminstcombine.so.3.7 ELF b7a0000- b7d7000 Deferred libllvmipa.so.3.7 ELF b7d7000- b822000 Deferred libllvmx86asmprinter.so.3.7 ELF b82a000- b835000 Deferred libpciaccess.so.0 ELF bddf000- be87000 Deferred libllvminstrumentation.so.3.7 ELF be87000- beb1000 Deferred libllvmexecutionengine.so.3.7 ELF beb1000- bf2f000 Deferred libllvmruntimedyld.so.3.7 ELF bf2f000- bf4b000 Deferred libgcc_s.so.1 ELF c326000- c48c000 Deferred libllvmtransformutils.so.3.7 ELF c58c000- c6e9000 Deferred libllvmx86desc.so.3.7 ELF c6e9000- c790000 Deferred libllvmobject.so.3.7 ELF c95b000- cc48000 Deferred libllvmanalysis.so.3.7 ELF d156000- d193000 Deferred libllvmmcparser.so.3.7 ELF d193000- d1e4000 Deferred libllvmbitreader.so.3.7 ELF d1e4000- d2a3000 Deferred libllvmmc.so.3.7 ELF d925000- dc8b000 Deferred libllvmcore.so.3.7 ELF dd8b000- dea8000 Deferred libllvmsupport.so.3.7 ELF dfa8000- e006000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001d1 (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001d2 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31157== 164 bytes in 1 blocks are definitely lost in loss record 1,049 of 1,271 ==31157== at 0x7BC50754: notify_alloc (heap.c:254) ==31157== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31157== by 0x4CC63D7: DDRAW_Create (main.c:267) ==31157== by 0x4CC673A: DirectDrawCreateEx (main.c:342) ==31157== by 0x4A181F3: CreateDirect3D (d3d.c:100) ==31157== by 0x4A2B7BB: func_d3d (d3d.c:3660) ==31157== by 0x4B46EF9: run_test (test.h:589) ==31157== by 0x4B47325: main (test.h:671) ==31157== { 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 } make[1]: *** [Makefile:179: 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 0x6dc9b2c (thread 01d6), 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 (0x06dc9b2c). 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:06dc9b2c ESP:04c8e4c0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:071e9000 ECX:046ed000 EDX:00200000 ESI:04676378 EDI:046ed000 Stack dump: 0x04c8e4c0: 04c8e4fc 046e694c 00000003 00000002 0x04c8e4d0: 00007a50 00007a64 00000082 00007a6c 0x04c8e4e0: 00800000 00000000 00007a44 00007a48 0x04c8e4f0: 00007a4c 00000000 04675b58 00007a74 0x04c8e500: 00000000 00000000 00000000 00000000 0x04c8e510: 00000000 00000000 00000000 fb238c00 Backtrace: =>0 0x06dc9b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06db035b in radeonsi_dri.so (+0x63435a) (0x04674ef0) 2 0x06db06e2 in radeonsi_dri.so (+0x6346e1) (0x04c8e658) 3 0x06e30a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c8e658) 4 0x067ab79c in radeonsi_dri.so (+0x2f79b) (0x0466b810) 5 0x06be3000 in radeonsi_dri.so (+0x466fff) (0x0466b810) 6 0x06be2a3d in radeonsi_dri.so (+0x466a3c) (0x0466b810) 7 0x06aa394b in radeonsi_dri.so (+0x32794a) (0x0466b810) 8 0x06a9f976 in radeonsi_dri.so (+0x323975) (0x0466b788) 9 0x0625c722 in libgl.so.1 (+0x43721) (0x045b8b10) 10 0x06231a42 in libgl.so.1 (+0x18a41) (0x045b65e8) 11 0x0622d60b in libgl.so.1 (+0x1460a) (0x04c8f114) 12 0x0622d784 glXChooseVisual+0x63() in libgl.so.1 (0x04c8f114) 13 0x05d525cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c8f1e8) 14 0x05d54023 init_opengl+0xfbe(once=0x5db0e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c8f3f8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c8f448) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c8f478) 17 0x05d5449e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c8f4a8) 18 0x05d5c533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c8f4c8) 19 0x05d47293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6ad8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c8f4f8) 20 0x0521a5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c8f528) 21 0x04d7fc4f wined3d_adapter_init+0xe0(adapter=0x48f3528, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c8f958) 22 0x04d80681 wined3d_init+0xa5(wined3d=0x48f3518, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c8f988) 23 0x04e06c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c8f9e8) 24 0x04cb2de4 ddraw_init+0xda(ddraw=0x48f3460, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04c8fbc8) 25 0x04cc643e DDRAW_Create+0x163(guid=(nil), DD=0x4b81bc4, UnkOuter=(nil), iid=0x4cf37f4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c8fc28) 26 0x04cc660d DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04c8fc68) 27 0x04b29a6e CreateDirectDraw+0x24() [/home/austin/wine-valgrind/dlls/ddraw/tests/dsurface.c:41] in ddraw_test (0x04c8fca8) 28 0x04b3ad31 func_dsurface+0x51() [/home/austin/wine-valgrind/dlls/ddraw/tests/dsurface.c:3241] in ddraw_test (0x04c8fcc8) 29 0x04b46efa run_test+0x96(name="dsurface") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c8fd08) 30 0x04b47326 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c8fdd8) 31 0x04b473b3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c8fe18) 32 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c8fe38) 33 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c8fe88) 34 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c8fea8) 35 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c8ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c8ff98) 36 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c8ffb8) 37 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c8ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4c90000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeabc2b8) 40 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeabc338) 41 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeabd1e8) 42 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeabd228) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeabd764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeabd278) 44 0x7c000f80 main+0x145(argc=, argv=0xfeabd764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeabd6b8) 45 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06dc9b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4818000- 4833000 Deferred version \-PE 4820000- 4833000 \ version ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b82000 Dwarf ddraw_test \-PE 4a10000- 4b82000 \ ddraw_test ELF 4c90000- 4d0f000 Dwarf ddraw \-PE 4ca0000- 4d0f000 \ ddraw ELF 4d0f000- 4e6e000 Dwarf wined3d \-PE 4d20000- 4e6e000 \ wined3d ELF 516e000- 52b3000 Dwarf gdi32 \-PE 5180000- 52b3000 \ gdi32 ELF 52b3000- 5334000 Deferred advapi32 \-PE 52c0000- 5334000 \ advapi32 ELF 5334000- 54a9000 Deferred user32 \-PE 5350000- 54a9000 \ user32 ELF 55a9000- 572b000 Deferred ole32 \-PE 55c0000- 572b000 \ ole32 ELF 582b000- 58b8000 Deferred rpcrt4 \-PE 5840000- 58b8000 \ rpcrt4 ELF 5904000- 59bc000 Deferred libfreetype.so.6 ELF 5bbc000- 5bd5000 Deferred libz.so.1 ELF 5bd5000- 5be7000 Deferred libbz2.so.1 ELF 5beb000- 5c29000 Deferred libpng16.so.16 ELF 5c2d000- 5c6a000 Deferred libfontconfig.so.1 ELF 5c6e000- 5c98000 Deferred libexpat.so.1 ELF 5ca4000- 5cb0000 Deferred libxcursor.so.1 ELF 5cb4000- 5cbb000 Deferred libxfixes.so.3 ELF 5ccf000- 5cd2000 Deferred libxshmfence.so.1 ELF 5ce7000- 5d0c000 Deferred imm32 \-PE 5cf0000- 5d0c000 \ imm32 ELF 5d14000- 5db4000 Dwarf winex11 \-PE 5d20000- 5db4000 \ winex11 ELF 5dc8000- 5dcc000 Deferred libxinerama.so.1 ELF 5dd0000- 5dd6000 Deferred libxxf86vm.so.1 ELF 5dda000- 5de6000 Deferred libxrender.so.1 ELF 5dea000- 5df7000 Deferred libxrandr.so.2 ELF 5dfb000- 5dff000 Deferred libxcomposite.so.1 ELF 5e0c000- 5e1f000 Deferred libxext.so.6 ELF 5e23000- 5f74000 Deferred libx11.so.6 ELF 5f7c000- 5fa8000 Deferred libxcb.so.1 ELF 5fac000- 5fb0000 Deferred libxau.so.6 ELF 5fb0000- 5fb7000 Deferred libxdmcp.so.6 ELF 5fbb000- 5fd7000 Deferred libbsd.so.0 ELF 5fe1000- 5fe5000 Deferred libxcb-dri3.so.0 ELF 5fe5000- 5fe9000 Deferred libxcb-present.so.0 ELF 5fed000- 5ff0000 Deferred libx11-xcb.so.1 ELF 5ff1000- 5ff9000 Deferred libxcb-sync.so.1 ELF 5ffd000- 6001000 Deferred libxdamage.so.1 ELF 6005000- 6022000 Deferred libxcb-glx.so.0 ELF 6027000- 603a000 Deferred libxi.so.6 ELF 603a000- 6071000 Deferred libglapi.so.0 ELF 6071000- 6077000 Deferred libxcb-dri2.so.0 ELF 618c000- 6192000 Deferred libtxc_dxtn.so ELF 620d000- 6217000 Deferred libdrm_nouveau.so.2 ELF 6219000- 6290000 Dwarf libgl.so.1 ELF 6290000- 62a2000 Deferred libdrm.so.2 ELF 62ee000- 6316000 Deferred libudev.so.1 ELF 6316000- 6356000 Deferred libnettle.so.6 ELF 6356000- 637b000 Deferred libdrm_intel.so.1 ELF 637f000- 638d000 Deferred libdrm_radeon.so.1 ELF 6391000- 639c000 Deferred libdrm_amdgpu.so.1 ELF 63a0000- 63bd000 Deferred libelf.so.1 ELF 63d1000- 6479000 Deferred libllvmvectorize.so.3.7 ELF 6479000- 647c000 Deferred libllvmamdgpuutils.so.3.7 ELF 677c000- 73e7000 Dwarf radeonsi_dri.so ELF 76e0000- 76e3000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7df2000- 7f61000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8261000- 8328000 Deferred libllvmipo.so.3.7 ELF 8328000- 8352000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 835e000- 8361000 Deferred libllvmx86info.so.3.7 ELF 8731000- 878b000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 878b000- 8857000 Deferred libllvmamdgpudesc.so.3.7 ELF 8857000- 8893000 Deferred libllvmbitwriter.so.3.7 ELF 8893000- 89fb000 Deferred libllvmx86disassembler.so.3.7 ELF 89fb000- 8a9e000 Deferred libllvmx86asmparser.so.3.7 ELF 901c000- 92a2000 Deferred libllvmx86codegen.so.3.7 ELF 93a2000- 93ab000 Deferred libllvmmcdisassembler.so.3.7 ELF 93b3000- 93bf000 Deferred libllvmx86utils.so.3.7 ELF 99f9000- 9ac7000 Deferred libllvmasmprinter.so.3.7 ELF 9ac7000- 9b08000 Deferred libllvmprofiledata.so.3.7 ELF 9b08000- 9b18000 Deferred libllvmmcjit.so.3.7 ELF 9cf5000- 9ffe000 Deferred libllvmselectiondag.so.3.7 ELF a59a000- aa88000 Deferred libllvmcodegen.so.3.7 ELF ac88000- af4a000 Deferred libllvmscalaropts.so.3.7 ELF af4a000- b039000 Deferred libllvminstcombine.so.3.7 ELF b039000- b04d000 Deferred libllvmtarget.so.3.7 ELF b751000- b788000 Deferred libllvmipa.so.3.7 ELF b788000- b7d3000 Deferred libllvmx86asmprinter.so.3.7 ELF b7e3000- b7ee000 Deferred libpciaccess.so.0 ELF bd90000- be38000 Deferred libllvminstrumentation.so.3.7 ELF be38000- be62000 Deferred libllvmexecutionengine.so.3.7 ELF be62000- bee0000 Deferred libllvmruntimedyld.so.3.7 ELF bee0000- befc000 Deferred libgcc_s.so.1 ELF c2d7000- c43d000 Deferred libllvmtransformutils.so.3.7 ELF c53d000- c69a000 Deferred libllvmx86desc.so.3.7 ELF c69a000- c741000 Deferred libllvmobject.so.3.7 ELF c90c000- cbf9000 Deferred libllvmanalysis.so.3.7 ELF d107000- d144000 Deferred libllvmmcparser.so.3.7 ELF d144000- d195000 Deferred libllvmbitreader.so.3.7 ELF d195000- d254000 Deferred libllvmmc.so.3.7 ELF d8d6000- dc3c000 Deferred libllvmcore.so.3.7 ELF dd3c000- de59000 Deferred libllvmsupport.so.3.7 ELF df59000- dfb7000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001d5 (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001d6 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31195== 164 bytes in 1 blocks are definitely lost in loss record 1,049 of 1,271 ==31195== at 0x7BC50754: notify_alloc (heap.c:254) ==31195== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31195== by 0x4CC63D7: DDRAW_Create (main.c:267) ==31195== by 0x4CC660C: DirectDrawCreate (main.c:309) ==31195== by 0x4B29A6D: CreateDirectDraw (dsurface.c:41) ==31195== by 0x4B3AD30: func_dsurface (dsurface.c:3241) ==31195== by 0x4B46EF9: run_test (test.h:589) ==31195== by 0x4B47325: main (test.h:671) ==31195== { 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 } make[1]: *** [Makefile:371: 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 0x6de8b2c (thread 01da), 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 (0x06de8b2c). 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:06de8b2c ESP:04c8e030 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07208000 ECX:046ed000 EDX:00200000 ESI:04676378 EDI:046ed000 Stack dump: 0x04c8e030: 04c8e06c 046e694c 00000003 00000002 0x04c8e040: 00007a50 00007a64 00000082 00007a6c 0x04c8e050: 00800000 00000000 00007a44 00007a48 0x04c8e060: 00007a4c 00000000 04675b58 00007a74 0x04c8e070: 00000000 00000000 00000000 00000000 0x04c8e080: 00000000 00000000 00000000 ab76c000 Backtrace: =>0 0x06de8b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06dcf35b in radeonsi_dri.so (+0x63435a) (0x04674ef0) 2 0x06dcf6e2 in radeonsi_dri.so (+0x6346e1) (0x04c8e1c8) 3 0x06e4fa6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c8e1c8) 4 0x067ca79c in radeonsi_dri.so (+0x2f79b) (0x0466b810) 5 0x06c02000 in radeonsi_dri.so (+0x466fff) (0x0466b810) 6 0x06c01a3d in radeonsi_dri.so (+0x466a3c) (0x0466b810) 7 0x06ac294b in radeonsi_dri.so (+0x32794a) (0x0466b810) 8 0x06abe976 in radeonsi_dri.so (+0x323975) (0x0466b788) 9 0x0627b722 in libgl.so.1 (+0x43721) (0x045b8b10) 10 0x06250a42 in libgl.so.1 (+0x18a41) (0x045b65e8) 11 0x0624c60b in libgl.so.1 (+0x1460a) (0x04c8ec84) 12 0x0624c784 glXChooseVisual+0x63() in libgl.so.1 (0x04c8ec84) 13 0x05d715cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c8ed58) 14 0x05d73023 init_opengl+0xfbe(once=0x5dcfe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c8ef68) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c8efb8) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c8efe8) 17 0x05d7349e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c8f018) 18 0x05d7b533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c8f038) 19 0x05d66293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6ad8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c8f068) 20 0x0521a5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c8f098) 21 0x04d7fc4f wined3d_adapter_init+0xe0(adapter=0x48f3528, ordinal=0, wined3d_creation_flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c8f4c8) 22 0x04d80681 wined3d_init+0xa5(wined3d=0x48f3518, flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c8f4f8) 23 0x04e06c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c8f558) 24 0x04cb2de4 ddraw_init+0xda(ddraw=0x48f3460, flags=0xcb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04c8f738) 25 0x04cc643e DDRAW_Create+0x163(guid=(nil), DD=0x4c8f808, UnkOuter=(nil), iid=0x4b47ba0) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c8f798) 26 0x04cc673b DirectDrawCreateEx+0xbc(driver_guid=, ddraw=, interface_iid=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:342] in ddraw (0x04c8f7d8) 27 0x04b3af8e test_ddraw_objects+0x43() [/home/austin/wine-valgrind/dlls/ddraw/tests/refcount.c:57] in ddraw_test (0x04c8fcb8) 28 0x04b3d95c func_refcount+0x50() [/home/austin/wine-valgrind/dlls/ddraw/tests/refcount.c:467] in ddraw_test (0x04c8fcc8) 29 0x04b46efa run_test+0x96(name="refcount") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c8fd08) 30 0x04b47326 main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c8fdd8) 31 0x04b473b3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c8fe18) 32 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c8fe38) 33 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c8fe88) 34 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c8fea8) 35 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c8ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c8ff98) 36 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c8ffb8) 37 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c8ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4c90000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe9932b8) 40 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe993338) 41 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe9941e8) 42 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe994228) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe994764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe994278) 44 0x7c000f80 main+0x145(argc=, argv=0xfe994764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe9946b8) 45 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06de8b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b82000 Dwarf ddraw_test \-PE 4a10000- 4b82000 \ ddraw_test ELF 4c90000- 4d0f000 Dwarf ddraw \-PE 4ca0000- 4d0f000 \ ddraw ELF 4d0f000- 4e6e000 Dwarf wined3d \-PE 4d20000- 4e6e000 \ wined3d ELF 516e000- 52b3000 Dwarf gdi32 \-PE 5180000- 52b3000 \ gdi32 ELF 52b3000- 5334000 Deferred advapi32 \-PE 52c0000- 5334000 \ advapi32 ELF 5334000- 54a9000 Deferred user32 \-PE 5350000- 54a9000 \ user32 ELF 55a9000- 55c4000 Deferred version \-PE 55b0000- 55c4000 \ version ELF 55c4000- 5746000 Deferred ole32 \-PE 55e0000- 5746000 \ ole32 ELF 5846000- 58d3000 Deferred rpcrt4 \-PE 5850000- 58d3000 \ rpcrt4 ELF 591f000- 59d7000 Deferred libfreetype.so.6 ELF 5bd7000- 5bf0000 Deferred libz.so.1 ELF 5bf0000- 5c02000 Deferred libbz2.so.1 ELF 5c06000- 5c44000 Deferred libpng16.so.16 ELF 5c48000- 5c85000 Deferred libfontconfig.so.1 ELF 5c89000- 5cb3000 Deferred libexpat.so.1 ELF 5cbf000- 5ccb000 Deferred libxcursor.so.1 ELF 5ccf000- 5cd6000 Deferred libxfixes.so.3 ELF 5cea000- 5ced000 Deferred libxshmfence.so.1 ELF 5d06000- 5d2b000 Deferred imm32 \-PE 5d10000- 5d2b000 \ imm32 ELF 5d33000- 5dd3000 Dwarf winex11 \-PE 5d40000- 5dd3000 \ winex11 ELF 5de7000- 5deb000 Deferred libxinerama.so.1 ELF 5def000- 5df5000 Deferred libxxf86vm.so.1 ELF 5df9000- 5e05000 Deferred libxrender.so.1 ELF 5e09000- 5e16000 Deferred libxrandr.so.2 ELF 5e1a000- 5e1e000 Deferred libxcomposite.so.1 ELF 5e2b000- 5e3e000 Deferred libxext.so.6 ELF 5e42000- 5f93000 Deferred libx11.so.6 ELF 5f9b000- 5fc7000 Deferred libxcb.so.1 ELF 5fcb000- 5fcf000 Deferred libxau.so.6 ELF 5fcf000- 5fd6000 Deferred libxdmcp.so.6 ELF 5fda000- 5ff6000 Deferred libbsd.so.0 ELF 6005000- 6009000 Deferred libxcb-dri3.so.0 ELF 6009000- 600d000 Deferred libxcb-present.so.0 ELF 600d000- 6010000 Deferred libx11-xcb.so.1 ELF 6011000- 6019000 Deferred libxcb-sync.so.1 ELF 6019000- 601d000 Deferred libxdamage.so.1 ELF 601d000- 603a000 Deferred libxcb-glx.so.0 ELF 603e000- 6044000 Deferred libxcb-dri2.so.0 ELF 6046000- 6059000 Deferred libxi.so.6 ELF 6059000- 6090000 Deferred libglapi.so.0 ELF 6098000- 609b000 Deferred libllvmamdgpuutils.so.3.7 ELF 61ab000- 61b1000 Deferred libtxc_dxtn.so ELF 6208000- 6230000 Deferred libudev.so.1 ELF 6238000- 62af000 Dwarf libgl.so.1 ELF 62af000- 62c1000 Deferred libdrm.so.2 ELF 6325000- 6365000 Deferred libnettle.so.6 ELF 6369000- 638e000 Deferred libdrm_intel.so.1 ELF 6392000- 639c000 Deferred libdrm_nouveau.so.2 ELF 63a0000- 63ae000 Deferred libdrm_radeon.so.1 ELF 63b2000- 63bd000 Deferred libdrm_amdgpu.so.1 ELF 63c1000- 63de000 Deferred libelf.so.1 ELF 63ee000- 6496000 Deferred libllvmvectorize.so.3.7 ELF 679b000- 7406000 Dwarf radeonsi_dri.so ELF 76fb000- 76fe000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e11000- 7f80000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8280000- 8347000 Deferred libllvmipo.so.3.7 ELF 8347000- 8371000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 837d000- 8380000 Deferred libllvmx86info.so.3.7 ELF 8750000- 87aa000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 87aa000- 8876000 Deferred libllvmamdgpudesc.so.3.7 ELF 8876000- 88b2000 Deferred libllvmbitwriter.so.3.7 ELF 88b2000- 8a1a000 Deferred libllvmx86disassembler.so.3.7 ELF 8a1a000- 8abd000 Deferred libllvmx86asmparser.so.3.7 ELF 8c09000- 8c12000 Deferred libllvmmcdisassembler.so.3.7 ELF 903b000- 92c1000 Deferred libllvmx86codegen.so.3.7 ELF 93cd000- 93d9000 Deferred libllvmx86utils.so.3.7 ELF 9a18000- 9ae6000 Deferred libllvmasmprinter.so.3.7 ELF 9ae6000- 9b27000 Deferred libllvmprofiledata.so.3.7 ELF 9b27000- 9b37000 Deferred libllvmmcjit.so.3.7 ELF 9d14000- a01d000 Deferred libllvmselectiondag.so.3.7 ELF a5b9000- aaa7000 Deferred libllvmcodegen.so.3.7 ELF aca7000- af69000 Deferred libllvmscalaropts.so.3.7 ELF af69000- b058000 Deferred libllvminstcombine.so.3.7 ELF b058000- b06c000 Deferred libllvmtarget.so.3.7 ELF b770000- b7a7000 Deferred libllvmipa.so.3.7 ELF b7a7000- b7f2000 Deferred libllvmx86asmprinter.so.3.7 ELF b802000- b80d000 Deferred libpciaccess.so.0 ELF bdaf000- be57000 Deferred libllvminstrumentation.so.3.7 ELF be57000- be81000 Deferred libllvmexecutionengine.so.3.7 ELF be81000- beff000 Deferred libllvmruntimedyld.so.3.7 ELF beff000- bf1b000 Deferred libgcc_s.so.1 ELF c2f6000- c45c000 Deferred libllvmtransformutils.so.3.7 ELF c55c000- c6b9000 Deferred libllvmx86desc.so.3.7 ELF c6b9000- c760000 Deferred libllvmobject.so.3.7 ELF c92b000- cc18000 Deferred libllvmanalysis.so.3.7 ELF d126000- d163000 Deferred libllvmmcparser.so.3.7 ELF d163000- d1b4000 Deferred libllvmbitreader.so.3.7 ELF d1b4000- d273000 Deferred libllvmmc.so.3.7 ELF d8f5000- dc5b000 Deferred libllvmcore.so.3.7 ELF dd5b000- de78000 Deferred libllvmsupport.so.3.7 ELF df78000- dfd6000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001d9 (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001da 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31214== 164 bytes in 1 blocks are definitely lost in loss record 1,049 of 1,271 ==31214== at 0x7BC50754: notify_alloc (heap.c:254) ==31214== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31214== by 0x4CC63D7: DDRAW_Create (main.c:267) ==31214== by 0x4CC673A: DirectDrawCreateEx (main.c:342) ==31214== by 0x4B3AF8D: test_ddraw_objects (refcount.c:57) ==31214== by 0x4B3D95B: func_refcount (refcount.c:467) ==31214== by 0x4B46EF9: run_test (test.h:589) ==31214== by 0x4B47325: main (test.h:671) ==31214== { 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 } make[1]: *** [Makefile:404: 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 0x6df8b2c (thread 01de), 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 (0x06df8b2c). 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:06df8b2c ESP:04c8e3e0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:07218000 ECX:046ed000 EDX:00200000 ESI:04676378 EDI:046ed000 Stack dump: 0x04c8e3e0: 04c8e41c 046e694c 00000003 00000002 0x04c8e3f0: 00007a50 00007a64 00000082 00007a6c 0x04c8e400: 00800000 00000000 00007a44 00007a48 0x04c8e410: 00007a4c 00000000 04675b58 00007a74 0x04c8e420: 00000000 00000000 00000000 00000000 0x04c8e430: 00000000 00000000 00000000 4ce43e00 Backtrace: =>0 0x06df8b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x06ddf35b in radeonsi_dri.so (+0x63435a) (0x04674ef0) 2 0x06ddf6e2 in radeonsi_dri.so (+0x6346e1) (0x04c8e578) 3 0x06e5fa6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04c8e578) 4 0x067da79c in radeonsi_dri.so (+0x2f79b) (0x0466b810) 5 0x06c12000 in radeonsi_dri.so (+0x466fff) (0x0466b810) 6 0x06c11a3d in radeonsi_dri.so (+0x466a3c) (0x0466b810) 7 0x06ad294b in radeonsi_dri.so (+0x32794a) (0x0466b810) 8 0x06ace976 in radeonsi_dri.so (+0x323975) (0x0466b788) 9 0x0628b722 in libgl.so.1 (+0x43721) (0x045b8b10) 10 0x06260a42 in libgl.so.1 (+0x18a41) (0x045b65e8) 11 0x0625c60b in libgl.so.1 (+0x1460a) (0x04c8f034) 12 0x0625c784 glXChooseVisual+0x63() in libgl.so.1 (0x04c8f034) 13 0x05d7d5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04c8f108) 14 0x05d7f023 init_opengl+0xfbe(once=0x5ddbe38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04c8f318) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04c8f368) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04c8f398) 17 0x05d7f49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04c8f3c8) 18 0x05d87533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04c8f3e8) 19 0x05d72293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6ac8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04c8f418) 20 0x0521a5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04c8f448) 21 0x04d7fc4f wined3d_adapter_init+0xe0(adapter=0x48f3518, ordinal=0, wined3d_creation_flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04c8f878) 22 0x04d80681 wined3d_init+0xa5(wined3d=0x48f3508, flags=0xcb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04c8f8a8) 23 0x04e06c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04c8f908) 24 0x04cb2de4 ddraw_init+0xda(ddraw=0x48f3450, flags=0xcb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04c8fae8) 25 0x04cc643e DDRAW_Create+0x163(guid=(nil), DD=0x4b81d84, UnkOuter=(nil), iid=0x4b47ba0) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04c8fb48) 26 0x04cc673b DirectDrawCreateEx+0xbc(driver_guid=, ddraw=, interface_iid=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:342] in ddraw (0x04c8fb88) 27 0x04b3dbad createObjects+0xc2() [/home/austin/wine-valgrind/dlls/ddraw/tests/visual.c:96] in ddraw_test (0x04c8fca8) 28 0x04b45f15 func_visual+0x16() [/home/austin/wine-valgrind/dlls/ddraw/tests/visual.c:1647] in ddraw_test (0x04c8fcc8) 29 0x04b46efa run_test+0x96(name="visual") [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:589] in ddraw_test (0x04c8fd08) 30 0x04b47326 main+0x245(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/ddraw/tests/../../../include/wine/test.h:671] in ddraw_test (0x04c8fdd8) 31 0x04b473b3 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddraw_test (0x04c8fe18) 32 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04c8fe38) 33 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04c8fe88) 34 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04c8fea8) 35 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4c8ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04c8ff98) 36 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04c8ffb8) 37 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04c8ffe8) 38 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 39 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4c90000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe8972b8) 40 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe897338) 41 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe8981e8) 42 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe898228) 43 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe898764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe898278) 44 0x7c000f80 main+0x145(argc=, argv=0xfe898764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe8986b8) 45 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06df8b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4b82000 Dwarf ddraw_test \-PE 4a10000- 4b82000 \ ddraw_test ELF 4c90000- 4d0f000 Dwarf ddraw \-PE 4ca0000- 4d0f000 \ ddraw ELF 4d0f000- 4e6e000 Dwarf wined3d \-PE 4d20000- 4e6e000 \ wined3d ELF 516e000- 52b3000 Dwarf gdi32 \-PE 5180000- 52b3000 \ gdi32 ELF 52b3000- 5334000 Deferred advapi32 \-PE 52c0000- 5334000 \ advapi32 ELF 5334000- 54a9000 Deferred user32 \-PE 5350000- 54a9000 \ user32 ELF 55a9000- 55c4000 Deferred version \-PE 55b0000- 55c4000 \ version ELF 55c4000- 5746000 Deferred ole32 \-PE 55e0000- 5746000 \ ole32 ELF 5846000- 58d3000 Deferred rpcrt4 \-PE 5850000- 58d3000 \ rpcrt4 ELF 591f000- 59d7000 Deferred libfreetype.so.6 ELF 5bd7000- 5bf0000 Deferred libz.so.1 ELF 5bf4000- 5c06000 Deferred libbz2.so.1 ELF 5c0e000- 5c4c000 Deferred libpng16.so.16 ELF 5c50000- 5c8d000 Deferred libfontconfig.so.1 ELF 5c91000- 5cbb000 Deferred libexpat.so.1 ELF 5cc3000- 5ccf000 Deferred libxcursor.so.1 ELF 5cd3000- 5cda000 Deferred libxfixes.so.3 ELF 5d12000- 5d37000 Deferred imm32 \-PE 5d20000- 5d37000 \ imm32 ELF 5d3f000- 5ddf000 Dwarf winex11 \-PE 5d50000- 5ddf000 \ winex11 ELF 5def000- 5df3000 Deferred libxinerama.so.1 ELF 5df7000- 5dfd000 Deferred libxxf86vm.so.1 ELF 5dfd000- 5e09000 Deferred libxrender.so.1 ELF 5e0d000- 5e1a000 Deferred libxrandr.so.2 ELF 5e1e000- 5e22000 Deferred libxcomposite.so.1 ELF 5e37000- 5e4a000 Deferred libxext.so.6 ELF 5e52000- 5fa3000 Deferred libx11.so.6 ELF 5fab000- 5fd7000 Deferred libxcb.so.1 ELF 5fdb000- 5fdf000 Deferred libxau.so.6 ELF 5fdf000- 5fe6000 Deferred libxdmcp.so.6 ELF 5fea000- 6006000 Deferred libbsd.so.0 ELF 6011000- 6015000 Deferred libxcb-dri3.so.0 ELF 6015000- 6019000 Deferred libxcb-present.so.0 ELF 6019000- 6021000 Deferred libxcb-sync.so.1 ELF 6025000- 6028000 Deferred libxshmfence.so.1 ELF 6028000- 602c000 Deferred libxdamage.so.1 ELF 602c000- 602f000 Deferred libx11-xcb.so.1 ELF 602f000- 604c000 Deferred libxcb-glx.so.0 ELF 6050000- 6056000 Deferred libxcb-dri2.so.0 ELF 6056000- 6069000 Deferred libxi.so.6 ELF 6069000- 60a0000 Deferred libglapi.so.0 ELF 60a8000- 60ab000 Deferred libllvmamdgpuutils.so.3.7 ELF 61bb000- 61c1000 Deferred libtxc_dxtn.so ELF 6218000- 6240000 Deferred libudev.so.1 ELF 6248000- 62bf000 Dwarf libgl.so.1 ELF 62bf000- 62d1000 Deferred libdrm.so.2 ELF 6335000- 6375000 Deferred libnettle.so.6 ELF 6379000- 639e000 Deferred libdrm_intel.so.1 ELF 63a2000- 63ac000 Deferred libdrm_nouveau.so.2 ELF 63b0000- 63be000 Deferred libdrm_radeon.so.1 ELF 63c2000- 63cd000 Deferred libdrm_amdgpu.so.1 ELF 63d1000- 63ee000 Deferred libelf.so.1 ELF 63fe000- 64a6000 Deferred libllvmvectorize.so.3.7 ELF 67ab000- 7416000 Dwarf radeonsi_dri.so ELF 770b000- 770e000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e21000- 7f90000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8290000- 8357000 Deferred libllvmipo.so.3.7 ELF 8357000- 8381000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 838d000- 8390000 Deferred libllvmx86info.so.3.7 ELF 8760000- 87ba000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 87ba000- 8886000 Deferred libllvmamdgpudesc.so.3.7 ELF 8886000- 88c2000 Deferred libllvmbitwriter.so.3.7 ELF 88c2000- 8a2a000 Deferred libllvmx86disassembler.so.3.7 ELF 8a2a000- 8acd000 Deferred libllvmx86asmparser.so.3.7 ELF 8c19000- 8c22000 Deferred libllvmmcdisassembler.so.3.7 ELF 904b000- 92d1000 Deferred libllvmx86codegen.so.3.7 ELF 93dd000- 93e9000 Deferred libllvmx86utils.so.3.7 ELF 9a28000- 9af6000 Deferred libllvmasmprinter.so.3.7 ELF 9af6000- 9b37000 Deferred libllvmprofiledata.so.3.7 ELF 9b37000- 9b47000 Deferred libllvmmcjit.so.3.7 ELF 9d24000- a02d000 Deferred libllvmselectiondag.so.3.7 ELF a5c9000- aab7000 Deferred libllvmcodegen.so.3.7 ELF acb7000- af79000 Deferred libllvmscalaropts.so.3.7 ELF af79000- b068000 Deferred libllvminstcombine.so.3.7 ELF b068000- b07c000 Deferred libllvmtarget.so.3.7 ELF b780000- b7b7000 Deferred libllvmipa.so.3.7 ELF b7b7000- b802000 Deferred libllvmx86asmprinter.so.3.7 ELF b812000- b81d000 Deferred libpciaccess.so.0 ELF bdbf000- be67000 Deferred libllvminstrumentation.so.3.7 ELF be67000- be91000 Deferred libllvmexecutionengine.so.3.7 ELF be91000- bf0f000 Deferred libllvmruntimedyld.so.3.7 ELF bf0f000- bf2b000 Deferred libgcc_s.so.1 ELF c306000- c46c000 Deferred libllvmtransformutils.so.3.7 ELF c56c000- c6c9000 Deferred libllvmx86desc.so.3.7 ELF c6c9000- c770000 Deferred libllvmobject.so.3.7 ELF c93b000- cc28000 Deferred libllvmanalysis.so.3.7 ELF d136000- d173000 Deferred libllvmmcparser.so.3.7 ELF d173000- d1c4000 Deferred libllvmbitreader.so.3.7 ELF d1c4000- d283000 Deferred libllvmmc.so.3.7 ELF d905000- dc6b000 Deferred libllvmcore.so.3.7 ELF dd6b000- de88000 Deferred libllvmsupport.so.3.7 ELF df88000- dfe6000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001dd (D) Z:\home\austin\wine-valgrind\dlls\ddraw\tests\ddraw_test.exe 000001de 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31232== 164 bytes in 1 blocks are definitely lost in loss record 1,049 of 1,271 ==31232== at 0x7BC50754: notify_alloc (heap.c:254) ==31232== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31232== by 0x4CC63D7: DDRAW_Create (main.c:267) ==31232== by 0x4CC673A: DirectDrawCreateEx (main.c:342) ==31232== by 0x4B3DBAC: createObjects (visual.c:96) ==31232== by 0x4B45F14: func_visual (visual.c:1647) ==31232== by 0x4B46EF9: run_test (test.h:589) ==31232== by 0x4B47325: main (test.h:671) ==31232== { 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 } make[1]: *** [Makefile:436: visual.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ddraw/tests' make: *** [Makefile:7754: 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 0x68a7b2c (thread 01e2), 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 (0x068a7b2c). 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:068a7b2c ESP:04b0e3d0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06cc7000 ECX:046dca58 EDX:00200000 ESI:04665dd0 EDI:046dca58 Stack dump: 0x04b0e3d0: 04b0e40c 046d63a4 00000003 00000002 0x04b0e3e0: 00007a50 00007a64 00000082 00007a6c 0x04b0e3f0: 00800000 00000000 00007a44 00007a48 0x04b0e400: 00007a4c 00000000 046655b0 00007a74 0x04b0e410: 00000000 00000000 00000000 00000000 0x04b0e420: 00000000 00000000 00000000 dc7a2300 Backtrace: =>0 0x068a7b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0688e35b in radeonsi_dri.so (+0x63435a) (0x04664948) 2 0x0688e6e2 in radeonsi_dri.so (+0x6346e1) (0x04b0e568) 3 0x0690ea6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e568) 4 0x0628979c in radeonsi_dri.so (+0x2f79b) (0x0465b268) 5 0x066c1000 in radeonsi_dri.so (+0x466fff) (0x0465b268) 6 0x066c0a3d in radeonsi_dri.so (+0x466a3c) (0x0465b268) 7 0x0658194b in radeonsi_dri.so (+0x32794a) (0x0465b268) 8 0x0657d976 in radeonsi_dri.so (+0x323975) (0x0465b1e0) 9 0x05cf8722 in libgl.so.1 (+0x43721) (0x045a8568) 10 0x05ccda42 in libgl.so.1 (+0x18a41) (0x045a6040) 11 0x05cc960b in libgl.so.1 (+0x1460a) (0x04b0f024) 12 0x05cc9784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0f024) 13 0x0592c5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0f0f8) 14 0x0592e023 init_opengl+0xfbe(once=0x598ae38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f308) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f358) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f388) 17 0x0592e49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f3b8) 18 0x05936533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f3d8) 19 0x05921293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6d38, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f408) 20 0x04bbc5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f438) 21 0x05216c4f wined3d_adapter_init+0xe0(adapter=0x48f3788, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0f868) 22 0x05217681 wined3d_init+0xa5(wined3d=0x48f3778, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0f898) 23 0x0529dc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0f8f8) 24 0x05141de4 ddraw_init+0xda(ddraw=0x48f36c0, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04b0fad8) 25 0x0515543e DDRAW_Create+0x163(guid=(nil), DD=0x4b0fbc8, UnkOuter=(nil), iid=0x51827f4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b0fb38) 26 0x0515560d DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b0fb78) 27 0x050fdf80 ddrawex_factory_CreateDirectDraw+0x172(iface=0x48f3680, 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 0x04821dd2 createDD+0x41() [/home/austin/wine-valgrind/dlls/ddrawex/tests/ddrawex.c:35] in ddrawex_test (0x04b0fc58) 29 0x04821e82 RefCountTest+0x21() [/home/austin/wine-valgrind/dlls/ddrawex/tests/ddrawex.c:49] in ddrawex_test (0x04b0fc88) 30 0x04822378 func_ddrawex+0x176() [/home/austin/wine-valgrind/dlls/ddrawex/tests/ddrawex.c:123] in ddrawex_test (0x04b0fcc8) 31 0x0482547a run_test+0x96(name="ddrawex") [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:589] in ddrawex_test (0x04b0fd08) 32 0x048258a6 main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:671] in ddrawex_test (0x04b0fdd8) 33 0x04825937 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddrawex_test (0x04b0fe18) 34 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 35 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 36 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 37 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 38 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 39 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfef6f2b8) 42 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfef6f338) 43 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfef701e8) 44 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfef70228) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfef70764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfef70278) 46 0x7c000f80 main+0x145(argc=, argv=0xfef70764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfef706b8) 47 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x068a7b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482a000 Dwarf ddrawex_test \-PE 4820000- 482a000 \ ddrawex_test ELF 4844000- 4856000 Deferred libbz2.so.1 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4c55000 Dwarf gdi32 \-PE 4b20000- 4c55000 \ gdi32 ELF 4c55000- 4cd6000 Deferred advapi32 \-PE 4c60000- 4cd6000 \ advapi32 ELF 4d22000- 4dda000 Deferred libfreetype.so.6 ELF 4fda000- 4ff3000 Deferred libz.so.1 ELF 4ff3000- 5031000 Deferred libpng16.so.16 ELF 5031000- 506e000 Deferred libfontconfig.so.1 ELF 506e000- 5098000 Deferred libexpat.so.1 ELF 5098000- 50a4000 Deferred libxcursor.so.1 ELF 50a8000- 50af000 Deferred libxfixes.so.3 ELF 50c5000- 50c8000 Deferred libxshmfence.so.1 ELF 50e7000- 5113000 Dwarf ddrawex \-PE 50f0000- 5113000 \ ddrawex ELF 511f000- 519e000 Dwarf ddraw \-PE 5130000- 519e000 \ ddraw ELF 51a6000- 5305000 Dwarf wined3d \-PE 51c0000- 5305000 \ wined3d ELF 5619000- 578e000 Deferred user32 \-PE 5630000- 578e000 \ user32 ELF 589a000- 58b5000 Deferred version \-PE 58a0000- 58b5000 \ version ELF 58c1000- 58e6000 Deferred imm32 \-PE 58d0000- 58e6000 \ imm32 ELF 58ee000- 598e000 Dwarf winex11 \-PE 5900000- 598e000 \ winex11 ELF 599e000- 59a2000 Deferred libxinerama.so.1 ELF 59a6000- 59ac000 Deferred libxxf86vm.so.1 ELF 59ac000- 59b8000 Deferred libxrender.so.1 ELF 59bc000- 59c9000 Deferred libxrandr.so.2 ELF 59cd000- 59d1000 Deferred libxcomposite.so.1 ELF 59e6000- 59f9000 Deferred libxext.so.6 ELF 5a01000- 5b52000 Deferred libx11.so.6 ELF 5b5a000- 5b86000 Deferred libxcb.so.1 ELF 5b8a000- 5b8e000 Deferred libxau.so.6 ELF 5b8e000- 5b95000 Deferred libxdmcp.so.6 ELF 5b99000- 5bb5000 Deferred libbsd.so.0 ELF 5bbd000- 5bc0000 Deferred libx11-xcb.so.1 ELF 5bc1000- 5bc5000 Deferred libxcb-dri3.so.0 ELF 5bc5000- 5bc9000 Deferred libxcb-present.so.0 ELF 5bc9000- 5bd1000 Deferred libxcb-sync.so.1 ELF 5bdd000- 5be1000 Deferred libxdamage.so.1 ELF 5be5000- 5c02000 Deferred libxcb-glx.so.0 ELF 5c02000- 5c05000 Deferred libllvmamdgpuutils.so.3.7 ELF 5c05000- 5c18000 Deferred libxi.so.6 ELF 5c28000- 5c2e000 Deferred libtxc_dxtn.so ELF 5c89000- 5cb1000 Deferred libudev.so.1 ELF 5cb5000- 5d2c000 Dwarf libgl.so.1 ELF 5e2c000- 5e63000 Deferred libglapi.so.0 ELF 5e63000- 5e69000 Deferred libxcb-dri2.so.0 ELF 5e69000- 5e7b000 Deferred libdrm.so.2 ELF 5ee7000- 5f27000 Deferred libnettle.so.6 ELF 5f2b000- 5f50000 Deferred libdrm_intel.so.1 ELF 5f50000- 5f5a000 Deferred libdrm_nouveau.so.2 ELF 625a000- 6ec5000 Dwarf radeonsi_dri.so ELF 71ae000- 71bc000 Deferred libdrm_radeon.so.1 ELF 76c5000- 76d0000 Deferred libdrm_amdgpu.so.1 ELF 76d4000- 76f1000 Deferred libelf.so.1 ELF 76fd000- 77c4000 Deferred libllvmipo.so.3.7 ELF 78d0000- 7a3f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8213000- 82bb000 Deferred libllvmvectorize.so.3.7 ELF 82c3000- 831d000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8325000- 83f1000 Deferred libllvmamdgpudesc.so.3.7 ELF 83f9000- 83fc000 Deferred libllvmamdgpuinfo.so.3.7 ELF 83fc000- 8426000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 842a000- 8466000 Deferred libllvmbitwriter.so.3.7 ELF 846a000- 85d2000 Deferred libllvmx86disassembler.so.3.7 ELF 85d6000- 8679000 Deferred libllvmx86asmparser.so.3.7 ELF 87cd000- 87d0000 Deferred libllvmx86info.so.3.7 ELF 8bfa000- 8e80000 Deferred libllvmx86codegen.so.3.7 ELF 8f80000- 8f89000 Deferred libllvmmcdisassembler.so.3.7 ELF 8f91000- 8f9d000 Deferred libllvmx86utils.so.3.7 ELF 95d7000- 960e000 Deferred libllvmipa.so.3.7 ELF 97d3000- 9adc000 Deferred libllvmselectiondag.so.3.7 ELF 9adc000- 9baa000 Deferred libllvmasmprinter.so.3.7 ELF 9baa000- 9bba000 Deferred libllvmmcjit.so.3.7 ELF 9bc2000- 9bd6000 Deferred libllvmtarget.so.3.7 ELF a178000- a666000 Deferred libllvmcodegen.so.3.7 ELF a866000- ab28000 Deferred libllvmscalaropts.so.3.7 ELF af22000- af63000 Deferred libllvmprofiledata.so.3.7 ELF af63000- b00b000 Deferred libllvminstrumentation.so.3.7 ELF b12f000- b21e000 Deferred libllvminstcombine.so.3.7 ELF b21e000- b269000 Deferred libllvmx86asmprinter.so.3.7 ELF b269000- b293000 Deferred libllvmexecutionengine.so.3.7 ELF ba0e000- ba8c000 Deferred libllvmruntimedyld.so.3.7 ELF ba8c000- bac9000 Deferred libllvmmcparser.so.3.7 ELF bad1000- baed000 Deferred libgcc_s.so.1 ELF bddc000- bf42000 Deferred libllvmtransformutils.so.3.7 ELF c246000- c251000 Deferred libpciaccess.so.0 ELF c411000- c56e000 Deferred libllvmx86desc.so.3.7 ELF c56e000- c85b000 Deferred libllvmanalysis.so.3.7 ELF c95b000- ca02000 Deferred libllvmobject.so.3.7 ELF ca02000- ca53000 Deferred libllvmbitreader.so.3.7 ELF cc69000- cd28000 Deferred libllvmmc.so.3.7 ELF cf28000- cf86000 Deferred libncurses.so.6 ELF d438000- d79e000 Deferred libllvmcore.so.3.7 ELF d89e000- d9bb000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001e1 (D) Z:\home\austin\wine-valgrind\dlls\ddrawex\tests\ddrawex_test.exe 000001e2 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31252== 12 bytes in 1 blocks are definitely lost in loss record 78 of 1,274 ==31252== at 0x7BC50754: notify_alloc (heap.c:254) ==31252== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31252== by 0x50FEB58: DllGetClassObject (main.c:237) ==31252== by 0x48222D7: func_ddrawex (ddrawex.c:118) ==31252== by 0x4825479: run_test (test.h:589) ==31252== by 0x48258A5: main (test.h:671) ==31252== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DllGetClassObject fun:func_ddrawex fun:run_test fun:main } ==31252== 24 bytes in 1 blocks are definitely lost in loss record 271 of 1,274 ==31252== at 0x7BC50754: notify_alloc (heap.c:254) ==31252== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31252== by 0x50FDF1F: ddrawex_factory_CreateDirectDraw (ddraw.c:1429) ==31252== by 0x4821DD1: createDD (ddrawex.c:35) ==31252== by 0x4821E81: RefCountTest (ddrawex.c:49) ==31252== by 0x4822377: func_ddrawex (ddrawex.c:123) ==31252== by 0x4825479: run_test (test.h:589) ==31252== by 0x48258A5: main (test.h:671) ==31252== { 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 } make[1]: *** [Makefile:172: 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 0x6892b2c (thread 01e6), 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 (0x06892b2c). 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:06892b2c ESP:04b0e2a0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06cb2000 ECX:046dca58 EDX:00200000 ESI:04665dd0 EDI:046dca58 Stack dump: 0x04b0e2a0: 04b0e2dc 046d63a4 00000003 00000002 0x04b0e2b0: 00007a50 00007a64 00000082 00007a6c 0x04b0e2c0: 00800000 00000000 00007a44 00007a48 0x04b0e2d0: 00007a4c 00000000 046655b0 00007a74 0x04b0e2e0: 00000000 00000000 00000000 00000000 0x04b0e2f0: 00000000 00000000 00000000 61521000 Backtrace: =>0 0x06892b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0687935b in radeonsi_dri.so (+0x63435a) (0x04664948) 2 0x068796e2 in radeonsi_dri.so (+0x6346e1) (0x04b0e438) 3 0x068f9a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e438) 4 0x0627479c in radeonsi_dri.so (+0x2f79b) (0x0465b268) 5 0x066ac000 in radeonsi_dri.so (+0x466fff) (0x0465b268) 6 0x066aba3d in radeonsi_dri.so (+0x466a3c) (0x0465b268) 7 0x0656c94b in radeonsi_dri.so (+0x32794a) (0x0465b268) 8 0x06568976 in radeonsi_dri.so (+0x323975) (0x0465b1e0) 9 0x05cdf722 in libgl.so.1 (+0x43721) (0x045a8568) 10 0x05cb4a42 in libgl.so.1 (+0x18a41) (0x045a6040) 11 0x05cb060b in libgl.so.1 (+0x1460a) (0x04b0eef4) 12 0x05cb0784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0eef4) 13 0x059275cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0efc8) 14 0x05929023 init_opengl+0xfbe(once=0x5985e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f1d8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f228) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f258) 17 0x0592949e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f288) 18 0x05931533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f2a8) 19 0x0591c293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f6d38, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f2d8) 20 0x04bbc5c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f308) 21 0x05215c4f wined3d_adapter_init+0xe0(adapter=0x48f3788, ordinal=0, wined3d_creation_flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0f738) 22 0x05216681 wined3d_init+0xa5(wined3d=0x48f3778, flags=0xdb5) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0f768) 23 0x0529cc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0f7c8) 24 0x0513cde4 ddraw_init+0xda(ddraw=0x48f36c0, flags=0xdb5, device_type=0) [/home/austin/wine-valgrind/dlls/ddraw/ddraw.c:4956] in ddraw (0x04b0f9a8) 25 0x0515043e DDRAW_Create+0x163(guid=(nil), DD=0x4b0fa98, UnkOuter=(nil), iid=0x517d7f4) [/home/austin/wine-valgrind/dlls/ddraw/main.c:274] in ddraw (0x04b0fa08) 26 0x0515060d DirectDrawCreate+0x8f(driver_guid=, ddraw=, outer=) [/home/austin/wine-valgrind/dlls/ddraw/main.c:309] in ddraw (0x04b0fa48) 27 0x050f8f80 ddrawex_factory_CreateDirectDraw+0x172(iface=0x48f3680, 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 0x048224c5 createDD+0x41() [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:37] in ddrawex_test (0x04b0fb28) 29 0x0482281c GetDCTest_main+0x33(ddsd=0x4b0fb94, ddsd2=0x4b0fc00, testfunc=0x4822525) [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:77] in ddrawex_test (0x04b0fb78) 30 0x04822d3e GetDCTest+0xc3() [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:153] in ddrawex_test (0x04b0fc88) 31 0x048245c9 func_surface+0x203() [/home/austin/wine-valgrind/dlls/ddrawex/tests/surface.c:436] in ddrawex_test (0x04b0fcc8) 32 0x0482547a run_test+0x96(name="surface") [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:589] in ddrawex_test (0x04b0fd08) 33 0x048258a6 main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/ddrawex/tests/../../../include/wine/test.h:671] in ddrawex_test (0x04b0fdd8) 34 0x04825937 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in ddrawex_test (0x04b0fe18) 35 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 36 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 37 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 38 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 39 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 40 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfea682b8) 43 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfea68338) 44 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfea691e8) 45 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfea69228) 46 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfea69764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfea69278) 47 0x7c000f80 main+0x145(argc=, argv=0xfea69764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfea696b8) 48 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06892b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482a000 Dwarf ddrawex_test \-PE 4820000- 482a000 \ ddrawex_test ELF 4844000- 4856000 Deferred libbz2.so.1 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4c55000 Dwarf gdi32 \-PE 4b20000- 4c55000 \ gdi32 ELF 4c55000- 4cd6000 Deferred advapi32 \-PE 4c60000- 4cd6000 \ advapi32 ELF 4d1f000- 4d22000 Deferred libxshmfence.so.1 ELF 4d22000- 4dda000 Deferred libfreetype.so.6 ELF 4fda000- 4ff3000 Deferred libz.so.1 ELF 4ff3000- 5031000 Deferred libpng16.so.16 ELF 5031000- 506e000 Deferred libfontconfig.so.1 ELF 506e000- 5098000 Deferred libexpat.so.1 ELF 509c000- 50a8000 Deferred libxcursor.so.1 ELF 50ac000- 50b3000 Deferred libxfixes.so.3 ELF 50cb000- 50ce000 Deferred libx11-xcb.so.1 ELF 50e2000- 510e000 Dwarf ddrawex \-PE 50f0000- 510e000 \ ddrawex ELF 511a000- 5199000 Dwarf ddraw \-PE 5120000- 5199000 \ ddraw ELF 51a5000- 5304000 Dwarf wined3d \-PE 51b0000- 5304000 \ wined3d ELF 5618000- 578d000 Deferred user32 \-PE 5630000- 578d000 \ user32 ELF 5899000- 58b4000 Deferred version \-PE 58a0000- 58b4000 \ version ELF 58c0000- 58e5000 Deferred imm32 \-PE 58d0000- 58e5000 \ imm32 ELF 58e9000- 5989000 Dwarf winex11 \-PE 58f0000- 5989000 \ winex11 ELF 5999000- 599d000 Deferred libxinerama.so.1 ELF 59a1000- 59a7000 Deferred libxxf86vm.so.1 ELF 59ab000- 59b7000 Deferred libxrender.so.1 ELF 59bb000- 59c8000 Deferred libxrandr.so.2 ELF 59cc000- 59d0000 Deferred libxcomposite.so.1 ELF 59dd000- 59f0000 Deferred libxext.so.6 ELF 59f0000- 5b41000 Deferred libx11.so.6 ELF 5b45000- 5b71000 Deferred libxcb.so.1 ELF 5b75000- 5b79000 Deferred libxau.so.6 ELF 5b79000- 5b80000 Deferred libxdmcp.so.6 ELF 5b80000- 5b9c000 Deferred libbsd.so.0 ELF 5ba8000- 5bac000 Deferred libxcb-dri3.so.0 ELF 5bac000- 5bb0000 Deferred libxcb-present.so.0 ELF 5bb1000- 5bb9000 Deferred libxcb-sync.so.1 ELF 5bbd000- 5bc0000 Deferred libllvmamdgpuutils.so.3.7 ELF 5bc5000- 5bc9000 Deferred libxdamage.so.1 ELF 5bc9000- 5be6000 Deferred libxcb-glx.so.0 ELF 5be6000- 5bec000 Deferred libxcb-dri2.so.0 ELF 5bec000- 5bff000 Deferred libxi.so.6 ELF 5c0f000- 5c15000 Deferred libtxc_dxtn.so ELF 5c90000- 5c9a000 Deferred libdrm_nouveau.so.2 ELF 5c9c000- 5d13000 Dwarf libgl.so.1 ELF 5e13000- 5e4a000 Deferred libglapi.so.0 ELF 5e4a000- 5e5c000 Deferred libdrm.so.2 ELF 5eac000- 5ed4000 Deferred libudev.so.1 ELF 5ed4000- 5f14000 Deferred libnettle.so.6 ELF 5f14000- 5f39000 Deferred libdrm_intel.so.1 ELF 6245000- 6eb0000 Dwarf radeonsi_dri.so ELF 7195000- 71a3000 Deferred libdrm_radeon.so.1 ELF 71a3000- 71ae000 Deferred libdrm_amdgpu.so.1 ELF 76b0000- 76cd000 Deferred libelf.so.1 ELF 76d5000- 779c000 Deferred libllvmipo.so.3.7 ELF 78bb000- 7a2a000 Deferred libllvmamdgpucodegen.so.3.7 ELF 81fa000- 82a2000 Deferred libllvmvectorize.so.3.7 ELF 82a2000- 82fc000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 82fc000- 83c8000 Deferred libllvmamdgpudesc.so.3.7 ELF 83cc000- 83cf000 Deferred libllvmamdgpuinfo.so.3.7 ELF 83cf000- 83f9000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 83fd000- 8439000 Deferred libllvmbitwriter.so.3.7 ELF 843d000- 85a5000 Deferred libllvmx86disassembler.so.3.7 ELF 85a9000- 864c000 Deferred libllvmx86asmparser.so.3.7 ELF 8774000- 87b5000 Deferred libllvmprofiledata.so.3.7 ELF 87b9000- 87bc000 Deferred libllvmx86info.so.3.7 ELF 8be5000- 8e6b000 Deferred libllvmx86codegen.so.3.7 ELF 95c2000- 95f9000 Deferred libllvmipa.so.3.7 ELF 97be000- 9ac7000 Deferred libllvmselectiondag.so.3.7 ELF 9ac7000- 9b95000 Deferred libllvmasmprinter.so.3.7 ELF 9b9d000- 9ba6000 Deferred libllvmmcdisassembler.so.3.7 ELF 9bb2000- 9bbe000 Deferred libllvmx86utils.so.3.7 ELF 9ee2000- 9ef2000 Deferred libllvmmcjit.so.3.7 ELF a163000- a651000 Deferred libllvmcodegen.so.3.7 ELF a851000- ab13000 Deferred libllvmscalaropts.so.3.7 ELF af0d000- affc000 Deferred libllvminstcombine.so.3.7 ELF b21a000- b265000 Deferred libllvmx86asmprinter.so.3.7 ELF b265000- b279000 Deferred libllvmtarget.so.3.7 ELF b820000- b8c8000 Deferred libllvminstrumentation.so.3.7 ELF b9a1000- b9cb000 Deferred libllvmexecutionengine.so.3.7 ELF bdc7000- bf2d000 Deferred libllvmtransformutils.so.3.7 ELF c13d000- c159000 Deferred libgcc_s.so.1 ELF c2fc000- c459000 Deferred libllvmx86desc.so.3.7 ELF c459000- c746000 Deferred libllvmanalysis.so.3.7 ELF c846000- c8c4000 Deferred libllvmruntimedyld.so.3.7 ELF c8c4000- c901000 Deferred libllvmmcparser.so.3.7 ELF c901000- c90c000 Deferred libpciaccess.so.0 ELF ca54000- cafb000 Deferred libllvmobject.so.3.7 ELF cbfb000- cc4c000 Deferred libllvmbitreader.so.3.7 ELF cc4c000- cd0b000 Deferred libllvmmc.so.3.7 ELF ce0b000- ce69000 Deferred libncurses.so.6 ELF d423000- d789000 Deferred libllvmcore.so.3.7 ELF d889000- d9a6000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001e5 (D) Z:\home\austin\wine-valgrind\dlls\ddrawex\tests\ddrawex_test.exe 000001e6 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==31283== 12 bytes in 1 blocks are definitely lost in loss record 78 of 1,274 ==31283== at 0x7BC50754: notify_alloc (heap.c:254) ==31283== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31283== by 0x50F9B58: DllGetClassObject (main.c:237) ==31283== by 0x48244A1: func_surface (surface.c:422) ==31283== by 0x4825479: run_test (test.h:589) ==31283== by 0x48258A5: main (test.h:671) ==31283== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:DllGetClassObject fun:func_surface fun:run_test fun:main } ==31283== 24 bytes in 1 blocks are definitely lost in loss record 271 of 1,274 ==31283== at 0x7BC50754: notify_alloc (heap.c:254) ==31283== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==31283== by 0x50F8F1F: ddrawex_factory_CreateDirectDraw (ddraw.c:1429) ==31283== by 0x48224C4: createDD (surface.c:37) ==31283== by 0x482281B: GetDCTest_main (surface.c:77) ==31283== by 0x4822D3D: GetDCTest (surface.c:153) ==31283== by 0x48245C8: func_surface (surface.c:436) ==31283== by 0x4825479: run_test (test.h:589) ==31283== by 0x48258A5: main (test.h:671) ==31283== { 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 } make[1]: *** [Makefile:203: surface.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ddrawex/tests' make: *** [Makefile:7789: 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 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 make[1]: *** [Makefile:343: duplex.ok] Killed ../../../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]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dsound/tests' make: *** [Makefile:8664: dlls/dsound/tests/test] Error 2 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:1374: 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:3964: Tests skipped: Courier New font not found. font.c:5063: Tests skipped: Skipping tests with Arial font.c:6087: Tests skipped: Segoe UI Emoji font not found. font.c:6194: 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 layout.c:4516: 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 0x79bbb2c (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 (0x079bbb2c). 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:079bbb2c ESP:04b0d5b0 EBP:00028350 EFLAGS:00200004( - -- - -P- ) EAX:00000003 EBX:07ddb000 ECX:0705a698 EDX:00200000 ESI:06fe3a10 EDI:0705a698 Stack dump: 0x04b0d5b0: 04b0d5ec 07053fe4 00000003 00000002 0x04b0d5c0: 00007a50 00007a64 00000082 00007a6c 0x04b0d5d0: 00800000 00000000 00007a44 00007a48 0x04b0d5e0: 00007a4c 00000000 06fe31f0 00007a74 0x04b0d5f0: 00000000 00000000 00000000 00000000 0x04b0d600: 00000000 00000000 00000000 c217a900 Backtrace: =>0 0x079bbb2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x079a235b in radeonsi_dri.so (+0x63435a) (0x06fe2588) 2 0x079a26e2 in radeonsi_dri.so (+0x6346e1) (0x04b0d748) 3 0x07a22a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0d748) 4 0x0739d79c in radeonsi_dri.so (+0x2f79b) (0x06fd8ea8) 5 0x077d5000 in radeonsi_dri.so (+0x466fff) (0x06fd8ea8) 6 0x077d4a3d in radeonsi_dri.so (+0x466a3c) (0x06fd8ea8) 7 0x0769594b in radeonsi_dri.so (+0x32794a) (0x06fd8ea8) 8 0x07691976 in radeonsi_dri.so (+0x323975) (0x06fd8e20) 9 0x07296722 in libgl.so.1 (+0x43721) (0x06f26630) 10 0x0726ba42 in libgl.so.1 (+0x18a41) (0x06f24108) 11 0x0726760b in libgl.so.1 (+0x1460a) (0x04b0e204) 12 0x07267784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0e204) 13 0x059bc5cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0e2d8) 14 0x059be023 init_opengl+0xfbe(once=0x5a1ae38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0e4e8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0e538) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0e568) 17 0x059be49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0e598) 18 0x059c6533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0e5b8) 19 0x059b1293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49169f8, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0e5e8) 20 0x053a65c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0e618) 21 0x05de4c4f wined3d_adapter_init+0xe0(adapter=0x4913448, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0ea48) 22 0x05de5681 wined3d_init+0xa5(wined3d=0x4913438, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0ea78) 23 0x05e6bc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0ead8) 24 0x05d546bb d3d9_init+0x4d(d3d9=0x4913418, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04b0eb18) 25 0x05d45e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04b0eb68) 26 0x05d1e76d fill_display_information_d3d+0x33(node=0x49133a0) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:912] in dxdiagn (0x04b0fba8) 27 0x05d1f466 build_displaydevices_tree+0x10(node=0x49133a0) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1191] in dxdiagn (0x04b0fbd8) 28 0x05d209a2 build_information_tree+0x83(pinfo_root=0x48facc4) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1749] in dxdiagn (0x04b0fc08) 29 0x05d1c92b IDxDiagProviderImpl_Initialize+0xb5(iface=, pParams=) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:155] in dxdiagn (0x04b0fc48) 30 0x048221d1 create_root_IDxDiagContainer+0x84() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/container.c:82] in dxdiagn_test (0x04b0fc98) 31 0x04822265 test_GetNumberOfChildContainers+0x21() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/container.c:99] in dxdiagn_test (0x04b0fcb8) 32 0x04825997 func_container+0x23() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/container.c:1026] in dxdiagn_test (0x04b0fcc8) 33 0x04826e13 run_test+0x96(name="container") [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:589] in dxdiagn_test (0x04b0fd08) 34 0x0482723f main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:671] in dxdiagn_test (0x04b0fdd8) 35 0x048272d0 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in dxdiagn_test (0x04b0fe18) 36 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 37 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 38 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 39 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 40 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 41 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfeb642b8) 44 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfeb64338) 45 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfeb651e8) 46 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfeb65228) 47 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfeb65764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfeb65278) 48 0x7c000f80 main+0x145(argc=, argv=0xfeb65764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfeb656b8) 49 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x079bbb2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482d000 Dwarf dxdiagn_test \-PE 4820000- 482d000 \ dxdiagn_test ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4c82000 Deferred oleaut32 \-PE 4b30000- 4c82000 \ oleaut32 ELF 4d82000- 4f04000 Deferred ole32 \-PE 4da0000- 4f04000 \ ole32 ELF 5004000- 5085000 Deferred advapi32 \-PE 5010000- 5085000 \ advapi32 ELF 5085000- 51fa000 Deferred user32 \-PE 50a0000- 51fa000 \ user32 ELF 52fa000- 543f000 Dwarf gdi32 \-PE 5310000- 543f000 \ gdi32 ELF 543f000- 545a000 Deferred version \-PE 5440000- 545a000 \ version ELF 5462000- 54ef000 Deferred rpcrt4 \-PE 5470000- 54ef000 \ rpcrt4 ELF 5553000- 560b000 Deferred libfreetype.so.6 ELF 5813000- 582c000 Deferred libz.so.1 ELF 5834000- 5846000 Deferred libbz2.so.1 ELF 584e000- 588c000 Deferred libpng16.so.16 ELF 5890000- 58cd000 Deferred libfontconfig.so.1 ELF 58d1000- 58fb000 Deferred libexpat.so.1 ELF 5903000- 590f000 Deferred libxcursor.so.1 ELF 5913000- 591a000 Deferred libxfixes.so.3 ELF 5936000- 5939000 Deferred libxshmfence.so.1 ELF 5951000- 5976000 Deferred imm32 \-PE 5960000- 5976000 \ imm32 ELF 597e000- 5a1e000 Dwarf winex11 \-PE 5990000- 5a1e000 \ winex11 ELF 5a2e000- 5a32000 Deferred libxinerama.so.1 ELF 5a36000- 5a3c000 Deferred libxxf86vm.so.1 ELF 5a3c000- 5a48000 Deferred libxrender.so.1 ELF 5a4c000- 5a59000 Deferred libxrandr.so.2 ELF 5a5d000- 5a61000 Deferred libxcomposite.so.1 ELF 5a76000- 5a89000 Deferred libxext.so.6 ELF 5a91000- 5be2000 Deferred libx11.so.6 ELF 5bea000- 5c16000 Deferred libxcb.so.1 ELF 5c1a000- 5c1e000 Deferred libxau.so.6 ELF 5c1e000- 5c25000 Deferred libxdmcp.so.6 ELF 5c29000- 5c45000 Deferred libbsd.so.0 ELF 5c95000- 5ca8000 Deferred libxi.so.6 ELF 5ca8000- 5ce7000 Deferred wbemprox \-PE 5cb0000- 5ce7000 \ wbemprox ELF 5d09000- 5d31000 Dwarf dxdiagn \-PE 5d10000- 5d31000 \ dxdiagn ELF 5d31000- 5d74000 Dwarf d3d9 \-PE 5d40000- 5d74000 \ d3d9 ELF 5d74000- 5ed3000 Dwarf wined3d \-PE 5d80000- 5ed3000 \ wined3d ELF 60e7000- 60ea000 Deferred libx11-xcb.so.1 ELF 62ea000- 6369000 Deferred ddraw \-PE 62f0000- 6369000 \ ddraw ELF 6369000- 637d000 Deferred psapi \-PE 6370000- 637d000 \ psapi ELF 637d000- 6380000 Deferred libllvmamdgpuutils.so.3.7 ELF 63a1000- 63e5000 Deferred winspool \-PE 63b0000- 63e5000 \ winspool ELF 6546000- 654c000 Deferred libtxc_dxtn.so ELF 6563000- 658f000 Deferred iphlpapi \-PE 6570000- 658f000 \ iphlpapi ELF 6593000- 65be000 Deferred dxgi \-PE 65a0000- 65be000 \ dxgi ELF 65db000- 65f3000 Deferred libresolv.so.2 ELF 65f7000- 6630000 Deferred ws2_32 \-PE 6600000- 6630000 \ ws2_32 ELF 667c000- 6701000 Deferred libcups.so.2 ELF 6801000- 6938000 Deferred libgnutls.so.28 ELF 6c38000- 6c4d000 Deferred libtasn1.so.6 ELF 6c55000- 6c95000 Deferred libnettle.so.6 ELF 6c9d000- 6cd4000 Deferred libhogweed.so.4 ELF 6cd8000- 6d4f000 Deferred libgmp.so.10 ELF 721f000- 7247000 Deferred libudev.so.1 ELF 7253000- 72ca000 Dwarf libgl.so.1 ELF 72d2000- 72d6000 Deferred libxcb-dri3.so.0 ELF 72da000- 72de000 Deferred libxcb-present.so.0 ELF 72de000- 72e6000 Deferred libxcb-sync.so.1 ELF 72ea000- 7321000 Deferred libglapi.so.0 ELF 7325000- 7329000 Deferred libxdamage.so.1 ELF 732d000- 734a000 Deferred libxcb-glx.so.0 ELF 734e000- 7354000 Deferred libxcb-dri2.so.0 ELF 7358000- 736a000 Deferred libdrm.so.2 ELF 736e000- 7fd9000 Dwarf radeonsi_dri.so ELF 8312000- 8337000 Deferred libdrm_intel.so.1 ELF 833f000- 8349000 Deferred libdrm_nouveau.so.2 ELF 834d000- 835b000 Deferred libdrm_radeon.so.1 ELF 835f000- 836a000 Deferred libdrm_amdgpu.so.1 ELF 836e000- 838b000 Deferred libelf.so.1 ELF 84b3000- 84b6000 Deferred libllvmamdgpuinfo.so.3.7 ELF 84d6000- 84d9000 Deferred libllvmx86info.so.3.7 ELF 85d9000- 8748000 Deferred libllvmamdgpucodegen.so.3.7 ELF 8948000- 89a2000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 89a2000- 89cc000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 92f6000- 93bd000 Deferred libllvmipo.so.3.7 ELF 957b000- 9623000 Deferred libllvmvectorize.so.3.7 ELF 9623000- 96ef000 Deferred libllvmamdgpudesc.so.3.7 ELF 96ef000- 972b000 Deferred libllvmbitwriter.so.3.7 ELF 972b000- 9893000 Deferred libllvmx86disassembler.so.3.7 ELF 9893000- 9936000 Deferred libllvmx86asmparser.so.3.7 ELF 9936000- 9bbc000 Deferred libllvmx86codegen.so.3.7 ELF a50e000- a54f000 Deferred libllvmprofiledata.so.3.7 ELF a54f000- a586000 Deferred libllvmipa.so.3.7 ELF a58e000- a597000 Deferred libllvmmcdisassembler.so.3.7 ELF a5a3000- a5af000 Deferred libllvmx86utils.so.3.7 ELF a9eb000- a9fb000 Deferred libllvmmcjit.so.3.7 ELF aa07000- aa1b000 Deferred libllvmtarget.so.3.7 ELF abe7000- aef0000 Deferred libllvmselectiondag.so.3.7 ELF aef0000- afbe000 Deferred libllvmasmprinter.so.3.7 ELF afbe000- afe8000 Deferred libllvmexecutionengine.so.3.7 ELF b58c000- ba7a000 Deferred libllvmcodegen.so.3.7 ELF bb7a000- be3c000 Deferred libllvmscalaropts.so.3.7 ELF c236000- c325000 Deferred libllvminstcombine.so.3.7 ELF c62f000- c6d7000 Deferred libllvminstrumentation.so.3.7 ELF c6d7000- c722000 Deferred libllvmx86asmprinter.so.3.7 ELF c722000- c7a0000 Deferred libllvmruntimedyld.so.3.7 ELF c7a0000- c7bc000 Deferred libgcc_s.so.1 ELF c7bc000- c7c7000 Deferred libpciaccess.so.0 ELF c8b0000- c957000 Deferred libllvmobject.so.3.7 ELF c957000- c994000 Deferred libllvmmcparser.so.3.7 ELF d145000- d2ab000 Deferred libllvmtransformutils.so.3.7 ELF d3ab000- d508000 Deferred libllvmx86desc.so.3.7 ELF d508000- d559000 Deferred libllvmbitreader.so.3.7 ELF d559000- d5b7000 Deferred libncurses.so.6 ELF d77a000- da67000 Deferred libllvmanalysis.so.3.7 ELF e075000- e134000 Deferred libllvmmc.so.3.7 ELF e844000- ebaa000 Deferred libllvmcore.so.3.7 ELF f0aa000- f1c7000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000171 (D) Z:\home\austin\wine-valgrind\dlls\dxdiagn\tests\dxdiagn_test.exe 00000173 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:172: 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 0x7964b2c (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 (0x07964b2c). 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:07964b2c ESP:04b0d5d0 EBP:00028350 EFLAGS:00200004( - -- - -P- ) EAX:00000003 EBX:07d84000 ECX:07007698 EDX:00200000 ESI:06f90a10 EDI:07007698 Stack dump: 0x04b0d5d0: 04b0d60c 07000fe4 00000003 00000002 0x04b0d5e0: 00007a50 00007a64 00000082 00007a6c 0x04b0d5f0: 00800000 00000000 00007a44 00007a48 0x04b0d600: 00007a4c 00000000 06f901f0 00007a74 0x04b0d610: 00000000 00000000 00000000 00000000 0x04b0d620: 00000000 00000000 00000000 7bad4700 Backtrace: =>0 0x07964b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0794b35b in radeonsi_dri.so (+0x63435a) (0x06f8f588) 2 0x0794b6e2 in radeonsi_dri.so (+0x6346e1) (0x04b0d768) 3 0x079cba6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0d768) 4 0x0734679c in radeonsi_dri.so (+0x2f79b) (0x06f85ea8) 5 0x0777e000 in radeonsi_dri.so (+0x466fff) (0x06f85ea8) 6 0x0777da3d in radeonsi_dri.so (+0x466a3c) (0x06f85ea8) 7 0x0763e94b in radeonsi_dri.so (+0x32794a) (0x06f85ea8) 8 0x0763a976 in radeonsi_dri.so (+0x323975) (0x06f85e20) 9 0x0723f722 in libgl.so.1 (+0x43721) (0x06ed3630) 10 0x07214a42 in libgl.so.1 (+0x18a41) (0x06ed1108) 11 0x0721060b in libgl.so.1 (+0x1460a) (0x04b0e224) 12 0x07210784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0e224) 13 0x059755cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0e2f8) 14 0x05977023 init_opengl+0xfbe(once=0x59d3e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0e508) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0e558) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0e588) 17 0x0597749e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0e5b8) 18 0x0597f533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0e5d8) 19 0x0596a293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49171f0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0e608) 20 0x053a65c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0e638) 21 0x05da7c4f wined3d_adapter_init+0xe0(adapter=0x4913c40, ordinal=0, wined3d_creation_flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0ea68) 22 0x05da8681 wined3d_init+0xa5(wined3d=0x4913c30, flags=0xecc) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0ea98) 23 0x05e2ec71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0eaf8) 24 0x05d176bb d3d9_init+0x4d(d3d9=0x4913c10, extended=0) [/home/austin/wine-valgrind/dlls/d3d9/directx.c:679] in d3d9 (0x04b0eb38) 25 0x05d08e6a Direct3DCreate9+0xa2(sdk_version=) [/home/austin/wine-valgrind/dlls/d3d9/d3d9_main.c:45] in d3d9 (0x04b0eb88) 26 0x05ce176d fill_display_information_d3d+0x33(node=0x4913b98) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:912] in dxdiagn (0x04b0fbc8) 27 0x05ce2466 build_displaydevices_tree+0x10(node=0x4913b98) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1191] in dxdiagn (0x04b0fbf8) 28 0x05ce39a2 build_information_tree+0x83(pinfo_root=0x48facc4) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:1749] in dxdiagn (0x04b0fc28) 29 0x05cdf92b IDxDiagProviderImpl_Initialize+0xb5(iface=, pParams=) [/home/austin/wine-valgrind/dlls/dxdiagn/provider.c:155] in dxdiagn (0x04b0fc68) 30 0x04825c33 test_Initialize+0x264() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/provider.c:83] in dxdiagn_test (0x04b0fcb8) 31 0x04826060 func_provider+0x23() [/home/austin/wine-valgrind/dlls/dxdiagn/tests/provider.c:157] in dxdiagn_test (0x04b0fcc8) 32 0x04826e13 run_test+0x96(name="provider") [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:589] in dxdiagn_test (0x04b0fd08) 33 0x0482723f main+0x245(argc=, argv=0x48d1df0) [/home/austin/wine-valgrind/dlls/dxdiagn/tests/../../../include/wine/test.h:671] in dxdiagn_test (0x04b0fdd8) 34 0x048272d0 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in dxdiagn_test (0x04b0fe18) 35 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 36 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 37 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 38 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 39 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 40 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfe8df2b8) 43 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfe8df338) 44 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfe8e01e8) 45 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfe8e0228) 46 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfe8e0764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfe8e0278) 47 0x7c000f80 main+0x145(argc=, argv=0xfe8e0764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfe8e06b8) 48 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x07964b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482d000 Dwarf dxdiagn_test \-PE 4820000- 482d000 \ dxdiagn_test ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4c82000 Deferred oleaut32 \-PE 4b30000- 4c82000 \ oleaut32 ELF 4d82000- 4f04000 Deferred ole32 \-PE 4da0000- 4f04000 \ ole32 ELF 5004000- 5085000 Deferred advapi32 \-PE 5010000- 5085000 \ advapi32 ELF 5085000- 51fa000 Deferred user32 \-PE 50a0000- 51fa000 \ user32 ELF 52fa000- 543f000 Dwarf gdi32 \-PE 5310000- 543f000 \ gdi32 ELF 543f000- 545a000 Deferred version \-PE 5440000- 545a000 \ version ELF 545a000- 54e7000 Deferred rpcrt4 \-PE 5470000- 54e7000 \ rpcrt4 ELF 5530000- 5533000 Deferred libxshmfence.so.1 ELF 5533000- 55eb000 Deferred libfreetype.so.6 ELF 57eb000- 5804000 Deferred libz.so.1 ELF 5804000- 5816000 Deferred libbz2.so.1 ELF 5816000- 5854000 Deferred libpng16.so.16 ELF 5854000- 5891000 Deferred libfontconfig.so.1 ELF 5891000- 58bb000 Deferred libexpat.so.1 ELF 58c3000- 58cf000 Deferred libxcursor.so.1 ELF 58d3000- 58da000 Deferred libxfixes.so.3 ELF 58ee000- 58f1000 Deferred libx11-xcb.so.1 ELF 590e000- 5933000 Deferred imm32 \-PE 5910000- 5933000 \ imm32 ELF 5937000- 59d7000 Dwarf winex11 \-PE 5940000- 59d7000 \ winex11 ELF 59e7000- 59eb000 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 5a2b000- 5a3e000 Deferred libxext.so.6 ELF 5a42000- 5b93000 Deferred libx11.so.6 ELF 5b9b000- 5bc7000 Deferred libxcb.so.1 ELF 5bcb000- 5bcf000 Deferred libxau.so.6 ELF 5bcf000- 5bd6000 Deferred libxdmcp.so.6 ELF 5bda000- 5bf6000 Deferred libbsd.so.0 ELF 5c46000- 5c59000 Deferred libxi.so.6 ELF 5c59000- 5c98000 Deferred wbemprox \-PE 5c60000- 5c98000 \ wbemprox ELF 5ccc000- 5cf4000 Dwarf dxdiagn \-PE 5cd0000- 5cf4000 \ dxdiagn ELF 5cf4000- 5d37000 Dwarf d3d9 \-PE 5d00000- 5d37000 \ d3d9 ELF 5d37000- 5e96000 Dwarf wined3d \-PE 5d50000- 5e96000 \ wined3d ELF 629b000- 631a000 Deferred ddraw \-PE 62a0000- 631a000 \ ddraw ELF 631a000- 632e000 Deferred psapi \-PE 6320000- 632e000 \ psapi ELF 6351000- 6395000 Deferred winspool \-PE 6360000- 6395000 \ winspool ELF 64f7000- 64fd000 Deferred libtxc_dxtn.so ELF 6514000- 6540000 Deferred iphlpapi \-PE 6520000- 6540000 \ iphlpapi ELF 6544000- 656f000 Deferred dxgi \-PE 6550000- 656f000 \ dxgi ELF 658c000- 65a4000 Deferred libresolv.so.2 ELF 65a4000- 65dd000 Deferred ws2_32 \-PE 65b0000- 65dd000 \ ws2_32 ELF 6629000- 66ae000 Deferred libcups.so.2 ELF 67ae000- 68e5000 Deferred libgnutls.so.28 ELF 6be9000- 6bfe000 Deferred libtasn1.so.6 ELF 6c06000- 6c46000 Deferred libnettle.so.6 ELF 6c4e000- 6c85000 Deferred libhogweed.so.4 ELF 6c89000- 6d00000 Deferred libgmp.so.10 ELF 71c8000- 71f0000 Deferred libudev.so.1 ELF 71fc000- 7273000 Dwarf libgl.so.1 ELF 7277000- 727b000 Deferred libxcb-dri3.so.0 ELF 727b000- 727f000 Deferred libxcb-present.so.0 ELF 727f000- 7287000 Deferred libxcb-sync.so.1 ELF 728b000- 72c2000 Deferred libglapi.so.0 ELF 72c6000- 72ca000 Deferred libxdamage.so.1 ELF 72ce000- 72eb000 Deferred libxcb-glx.so.0 ELF 72f3000- 72f9000 Deferred libxcb-dri2.so.0 ELF 72fd000- 730f000 Deferred libdrm.so.2 ELF 7317000- 7f82000 Dwarf radeonsi_dri.so ELF 82bb000- 82e0000 Deferred libdrm_intel.so.1 ELF 82e0000- 82ea000 Deferred libdrm_nouveau.so.2 ELF 82ee000- 82fc000 Deferred libdrm_radeon.so.1 ELF 8300000- 830b000 Deferred libdrm_amdgpu.so.1 ELF 830f000- 832c000 Deferred libelf.so.1 ELF 8450000- 8453000 Deferred libllvmamdgpuutils.so.3.7 ELF 845b000- 845e000 Deferred libllvmamdgpuinfo.so.3.7 ELF 8582000- 86f1000 Deferred libllvmamdgpucodegen.so.3.7 ELF 88f1000- 894b000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 894b000- 8975000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 929f000- 9366000 Deferred libllvmipo.so.3.7 ELF 9524000- 95cc000 Deferred libllvmvectorize.so.3.7 ELF 95cc000- 9698000 Deferred libllvmamdgpudesc.so.3.7 ELF 9698000- 96d4000 Deferred libllvmbitwriter.so.3.7 ELF 96d4000- 983c000 Deferred libllvmx86disassembler.so.3.7 ELF 983c000- 98df000 Deferred libllvmx86asmparser.so.3.7 ELF 98df000- 9b65000 Deferred libllvmx86codegen.so.3.7 ELF a4b7000- a4f8000 Deferred libllvmprofiledata.so.3.7 ELF a4f8000- a52f000 Deferred libllvmipa.so.3.7 ELF a52f000- a538000 Deferred libllvmmcdisassembler.so.3.7 ELF a538000- a53b000 Deferred libllvmx86info.so.3.7 ELF a543000- a54f000 Deferred libllvmx86utils.so.3.7 ELF a994000- a9a4000 Deferred libllvmmcjit.so.3.7 ELF a9a4000- a9b8000 Deferred libllvmtarget.so.3.7 ELF ab90000- ae99000 Deferred libllvmselectiondag.so.3.7 ELF ae99000- af67000 Deferred libllvmasmprinter.so.3.7 ELF af67000- af91000 Deferred libllvmexecutionengine.so.3.7 ELF b535000- ba23000 Deferred libllvmcodegen.so.3.7 ELF bb23000- bde5000 Deferred libllvmscalaropts.so.3.7 ELF c1df000- c2ce000 Deferred libllvminstcombine.so.3.7 ELF c2ce000- c2d9000 Deferred libpciaccess.so.0 ELF c5d8000- c680000 Deferred libllvminstrumentation.so.3.7 ELF c859000- c8a4000 Deferred libllvmx86asmprinter.so.3.7 ELF c8a4000- c922000 Deferred libllvmruntimedyld.so.3.7 ELF c922000- c93e000 Deferred libgcc_s.so.1 ELF d4ee000- d654000 Deferred libllvmtransformutils.so.3.7 ELF d754000- d8b1000 Deferred libllvmx86desc.so.3.7 ELF d8b1000- d958000 Deferred libllvmobject.so.3.7 ELF db23000- de10000 Deferred libllvmanalysis.so.3.7 ELF e31e000- e35b000 Deferred libllvmmcparser.so.3.7 ELF e35b000- e3ac000 Deferred libllvmbitreader.so.3.7 ELF e3ac000- e46b000 Deferred libllvmmc.so.3.7 ELF eaed000- ee53000 Deferred libllvmcore.so.3.7 ELF ef53000- f070000 Deferred libllvmsupport.so.3.7 ELF f131000- f18f000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000175 (D) Z:\home\austin\wine-valgrind\dlls\dxdiagn\tests\dxdiagn_test.exe 00000177 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:203: provider.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dxdiagn/tests' make: *** [Makefile:8847: 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 0x6992b2c (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 (0x06992b2c). 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:06992b2c ESP:04b0e2a0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:06db2000 ECX:0470dbb0 EDX:00200000 ESI:04696f28 EDI:0470dbb0 Stack dump: 0x04b0e2a0: 04b0e2dc 047074fc 00000003 00000002 0x04b0e2b0: 00007a50 00007a64 00000082 00007a6c 0x04b0e2c0: 00800000 00000000 00007a44 00007a48 0x04b0e2d0: 00007a4c 00000000 04696708 00007a74 0x04b0e2e0: 00000000 00000000 00000000 00000000 0x04b0e2f0: 00000000 00000000 00000000 292a4a00 Backtrace: =>0 0x06992b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0697935b in radeonsi_dri.so (+0x63435a) (0x04695aa0) 2 0x069796e2 in radeonsi_dri.so (+0x6346e1) (0x04b0e438) 3 0x069f9a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e438) 4 0x0637479c in radeonsi_dri.so (+0x2f79b) (0x0468c3c0) 5 0x067ac000 in radeonsi_dri.so (+0x466fff) (0x0468c3c0) 6 0x067aba3d in radeonsi_dri.so (+0x466a3c) (0x0468c3c0) 7 0x0666c94b in radeonsi_dri.so (+0x32794a) (0x0468c3c0) 8 0x06668976 in radeonsi_dri.so (+0x323975) (0x0468c338) 9 0x05ddf722 in libgl.so.1 (+0x43721) (0x045d96c0) 10 0x05db4a42 in libgl.so.1 (+0x18a41) (0x045d7198) 11 0x05db060b in libgl.so.1 (+0x1460a) (0x04b0eef4) 12 0x05db0784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0eef4) 13 0x05a235cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0efc8) 14 0x05a25023 init_opengl+0xfbe(once=0x5a81e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f1d8) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f228) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f258) 17 0x05a2549e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f288) 18 0x05a2d533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f2a8) 19 0x05a18293 X11DRV_wine_get_wgl_driver+0x10(dev=0x48f8520, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f2d8) 20 0x050f35c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f308) 21 0x04c58c4f wined3d_adapter_init+0xe0(adapter=0x48f4f70, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0f738) 22 0x04c59681 wined3d_init+0xa5(wined3d=0x48f4f60, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0f768) 23 0x04cdfc71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0f7c8) 24 0x04bd358a dxgi_factory_init+0x44(factory=0x48f4f30, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b0f7f8) 25 0x04bd3622 dxgi_factory_create+0x51(riid=0x4b43908, factory=0x4b0f8c0, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b0f848) 26 0x04bd1c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b0f888) 27 0x04b233f3 D3D10CreateDevice+0x1a0(adapter=(nil), driver_type=, swrast=(nil), flags=, sdk_version=, device=0x4b0f9d8) [/home/austin/wine-valgrind/dlls/d3d10/d3d10_main.c:51] in d3d10 (0x04b0f998) 28 0x04823123 create_device+0x32() [/home/austin/wine-valgrind/dlls/dxgi/tests/device.c:312] in dxgi_test (0x04b0f9f8) 29 0x0482322a test_adapter_desc+0x26() [/home/austin/wine-valgrind/dlls/dxgi/tests/device.c:339] in dxgi_test (0x04b0fcb8) 30 0x04835868 func_device+0x8e() [/home/austin/wine-valgrind/dlls/dxgi/tests/device.c:3088] in dxgi_test (0x04b0fcc8) 31 0x04836666 run_test+0x96(name="device") [/home/austin/wine-valgrind/dlls/dxgi/tests/../../../include/wine/test.h:589] in dxgi_test (0x04b0fd08) 32 0x04836a91 main+0x244(argc=, argv=0x48d1de0) [/home/austin/wine-valgrind/dlls/dxgi/tests/../../../include/wine/test.h:671] in dxgi_test (0x04b0fdd8) 33 0x04836b22 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in dxgi_test (0x04b0fe18) 34 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 35 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 36 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 37 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 38 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 39 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfed222c8) 42 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfed22348) 43 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfed231f8) 44 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfed23238) 45 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfed23774, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfed23288) 46 0x7c000f80 main+0x145(argc=, argv=0xfed23774) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfed236c8) 47 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06992b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 483e000 Dwarf dxgi_test \-PE 4820000- 483e000 \ dxgi_test ELF 4844000- 485a000 Deferred d3d10core \-PE 4850000- 485a000 \ d3d10core ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4b56000 Dwarf d3d10 \-PE 4b20000- 4b56000 \ d3d10 ELF 4b56000- 4bbd000 Deferred d3d11 \-PE 4b60000- 4bbd000 \ d3d11 ELF 4bbd000- 4be8000 Dwarf dxgi \-PE 4bc0000- 4be8000 \ dxgi ELF 4be8000- 4d47000 Dwarf wined3d \-PE 4c00000- 4d47000 \ wined3d ELF 5047000- 518c000 Dwarf gdi32 \-PE 5050000- 518c000 \ gdi32 ELF 519c000- 521d000 Deferred advapi32 \-PE 51b0000- 521d000 \ advapi32 ELF 5229000- 539e000 Deferred user32 \-PE 5240000- 539e000 \ user32 ELF 54aa000- 54c5000 Deferred version \-PE 54b0000- 54c5000 \ version ELF 54d1000- 5555000 Deferred d3dcompiler_43 \-PE 54e0000- 5555000 \ d3dcompiler_43 ELF 55b5000- 566d000 Deferred libfreetype.so.6 ELF 5875000- 588e000 Deferred libz.so.1 ELF 5896000- 58a8000 Deferred libbz2.so.1 ELF 58b0000- 58ee000 Deferred libpng16.so.16 ELF 58f2000- 592f000 Deferred libfontconfig.so.1 ELF 5937000- 5961000 Deferred libexpat.so.1 ELF 596d000- 5979000 Deferred libxcursor.so.1 ELF 597d000- 5984000 Deferred libxfixes.so.3 ELF 599c000- 599f000 Deferred libxshmfence.so.1 ELF 59b8000- 59dd000 Deferred imm32 \-PE 59c0000- 59dd000 \ imm32 ELF 59e5000- 5a85000 Dwarf winex11 \-PE 59f0000- 5a85000 \ winex11 ELF 5a99000- 5a9d000 Deferred libxinerama.so.1 ELF 5aa1000- 5aa7000 Deferred libxxf86vm.so.1 ELF 5aab000- 5ab7000 Deferred libxrender.so.1 ELF 5abb000- 5ac8000 Deferred libxrandr.so.2 ELF 5acc000- 5ad0000 Deferred libxcomposite.so.1 ELF 5add000- 5af0000 Deferred libxext.so.6 ELF 5af0000- 5c41000 Deferred libx11.so.6 ELF 5c45000- 5c71000 Deferred libxcb.so.1 ELF 5c75000- 5c79000 Deferred libxau.so.6 ELF 5c79000- 5c80000 Deferred libxdmcp.so.6 ELF 5c80000- 5c9c000 Deferred libbsd.so.0 ELF 5ca8000- 5cac000 Deferred libxcb-dri3.so.0 ELF 5cac000- 5cb0000 Deferred libxcb-present.so.0 ELF 5cb1000- 5cb9000 Deferred libxcb-sync.so.1 ELF 5cbd000- 5cc0000 Deferred libx11-xcb.so.1 ELF 5cc5000- 5cc9000 Deferred libxdamage.so.1 ELF 5cc9000- 5ce6000 Deferred libxcb-glx.so.0 ELF 5ce6000- 5cec000 Deferred libxcb-dri2.so.0 ELF 5cec000- 5cff000 Deferred libxi.so.6 ELF 5d0f000- 5d15000 Deferred libtxc_dxtn.so ELF 5d70000- 5d98000 Deferred libudev.so.1 ELF 5d9c000- 5e13000 Dwarf libgl.so.1 ELF 5f13000- 5f4a000 Deferred libglapi.so.0 ELF 5f4a000- 5f5c000 Deferred libdrm.so.2 ELF 5fbc000- 5ffc000 Deferred libnettle.so.6 ELF 6000000- 6025000 Deferred libdrm_intel.so.1 ELF 6029000- 6033000 Deferred libdrm_nouveau.so.2 ELF 6037000- 6045000 Deferred libdrm_radeon.so.1 ELF 6049000- 6054000 Deferred libdrm_amdgpu.so.1 ELF 6058000- 6075000 Deferred libelf.so.1 ELF 607d000- 6144000 Deferred libllvmipo.so.3.7 ELF 6345000- 6fb0000 Dwarf radeonsi_dri.so ELF 72a5000- 72a8000 Deferred libllvmamdgpuutils.so.3.7 ELF 76b0000- 781f000 Deferred libllvmamdgpucodegen.so.3.7 ELF 781f000- 7879000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 7879000- 787c000 Deferred libllvmamdgpuinfo.so.3.7 ELF 787c000- 78a6000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 838b000- 8433000 Deferred libllvmvectorize.so.3.7 ELF 8433000- 84ff000 Deferred libllvmamdgpudesc.so.3.7 ELF 84ff000- 853b000 Deferred libllvmbitwriter.so.3.7 ELF 853b000- 86a3000 Deferred libllvmx86disassembler.so.3.7 ELF 86a7000- 874a000 Deferred libllvmx86asmparser.so.3.7 ELF 8872000- 88b3000 Deferred libllvmprofiledata.so.3.7 ELF 8ce5000- 8f6b000 Deferred libllvmx86codegen.so.3.7 ELF 96c2000- 96f9000 Deferred libllvmipa.so.3.7 ELF 98be000- 9bc7000 Deferred libllvmselectiondag.so.3.7 ELF 9bc7000- 9c95000 Deferred libllvmasmprinter.so.3.7 ELF 9c9d000- 9ca6000 Deferred libllvmmcdisassembler.so.3.7 ELF 9caa000- 9cad000 Deferred libllvmx86info.so.3.7 ELF 9cb9000- 9cc5000 Deferred libllvmx86utils.so.3.7 ELF a263000- a751000 Deferred libllvmcodegen.so.3.7 ELF a951000- a9f9000 Deferred libllvminstrumentation.so.3.7 ELF a9f9000- aa09000 Deferred libllvmmcjit.so.3.7 ELF aa09000- aa1d000 Deferred libllvmtarget.so.3.7 ELF ab32000- ac21000 Deferred libllvminstcombine.so.3.7 ELF af0d000- b1cf000 Deferred libllvmscalaropts.so.3.7 ELF b2cf000- b31a000 Deferred libllvmx86asmprinter.so.3.7 ELF b31a000- b344000 Deferred libllvmexecutionengine.so.3.7 ELF b344000- b381000 Deferred libllvmmcparser.so.3.7 ELF bc06000- bc84000 Deferred libllvmruntimedyld.so.3.7 ELF bf83000- c0e9000 Deferred libllvmtransformutils.so.3.7 ELF c1e9000- c346000 Deferred libllvmx86desc.so.3.7 ELF c346000- c3ed000 Deferred libllvmobject.so.3.7 ELF c401000- c41d000 Deferred libgcc_s.so.1 ELF c5b8000- c8a5000 Deferred libllvmanalysis.so.3.7 ELF cdb3000- ce04000 Deferred libllvmbitreader.so.3.7 ELF ce04000- cec3000 Deferred libllvmmc.so.3.7 ELF d1c7000- d1d2000 Deferred libpciaccess.so.0 ELF d1da000- d238000 Deferred libncurses.so.6 ELF d582000- d8e8000 Deferred libllvmcore.so.3.7 ELF d9e8000- db05000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000ba 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000179 (D) Z:\home\austin\wine-valgrind\dlls\dxgi\tests\dxgi_test.exe 0000017b 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:171: device.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/dxgi/tests' make: *** [Makefile:8928: 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 make[1]: *** [Makefile:232: 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' make: *** [Makefile:9638: 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/hid/tests' ../../../tools/runtest -q -P wine -T ../../.. -M hid.dll -p hid_test.exe.so device && touch device.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/hid/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 ==8941== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp8941_e22b14b5 is empty ==8941== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==8941== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp8941_e22b14b5 is empty ==8941== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==8941== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp8941_e22b14b5 is empty ==8941== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==8941== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp8941_e22b14b5 is empty ==8941== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==8941== 80 bytes in 1 blocks are possibly lost in loss record 1,917 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x5E87B91: heap_alloc (ieframe.h:336) ==8941== by 0x5E87C20: heap_strdupW (ieframe.h:362) ==8941== by 0x5E89881: update_travellog (dochost.c:461) ==8941== by 0x5E8A838: ClOleCommandTarget_Exec (dochost.c:753) ==8941== by 0x6F2AA85: IOleCommandTarget_Exec (docobj.h:1013) ==8941== by 0x6F2AA85: notify_travellog_update (???:0) ==8941== by 0x6F2AC92: set_current_mon (persist.c:133) ==8941== by 0x6F02588: navigate_proc (navigate.c:1969) ==8941== by 0x6F44DE4: hidden_proc (task.c:321) ==8941== by 0x4F0A3D9: ??? (winproc.c:174) ==8941== by 0x4F0A528: call_window_proc (winproc.c:245) ==8941== by 0x4F0C88B: WINPROC_call_window (winproc.c:901) ==8941== by 0x4ECDEC9: DispatchMessageW (message.c:4032) ==8941== by 0x6B707CC1: ??? ==8941== { Memcheck:Leak match-leak-kinds: possible 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:* } ==8941== 128 bytes in 4 blocks are possibly lost in loss record 2,796 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==8941== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==8941== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==8941== by 0x6A0D8113: ??? ==8941== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==8941== 256 bytes in 8 blocks are definitely lost in loss record 4,068 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x4B99328: CreateStreamOnHGlobal (hglobalstream.c:590) ==8941== by 0x5E8952A: get_travellog_stream (dochost.c:403) ==8941== by 0x5E89903: update_travellog (dochost.c:466) ==8941== by 0x5E8A838: ClOleCommandTarget_Exec (dochost.c:753) ==8941== by 0x6F2AA85: IOleCommandTarget_Exec (docobj.h:1013) ==8941== by 0x6F2AA85: notify_travellog_update (???:0) ==8941== by 0x6F2AC92: set_current_mon (persist.c:133) ==8941== by 0x6F02588: navigate_proc (navigate.c:1969) ==8941== by 0x6F44DE4: hidden_proc (task.c:321) ==8941== by 0x4F0A3D9: ??? (winproc.c:174) ==8941== by 0x4F0A528: call_window_proc (winproc.c:245) ==8941== by 0x4F0C88B: WINPROC_call_window (winproc.c:901) ==8941== by 0x4ECDEC9: DispatchMessageW (message.c:4032) ==8941== by 0x6B707CC1: ??? ==8941== { 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:* } ==8941== 480 bytes in 5 blocks are possibly lost in loss record 4,543 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x6074165: heap_alloc_zero (internet.h:99) ==8941== by 0x6075458: create_netconn (netconnection.c:348) ==8941== by 0x6064AF6: open_http_connection (http.c:4851) ==8941== by 0x6065235: HTTP_HttpSendRequestW (http.c:4992) ==8941== by 0x606610C: AsyncHttpSendRequestProc (http.c:5261) ==8941== by 0x6072094: INTERNET_WorkerThreadFunc (internet.c:3724) ==8941== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==8941== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==8941== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==8941== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==8941== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==8941== by 0x7BC9970A: start_thread (thread.c:453) ==8941== by 0x4243260: start_thread (pthread_create.c:333) ==8941== by 0x433F31D: clone (clone.S:114) ==8941== { 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 } ==8941== 516 bytes in 6 blocks are definitely lost in loss record 4,583 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x5E87B91: heap_alloc (ieframe.h:336) ==8941== by 0x5E87C20: heap_strdupW (ieframe.h:362) ==8941== by 0x5E89881: update_travellog (dochost.c:461) ==8941== by 0x5E8A838: ClOleCommandTarget_Exec (dochost.c:753) ==8941== by 0x6F2AA85: IOleCommandTarget_Exec (docobj.h:1013) ==8941== by 0x6F2AA85: notify_travellog_update (???:0) ==8941== by 0x6F2AC92: set_current_mon (persist.c:133) ==8941== by 0x6F02588: navigate_proc (navigate.c:1969) ==8941== by 0x6F44DE4: hidden_proc (task.c:321) ==8941== by 0x4F0A3D9: ??? (winproc.c:174) ==8941== by 0x4F0A528: call_window_proc (winproc.c:245) ==8941== by 0x4F0C88B: WINPROC_call_window (winproc.c:901) ==8941== by 0x4ECDEC9: DispatchMessageW (message.c:4032) ==8941== by 0x6B707CC1: ??? ==8941== { 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:* } ==8941== 775 bytes in 6 blocks are possibly lost in loss record 4,871 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==8941== by 0x8829F62: msvcrt_heap_realloc (heap.c:102) ==8941== by 0x882AB15: MSVCRT_realloc (heap.c:457) ==8941== by 0x69E78C00: ??? ==8941== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==8941== 3,920 bytes in 41 blocks are possibly lost in loss record 5,251 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x4B9991A: IMalloc_fnAlloc (ifs.c:187) ==8941== by 0x4B9A1B9: IMalloc_Alloc (objidl.h:1508) ==8941== by 0x4B9A1B9: CoTaskMemAlloc (???:0) ==8941== by 0x52B29BE: alloc_bstr (oleaut.c:177) ==8941== by 0x52B2D85: SysAllocStringLen (oleaut.c:355) ==8941== by 0x5F3CC83: pre_process_uri (uri.c:786) ==8941== by 0x5F4A176: CreateUri (uri.c:5738) ==8941== by 0x6F2AFCA: create_uri (persist.c:185) ==8941== by 0x6F1BA63: nsIOServiceHook_NewURI (nsio.c:3890) ==8941== by 0x69F3AFD9: ??? ==8941== { 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:* } ==8941== 8,640 bytes in 54 blocks are possibly lost in loss record 5,372 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x4B9991A: IMalloc_fnAlloc (ifs.c:187) ==8941== by 0x4B9A1B9: IMalloc_Alloc (objidl.h:1508) ==8941== by 0x4B9A1B9: CoTaskMemAlloc (???:0) ==8941== by 0x52B29BE: alloc_bstr (oleaut.c:177) ==8941== by 0x52B2D85: SysAllocStringLen (oleaut.c:355) ==8941== by 0x5F4CF4A: combine_uri (uri.c:6671) ==8941== by 0x5F4D790: CoInternetCombineUrlEx (uri.c:6816) ==8941== by 0x6F0EDFA: combine_url (nsio.c:152) ==8941== by 0x6F1BA40: nsIOServiceHook_NewURI (nsio.c:3888) ==8941== by 0x69F3AFD9: ??? ==8941== { 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:* } ==8941== 33,392 bytes in 376 blocks are possibly lost in loss record 5,474 of 5,532 ==8941== at 0x7BC50754: notify_alloc (heap.c:254) ==8941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==8941== by 0x4B9991A: IMalloc_fnAlloc (ifs.c:187) ==8941== by 0x4B9A1B9: IMalloc_Alloc (objidl.h:1508) ==8941== by 0x4B9A1B9: CoTaskMemAlloc (???:0) ==8941== by 0x52B29BE: alloc_bstr (oleaut.c:177) ==8941== by 0x52B2D85: SysAllocStringLen (oleaut.c:355) ==8941== by 0x52B2A5C: SysAllocString (oleaut.c:247) ==8941== by 0x5F4C5FA: combine_uri (uri.c:6465) ==8941== by 0x5F4D790: CoInternetCombineUrlEx (uri.c:6816) ==8941== by 0x6F0EDFA: combine_url (nsio.c:152) ==8941== by 0x6F1BA40: nsIOServiceHook_NewURI (nsio.c:3888) ==8941== by 0x69F3AFD9: ??? ==8941== { 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 ==9093== 12 bytes in 1 blocks are definitely lost in loss record 85 of 653 ==9093== at 0x7BC50754: notify_alloc (heap.c:254) ==9093== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==9093== by 0x4825664: create_test_stream (mimeole.c:446) ==9093== by 0x4825A08: test_SetData (mimeole.c:489) ==9093== by 0x482C8E6: func_mimeole (mimeole.c:1650) ==9093== by 0x482D6CB: run_test (test.h:589) ==9093== by 0x482DAF7: main (test.h:671) ==9093== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:create_test_stream fun:test_SetData fun:func_mimeole fun:run_test fun:main } ==9093== 32 bytes in 1 blocks are definitely lost in loss record 235 of 653 ==9093== at 0x7BC50754: notify_alloc (heap.c:254) ==9093== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==9093== by 0x4C6D328: CreateStreamOnHGlobal (hglobalstream.c:590) ==9093== by 0x4823D2A: create_stream_from_string (mimeole.c:164) ==9093== by 0x482612D: test_SetData (mimeole.c:538) ==9093== by 0x482C8E6: func_mimeole (mimeole.c:1650) ==9093== by 0x482D6CB: run_test (test.h:589) ==9093== by 0x482DAF7: main (test.h:671) ==9093== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:CreateStreamOnHGlobal fun:create_stream_from_string fun:test_SetData fun:func_mimeole fun:run_test fun:main } 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:955: Tests skipped: ICMP is not available. iphlpapi.c:1584: Tests skipped: AllocateAndGetTcpExTableFromStack 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 make[1]: *** [Makefile:248: 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 ==9312== Syscall param writev(vector[...]) points to uninitialised byte(s) ==9312== at 0x433747F: ??? (syscall-template.S:84) ==9312== by 0x7BC87C3B: send_request (server.c:228) ==9312== by 0x7BC87DEE: wine_server_call (server.c:309) ==9312== by 0x7B42FE85: wine_server_call_err (server.h:61) ==9312== by 0x7B43120A: WriteConsoleInputW (console.c:536) ==9312== by 0x4A46E46: testWaitForConsoleInput (console.c:941) ==9312== by 0x4A53CE4: func_console (console.c:3124) ==9312== by 0x4B3C953: run_test (test.h:589) ==9312== by 0x4B3CD7F: main (test.h:671) ==9312== Address 0x4d5fc0a is on thread 1's stack ==9312== in frame #5, created by testWaitForConsoleInput (console.c:919) ==9312== Uninitialised value was created by a stack allocation ==9312== at 0x4A46D76: testWaitForConsoleInput (console.c:919) ==9312== { Memcheck:Param writev(vector[...]) obj:/lib32/libc-2.23.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 debugger && touch debugger.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 wine: Unhandled page fault on write access to 0x00000000 at address 0x4a494cf (thread 0092), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 Unhandled exception: page fault on write access to 0x00000000 in 32-bit code (0x04a494cf). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:04a494cf ESP:04d4fc70 EBP:04d4fc98 EFLAGS:00000000( - -- - - - ) EAX:00000000 EBX:04b76000 ECX:00000000 EDX:00000385 ESI:04d4fdf0 EDI:7c000aa0 Stack dump: 0x04d4fc70: 7b649000 00120011 04b3e851 04873ea8 0x04d4fc80: 04d4fca0 00000000 04d4fcc8 bd448700 0x04d4fc90: 04d4fdf0 04b76000 04d4fcc8 04a4c447 0x04d4fca0: 00000003 04873ea8 00000008 04a4c365 0x04d4fcb0: 04b76000 04d4fdf0 04d4fd08 7b410000 0x04d4fcc0: 04873efe 04b76000 04d4fd08 04b31954 Backtrace: =>0 0x04a494cf doCrash+0x9f(argc=0x3, argv=0x4873ea8) [/home/austin/wine-valgrind/dlls/kernel32/tests/debugger.c:170] in kernel32_test (0x04d4fc98) 1 0x04a4c447 func_debugger+0xed() [/home/austin/wine-valgrind/dlls/kernel32/tests/debugger.c:818] in kernel32_test (0x04d4fcc8) 2 0x04b31954 run_test+0x96(name="debugger") [/home/austin/wine-valgrind/dlls/kernel32/tests/../../../include/wine/test.h:589] in kernel32_test (0x04d4fd08) 3 0x04b31d80 main+0x245(argc=, argv=0x4873ea8) [/home/austin/wine-valgrind/dlls/kernel32/tests/../../../include/wine/test.h:671] in kernel32_test (0x04d4fdd8) 4 0x04b31e0d __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in kernel32_test (0x04d4fe18) 5 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04d4fe38) 6 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04d4fe88) 7 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04d4fea8) 8 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x41f1000, frame=0x4d4ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04d4ff98) 9 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04d4ffb8) 10 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3047] in ntdll (0x04d4ffe8) 11 0x0404019d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000) 12 0x04040177 wine_switch_to_stack+0x22(func=0x7bc5f032, arg=0x7b46ad22, stack=0x4d50000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfee10248) 13 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfee102c8) 14 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfee11178) 15 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfee111b8) 16 0x0403f59b wine_init+0x14b(argc=0x4, argv=0xfee116f4, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfee11208) 17 0x7c000f80 main+0x145(argc=, argv=0xfee116f4) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfee11648) 18 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x04a494cf doCrash+0x9f [/home/austin/wine-valgrind/dlls/kernel32/tests/debugger.c:170] in kernel32_test: movb $0x0,0x0(%eax) 170 *p=0; Modules: Module Address Debug info Name (35 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 4201000- 420b000 Deferred libnss_compat.so.2 ELF 422c000- 4239000 Deferred libnss_nis.so.2 ELF 423d000- 4259000 Deferred libpthread.so.0 ELF 425a000- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4863000 Deferred libm.so.6 ELF 49a4000- 49bf000 Deferred version \-PE 49b0000- 49bf000 \ version ELF 49cc000- 49e6000 Deferred libnsl.so.1 ELF 49e6000- 49f9000 Deferred libnss_files.so.2 ELF 49f9000- 4c50000 Dwarf kernel32_test \-PE 4a00000- 4c50000 \ kernel32_test ELF 4d50000- 4ec5000 Deferred user32 \-PE 4d60000- 4ec5000 \ user32 ELF 4fc5000- 510a000 Deferred gdi32 \-PE 4fd0000- 510a000 \ gdi32 ELF 510a000- 518b000 Deferred advapi32 \-PE 5120000- 518b000 \ advapi32 ELF 51d7000- 528f000 Deferred libfreetype.so.6 ELF 53c5000- 53ea000 Deferred imm32 \-PE 53d0000- 53ea000 \ imm32 ELF 558f000- 55a8000 Deferred libz.so.1 ELF 55a8000- 55ba000 Deferred libbz2.so.1 ELF 55ba000- 55f8000 Deferred libpng16.so.16 ELF 55f8000- 5635000 Deferred libfontconfig.so.1 ELF 5635000- 565f000 Deferred libexpat.so.1 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000001dd 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 00000058 kernel32_test.exe 00000054 0 00000053 (D) Z:\home\austin\wine-valgrind\dlls\kernel32\tests\kernel32_test.exe 00000092 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 debugger.c:478: Tests skipped: "none" debugger test needs user interaction preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled page fault on write access to 0x00000000 at address 0x4a494cf (thread 0097), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled page fault on write access to 0x00000000 at address 0x4a494cf (thread 0099), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled page fault on write access to 0x00000000 at address 0x4a494cf (thread 009f), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wine: Unhandled page fault on write access to 0x00000000 at address 0x4a494cf (thread 00a4), starting debugger... preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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 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 make[1]: *** [Makefile:452: 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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfe87.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff11.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff26.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff44.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff59.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff6c.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff81.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrff96.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrffab.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrffc0.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrffd2.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrffeb.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13.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 ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr48.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9626== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9626_83a3a2a6 is empty ==9626== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr74c.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9660== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9660_307896a6 is empty ==9660== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr68fd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9692== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9692_c413d6a6 is empty ==9692== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc68b.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9727== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9727_fd85a4a6 is empty ==9727== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr22f6.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9760== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9760_1dbdbea6 is empty ==9760== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr80b1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9792== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9792_b158fea6 is empty ==9792== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrddcd.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9827== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9827_eacacca6 is empty ==9827== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr3e5a.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9860== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9860_0b02e6a6 is empty ==9860== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr9be5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9894== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9894_b7d7daa6 is empty ==9894== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrfbec.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9927== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9927_d80ff4a6 is empty ==9927== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr5b87.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9959== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9959_6bab34a6 is empty ==9959== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb980.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==9995== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9995_31b9dca6 is empty ==9995== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr1711.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10027== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10027_c5551ca6 is empty ==10027== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr7402.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10062== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10062_fec6eaa6 is empty ==10062== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrd1ae.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10095== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10095_1eff04a6 is empty ==10095== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr336d.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10130== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10130_5870d2a6 is empty ==10130== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr91ab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10164== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10164_0545c6a6 is empty ==10164== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrf0f5.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10197== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10197_257de0a6 is empty ==10197== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr54f8.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10234== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10234_782962a6 is empty ==10234== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrb1f4.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10266== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10266_0bc4a2a6 is empty ==10266== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldra74.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10315== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10315_f5ca5ca6 is empty ==10315== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr63a1.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10349== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10349_a29f50a6 is empty ==10349== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrbbab.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10382== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10382_c2d76aa6 is empty ==10382== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr13d3.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10417== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10417_fc4938a6 is empty ==10417== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldr6dbc.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc5de.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc5ee.pdb ==9557== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp9557_0662cefd is empty ==9557== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc5fa.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10443== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10443_44375ca6 is empty ==10443== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10450== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10450_1c8152a6 is empty ==10450== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10460== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10460_9aa1d6a6 is empty ==10460== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10469== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10469_8c2580a6 is empty ==10469== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10479== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10479_0a4604a6 is empty ==10479== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10487== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10487_6f2cd4a6 is empty ==10487== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==10494== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp10494_4776caa6 is empty ==10494== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/users/austin/Temp/ldrc608.pdb preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 make[1]: *** [Makefile:465: 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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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 make[1]: *** [Makefile:559: process.ok] Error 26 ../../../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 make[1]: *** [Makefile:725: volume.ok] Error 1 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/kernel32/tests' make: *** [Makefile:10699: 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:144: Test failed: GetNextPacketSize 480 vs. GCP 24000 capture.c:181: Test failed: Position 480 expected 0 capture.c:231: Test failed: Position 1440 expected 960 capture.c:261: Test failed: Position 1440 expected 960 capture.c:318: Test failed: Position 2400 gap 960 capture.c:341: Test failed: Position 3360 expected 2880 capture.c:342: Test failed: flags 1 capture.c:366: Test failed: Position 4320 expected 3360 capture.c:367: Test failed: flags 1 wine: Unhandled page fault on read access to 0x04930000 at address 0x402fa02 (thread 01e2), 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 0x04930000 in 32-bit code (0x0402fa02). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:0402fa02 ESP:062de6f0 EBP:062de728 EFLAGS:00000091( - -- S -A- -C) EAX:04930000 EBX:04037000 ECX:00000f00 EDX:00000000 ESI:049301f8 EDI:fffd0ed0 Stack dump: 0x062de6f0: 0000001c 049001c8 00000efc 062de780 0x062de700: 677eed0f 00000bf0 00000000 00000000 0x062de710: 0000001c 00000031 0402f7bb 05ad8000 0x062de720: 00989680 00000000 062de7a8 05ac40e1 0x062de730: 049001c8 0492f2f8 00000f00 00000000 0x062de740: 00000000 04683a60 00771a80 048f2ca8 Backtrace: =>0 0x0402fa02 _vgr20180ZZ_libcZdsoZa_memcpy+0x252() in vgpreload_memcheck-x86-linux.so (0x062de728) 1 0x05ac40e1 pulse_rd_loop+0x23d(This=0x48f2ca8, bytes=0x1240) [/home/austin/wine-valgrind/dlls/winepulse.drv/mmdevdrv.c:770] in winepulse (0x062de7a8) 2 0x05ac44ea pulse_rd_callback+0xd2(s=0x46636b0, bytes=0x1240, userdata=0x48f2ca8) [/home/austin/wine-valgrind/dlls/winepulse.drv/mmdevdrv.c:847] in winepulse (0x062de7d8) 3 0x05b42451 in libpulse.so.0 (+0xd450) (0x046636b0) 4 0x05bd7492 in libpulsecommon-9.0.so (+0x3e491) (0x0465fc78) 5 0x05bd9eb9 in libpulsecommon-9.0.so (+0x40eb8) (0x00000000) 6 0x05bda246 in libpulsecommon-9.0.so (+0x41245) (0x00000000) 7 0x05bdaab8 in libpulsecommon-9.0.so (+0x41ab7) (0x00000017) 8 0x05b57741 pa_mainloop_dispatch+0xd0() in libpulse.so.0 (0x00000017) 9 0x05b57b81 pa_mainloop_iterate+0x50() in libpulse.so.0 (0x062de9e8) 10 0x05b57c2c pa_mainloop_run+0x2b() in libpulse.so.0 (0x062de9e8) 11 0x05ac23b1 pulse_mainloop_thread+0x8b(tmp=0x0(nil)) [/home/austin/wine-valgrind/dlls/winepulse.drv/mmdevdrv.c:281] in winepulse (0x062de9e8) 12 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x062dea08) 13 0x7bc8fad4 call_thread_func+0x71(entry=0x5ac2325, arg=0x0(nil), frame=0x62deb18) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x062deaf8) 14 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x062deb18) 15 0x7bc9970b start_thread+0x15b(info=0x5b28fb8) [/home/austin/wine-valgrind/dlls/ntdll/thread.c:453] in ntdll (0x062df368) 16 0x04243261 start_thread+0xd0() in libpthread.so.0 (0x062df428) 17 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 18 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 19 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 20 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 21 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 22 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 23 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 24 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 25 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 26 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 27 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 28 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 29 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 30 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 31 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 32 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 33 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 34 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 35 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 36 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 37 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 38 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 39 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 40 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 41 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 42 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 43 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 44 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 45 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 46 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 47 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 48 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 49 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 50 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 51 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 52 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 53 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 54 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 55 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 56 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 57 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 58 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 59 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 60 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 61 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 62 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 63 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 64 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 65 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 66 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 67 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 68 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 69 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 70 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 71 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 72 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 73 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 74 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 75 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 76 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 77 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 78 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 79 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 80 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 81 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 82 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 83 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 84 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 85 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 86 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 87 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 88 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 89 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 90 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 91 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 92 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 93 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 94 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 95 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 96 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 97 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 98 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 99 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 100 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 101 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 102 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 103 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 104 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 105 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 106 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 107 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 108 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 109 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 110 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 111 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 112 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 113 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 114 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 115 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 116 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 117 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 118 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 119 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 120 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 121 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 122 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 123 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 124 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 125 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 126 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 127 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 128 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 129 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 130 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 131 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 132 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 133 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 134 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 135 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 136 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 137 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 138 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 139 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 140 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 141 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 142 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 143 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 144 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 145 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 146 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 147 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 148 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 149 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 150 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 151 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 152 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 153 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 154 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 155 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 156 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 157 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 158 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 159 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 160 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 161 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 162 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 163 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 164 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 165 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 166 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 167 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 168 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 169 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 170 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 171 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 172 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 173 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 174 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 175 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 176 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 177 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 178 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 179 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 180 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 181 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 182 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 183 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 184 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 185 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 186 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 187 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 188 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 189 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 190 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 191 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 192 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 193 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 194 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 195 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 196 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 197 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 198 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 199 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 200 0x0433f31e __clone+0x6d() in libc.so.6 (0x00000000) 0x0402fa02 _vgr20180ZZ_libcZdsoZa_memcpy+0x252 in vgpreload_memcheck-x86-linux.so: jnz 0x0402f9f8 _vgr20180ZZ_libcZdsoZa_memcpy+0x248 in vgpreload_memcheck-x86-linux.so Modules: Module Address Debug info Name (68 modules) ELF 4000000- 4024000 Deferred ld-linux.so.2 ELF 4025000- 4028000 Deferred vgpreload_core-x86-linux.so ELF 4028000- 4038000 Dwarf 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 Dwarf libpthread.so.0 ELF 425a000- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4a04000- 4a43000 Deferred mmdevapi_test \-PE 4a10000- 4a43000 \ mmdevapi_test ELF 4b50000- 4cd2000 Deferred ole32 \-PE 4b70000- 4cd2000 \ ole32 ELF 4dd2000- 4e53000 Deferred advapi32 \-PE 4de0000- 4e53000 \ advapi32 ELF 4e53000- 4fc8000 Deferred user32 \-PE 4e70000- 4fc8000 \ user32 ELF 50c8000- 520d000 Deferred gdi32 \-PE 50d0000- 520d000 \ gdi32 ELF 520d000- 5228000 Deferred version \-PE 5210000- 5228000 \ version ELF 5228000- 52b5000 Deferred rpcrt4 \-PE 5230000- 52b5000 \ rpcrt4 ELF 5301000- 53b9000 Deferred libfreetype.so.6 ELF 56b9000- 56d2000 Deferred libz.so.1 ELF 56d2000- 56e4000 Deferred libbz2.so.1 ELF 56e4000- 5722000 Deferred libpng16.so.16 ELF 5722000- 575f000 Deferred libfontconfig.so.1 ELF 575f000- 5789000 Deferred libexpat.so.1 ELF 57d8000- 57fd000 Deferred imm32 \-PE 57e0000- 57fd000 \ imm32 ELF 5805000- 5829000 Deferred mmdevapi \-PE 5810000- 5829000 \ mmdevapi ELF 5831000- 59a3000 Deferred oleaut32 \-PE 5850000- 59a3000 \ oleaut32 ELF 5aaf000- 5ad9000 Dwarf winepulse \-PE 5ac0000- 5ad9000 \ winepulse ELF 5b35000- 5b91000 Dwarf libpulse.so.0 ELF 5b99000- 5c28000 Dwarf libpulsecommon-9.0.so ELF 5d2c000- 5d39000 Deferred libjson-c.so.2 ELF 5d41000- 5d91000 Deferred libdbus-1.so.3 ELF 5d99000- 5d9c000 Deferred libx11-xcb.so.1 ELF 5d9c000- 5eed000 Deferred libx11.so.6 ELF 5ef1000- 5f1d000 Deferred libxcb.so.1 ELF 5f25000- 5f3f000 Deferred libice.so.6 ELF 5f47000- 5f50000 Deferred libsm.so.6 ELF 5f54000- 5f5c000 Deferred libxtst.so.6 ELF 5f60000- 5fe4000 Deferred libsndfile.so.1 ELF 5fe8000- 5fee000 Deferred libasyncns.so.0 ELF 5fee000- 5ff7000 Deferred librt.so.1 ELF 5ffb000- 5fff000 Deferred libxau.so.6 ELF 5fff000- 6006000 Deferred libxdmcp.so.6 ELF 600a000- 6010000 Deferred libuuid.so.1 ELF 6010000- 6023000 Deferred libxext.so.6 ELF 602b000- 6071000 Deferred libflac.so.8 ELF 6075000- 607d000 Deferred libogg.so.0 ELF 607d000- 60ab000 Deferred libvorbis.so.0 ELF 60af000- 613e000 Deferred libvorbisenc.so.2 ELF 6142000- 615a000 Deferred libresolv.so.2 ELF 6162000- 617e000 Deferred libbsd.so.0 ELF 7b400000-7b7f1000 Deferred kernel32 \-PE 7b410000-7b7f1000 \ kernel32 ELF 7bc00000-7bd0f000 Dwarf ntdll \-PE 7bc10000-7bd0f000 \ ntdll ELF 7c000000-7c004000 Deferred Threads: process tid prio (all id:s are in hex) 0000000e services.exe 000000b1 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000001dd 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 0000003e (D) Z:\home\austin\wine-valgrind\dlls\mmdevapi\tests\mmdevapi_test.exe 000001e2 15 <== 000001e1 0 000001df 0 System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 /bin/sh: line 1: 11020 Killed ../../../tools/runtest -q -P wine -T ../../.. -M mmdevapi.dll -p mmdevapi_test.exe.so capture make[1]: *** [Makefile:175: capture.ok] Error 137 ../../../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' make: *** [Makefile:11365: 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 ==11144== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/bin/libmono-2.0-x86.pdb ==11144== Invalid write of size 1 ==11144== at 0x402DAB8: strcat (vg_replace_strmem.c:303) ==11144== by 0x7BC8FDBA: NTDLL_strcat (string.c:90) ==11144== by 0x6C69865F: ??? ==11144== Address 0x6845753 is 0 bytes after a block of size 51 alloc'd ==11144== at 0x7BC50754: notify_alloc (heap.c:254) ==11144== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11144== by 0x6489E26: msvcrt_heap_alloc (heap.c:70) ==11144== by 0x648AA78: MSVCRT_malloc (heap.c:437) ==11144== by 0x6C741669: ??? ==11144== by 0x6C698626: ??? ==11144== { 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 ==11175== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/bin/libmono-2.0-x86.pdb ==11175== Invalid write of size 1 ==11175== at 0x402DAB8: strcat (vg_replace_strmem.c:303) ==11175== by 0x7BC8FDBA: NTDLL_strcat (string.c:90) ==11175== by 0x6C69865F: ??? ==11175== Address 0x629577b is 0 bytes after a block of size 51 alloc'd ==11175== at 0x7BC50754: notify_alloc (heap.c:254) ==11175== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11175== by 0x5DD9E26: msvcrt_heap_alloc (heap.c:70) ==11175== by 0x5DDAA78: MSVCRT_malloc (heap.c:437) ==11175== by 0x6C741669: ??? ==11175== by 0x6C698626: ??? ==11175== { Memcheck:Addr1 fun:strcat fun:NTDLL_strcat obj:* } ==11175== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11175_54b6b4a6 is empty ==11175== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/lib/mono/4.5/mscorlib.pdb ==11175== 64 bytes in 1 blocks are definitely lost in loss record 238 of 442 ==11175== at 0x7BC50754: notify_alloc (heap.c:254) ==11175== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11175== by 0x5DD9E26: msvcrt_heap_alloc (heap.c:70) ==11175== by 0x5DDA9BA: MSVCRT_calloc (heap.c:405) ==11175== by 0x6C7416C4: ??? ==11175== by 0x6C5F2CFD: ??? ==11175== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11175== 664 bytes in 26 blocks are definitely lost in loss record 396 of 442 ==11175== at 0x7BC50754: notify_alloc (heap.c:254) ==11175== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11175== by 0x5DD9E26: msvcrt_heap_alloc (heap.c:70) ==11175== by 0x5DDA9BA: MSVCRT_calloc (heap.c:405) ==11175== by 0x6C7416C4: ??? ==11175== by 0x6C66B5B1: ??? ==11175== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11166== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/bin/libmono-2.0-x86.pdb ==11166== Invalid write of size 1 ==11166== at 0x402DAB8: strcat (vg_replace_strmem.c:303) ==11166== by 0x7BC8FDBA: NTDLL_strcat (string.c:90) ==11166== by 0x6C69865F: ??? ==11166== Address 0x62f574b is 0 bytes after a block of size 51 alloc'd ==11166== at 0x7BC50754: notify_alloc (heap.c:254) ==11166== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11166== by 0x5F2DE26: msvcrt_heap_alloc (heap.c:70) ==11166== by 0x5F2EA78: MSVCRT_malloc (heap.c:437) ==11166== by 0x6C741669: ??? ==11166== by 0x6C698626: ??? ==11166== { Memcheck:Addr1 fun:strcat fun:NTDLL_strcat obj:* } ==11166== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11166_ceb51412 is empty ==11166== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/mono/mono-2.0/lib/mono/4.5/mscorlib.pdb ==11166== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11166_ceb51412 is empty ==11166== 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 ==11166== 52 bytes in 1 blocks are possibly lost in loss record 2,917 of 3,470 ==11166== at 0x7BC50754: notify_alloc (heap.c:254) ==11166== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11166== by 0x5F2DE26: msvcrt_heap_alloc (heap.c:70) ==11166== by 0x5F2E9BA: MSVCRT_calloc (heap.c:405) ==11166== by 0x6C7416C4: ??? ==11166== by 0x6C696339: ??? ==11166== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11166== 64 bytes in 1 blocks are definitely lost in loss record 2,968 of 3,470 ==11166== at 0x7BC50754: notify_alloc (heap.c:254) ==11166== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11166== by 0x5F2DE26: msvcrt_heap_alloc (heap.c:70) ==11166== by 0x5F2E9BA: MSVCRT_calloc (heap.c:405) ==11166== by 0x6C7416C4: ??? ==11166== by 0x6C5F2CFD: ??? ==11166== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11166== 208 bytes in 8 blocks are possibly lost in loss record 3,198 of 3,470 ==11166== at 0x7BC50754: notify_alloc (heap.c:254) ==11166== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11166== by 0x5F2DE26: msvcrt_heap_alloc (heap.c:70) ==11166== by 0x5F2E9BA: MSVCRT_calloc (heap.c:405) ==11166== by 0x6C7416C4: ??? ==11166== by 0x6C66B5B1: ??? ==11166== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11166== 9,776 bytes in 188 blocks are definitely lost in loss record 3,443 of 3,470 ==11166== at 0x7BC50754: notify_alloc (heap.c:254) ==11166== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11166== by 0x5F2DE26: msvcrt_heap_alloc (heap.c:70) ==11166== by 0x5F2E9BA: MSVCRT_calloc (heap.c:405) ==11166== by 0x6C7416C4: ??? ==11166== by 0x6C696339: ??? ==11166== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11166== 58,260 bytes in 2,278 blocks are definitely lost in loss record 3,465 of 3,470 ==11166== at 0x7BC50754: notify_alloc (heap.c:254) ==11166== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11166== by 0x5F2DE26: msvcrt_heap_alloc (heap.c:70) ==11166== by 0x5F2E9BA: MSVCRT_calloc (heap.c:405) ==11166== by 0x6C7416C4: ??? ==11166== by 0x6C66B5B1: ??? ==11166== { 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 ==11228== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11228_cab8de78 is empty ==11228== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==11228== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11228_cab8de78 is empty ==11228== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==11228== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11228_cab8de78 is empty ==11228== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==11228== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11228_cab8de78 is empty ==11228== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==11228== 12 bytes in 1 blocks are definitely lost in loss record 218 of 2,881 ==11228== at 0x7BC50754: notify_alloc (heap.c:254) ==11228== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11228== by 0x67740A0: heap_alloc (mshtml_private.h:1157) ==11228== by 0x677A9B7: nsSupportsWeakReference_GetWeakReference (nsembed.c:1952) ==11228== by 0x6BB64A55: ??? ==11228== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:nsSupportsWeakReference_GetWeakReference obj:* } ==11228== 128 bytes in 4 blocks are possibly lost in loss record 2,015 of 2,881 ==11228== at 0x7BC50754: notify_alloc (heap.c:254) ==11228== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11228== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==11228== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==11228== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==11228== by 0x6A0D8113: ??? ==11228== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==11228== 512 bytes in 15 blocks are possibly lost in loss record 2,416 of 2,881 ==11228== at 0x7BC50754: notify_alloc (heap.c:254) ==11228== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11228== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11228== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11228== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11228== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11228== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11228== by 0x5C3FC83: pre_process_uri (uri.c:786) ==11228== by 0x5C4D176: CreateUri (uri.c:5738) ==11228== by 0x6799FCA: create_uri (persist.c:185) ==11228== by 0x678AA63: nsIOServiceHook_NewURI (nsio.c:3890) ==11228== by 0x69F3AFD9: ??? ==11228== { 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:* } ==11228== 800 bytes in 2 blocks are possibly lost in loss record 2,562 of 2,881 ==11228== at 0x7BC50754: notify_alloc (heap.c:254) ==11228== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11228== by 0x86F1F62: msvcrt_heap_realloc (heap.c:102) ==11228== by 0x86F2B15: MSVCRT_realloc (heap.c:457) ==11228== by 0x69E78C00: ??? ==11228== { 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 ==11293== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11293_31e62225 is empty ==11293== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==11293== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11293_31e62225 is empty ==11293== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==11293== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11293_31e62225 is empty ==11293== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==11293== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11293_31e62225 is empty ==11293== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==11293== 128 bytes in 4 blocks are possibly lost in loss record 2,578 of 3,706 ==11293== at 0x7BC50754: notify_alloc (heap.c:254) ==11293== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11293== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==11293== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==11293== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==11293== by 0x6A0D8113: ??? ==11293== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==11293== 416 bytes in 7 blocks are possibly lost in loss record 3,063 of 3,706 ==11293== at 0x7BC50754: notify_alloc (heap.c:254) ==11293== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11293== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11293== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11293== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11293== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11293== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11293== by 0x5482A5C: SysAllocString (oleaut.c:247) ==11293== by 0x5C535FA: combine_uri (uri.c:6465) ==11293== by 0x5C54790: CoInternetCombineUrlEx (uri.c:6816) ==11293== by 0x6D3CDFA: combine_url (nsio.c:152) ==11293== by 0x6D49A40: nsIOServiceHook_NewURI (nsio.c:3888) ==11293== by 0x69F3AFD9: ??? ==11293== { 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:* } ==11293== 1,280 bytes in 39 blocks are possibly lost in loss record 3,360 of 3,706 ==11293== at 0x7BC50754: notify_alloc (heap.c:254) ==11293== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11293== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11293== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11293== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11293== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11293== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11293== by 0x5C43C83: pre_process_uri (uri.c:786) ==11293== by 0x5C51176: CreateUri (uri.c:5738) ==11293== by 0x6D58FCA: create_uri (persist.c:185) ==11293== by 0x6D49A63: nsIOServiceHook_NewURI (nsio.c:3890) ==11293== by 0x69F3AFD9: ??? ==11293== { 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:* } ==11293== 1,387 bytes in 6 blocks are possibly lost in loss record 3,385 of 3,706 ==11293== at 0x7BC50754: notify_alloc (heap.c:254) ==11293== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11293== by 0x8835F62: msvcrt_heap_realloc (heap.c:102) ==11293== by 0x8836B15: MSVCRT_realloc (heap.c:457) ==11293== by 0x69E78C00: ??? ==11293== { 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 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 ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==11390== Invalid read of size 2 ==11390== at 0x54B30C1: DispCallFunc (typelib.c:6696) ==11390== by 0x673C0D1: invoke_builtin_function (dispex.c:1112) ==11390== by 0x673C3BB: function_invoke (dispex.c:1163) ==11390== by 0x673C669: invoke_builtin_prop (dispex.c:1231) ==11390== by 0x673D595: DispatchEx_InvokeEx (dispex.c:1522) ==11390== by 0x157082D8: IDispatchEx_InvokeEx (dispex.h:318) ==11390== by 0x157082D8: disp_call (???:0) ==11390== by 0x1570B566: exprval_call (engine.c:327) ==11390== by 0x1570DEAF: interp_call_member (engine.c:1185) ==11390== by 0x15712CB8: enter_bytecode (engine.c:2712) ==11390== by 0x157139EA: exec_source (engine.c:2967) ==11390== by 0x15715E9C: invoke_source (function.c:257) ==11390== by 0x157162EB: Function_invoke (function.c:350) ==11390== by 0x15705AD7: invoke_prop_func (dispex.c:383) ==11390== by 0x15706D63: DispatchEx_InvokeEx (dispex.c:684) ==11390== by 0x6782F81: IDispatchEx_InvokeEx (dispex.h:318) ==11390== by 0x6782F81: call_disp_func (???:0) ==11390== by 0x67833D4: call_event_handlers (htmlevent.c:1003) ==11390== by 0x6783E73: fire_event_obj (htmlevent.c:1137) ==11390== by 0x67844C1: fire_event (htmlevent.c:1246) ==11390== by 0x67F5817: handle_load (nsevents.c:282) ==11390== by 0x6B18A8A8: ??? ==11390== Address 0x7549db0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11390== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11390== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11390== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11390== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11390== by 0x5482A5C: SysAllocString (oleaut.c:247) ==11390== by 0x54B5B12: ITypeInfo_fnGetDocumentation (typelib.c:7419) ==11390== by 0x6739211: ITypeInfo_GetDocumentation (oaidl.h:1599) ==11390== by 0x6739211: add_func_info (???:0) ==11390== by 0x67398A9: process_interface (dispex.c:345) ==11390== by 0x6739BA9: preprocess_dispex_data (dispex.c:408) ==11390== by 0x673DF91: init_dispex_with_compat_mode (dispex.c:1761) ==11390== by 0x680EF9F: init_dispex (mshtml_private.h:325) ==11390== by 0x681209F: OmNavigator_Create (omnavigator.c:1088) ==11390== by 0x67D3DD3: HTMLWindow2_get_navigator (htmlwindow.c:909) ==11390== by 0x4A9C97C: IHTMLWindow2_get_navigator (mshtml.h:51857) ==11390== by 0x4A9C97C: test_script_run (???:0) ==11390== by 0x4A9D5AF: ActiveScriptParse_ParseScriptText (script.c:2472) ==11390== by 0x6825BC2: IActiveScriptParse32_ParseScriptText (activscp.h:1363) ==11390== by 0x6825BC2: parse_elem_text (???:0) ==11390== by 0x68267A3: parse_inline_script (script.c:1103) ==11390== by 0x68269F1: parse_script_elem (script.c:1142) ==11390== { 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:* } ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/softokn3.pdb ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nssdbm3.pdb ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/freebl3.pdb ==11390== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11390_33050b72 is empty ==11390== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nssckbi.pdb ==11390== 8 bytes in 1 blocks are definitely lost in loss record 172 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x678066E: heap_alloc_zero (mshtml_private.h:1162) ==11390== by 0x67848B3: alloc_handler_vector (htmlevent.c:1330) ==11390== by 0x6784DB8: set_event_handler_disp (htmlevent.c:1438) ==11390== by 0x67854D9: bind_target_event (htmlevent.c:1598) ==11390== by 0x682834D: bind_event_scripts (script.c:1592) ==11390== by 0x67E25D6: run_end_load (mutation.c:293) ==11390== by 0x67E3097: nsRunnable_Run (mutation.c:512) ==11390== by 0x6A83E0A0: ??? ==11390== by 0x67E3546: nsDocumentObserver_EndLoad (mutation.c:669) ==11390== by 0x6A915FF6: ??? ==11390== { 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:* } ==11390== 12 bytes in 1 blocks are definitely lost in loss record 283 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x67ED0A0: heap_alloc (mshtml_private.h:1157) ==11390== by 0x67F39B7: nsSupportsWeakReference_GetWeakReference (nsembed.c:1952) ==11390== by 0x6BB64A55: ??? ==11390== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:nsSupportsWeakReference_GetWeakReference obj:* } ==11390== 20 bytes in 1 blocks are possibly lost in loss record 581 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F51DD: ??? ==11390== by 0x87EB1D5: ??? ==11390== by 0x87EB348: ??? ==11390== by 0x87D2973: ??? ==11390== by 0x69E65432: ??? ==11390== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* obj:* obj:* obj:* obj:* } ==11390== 24 bytes in 1 blocks are definitely lost in loss record 685 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x682349F: heap_alloc (mshtml_private.h:1157) ==11390== by 0x6825999: set_script_elem_readystate (script.c:762) ==11390== by 0x6827188: doc_insert_script (script.c:1290) ==11390== by 0x67E2840: run_insert_script (mutation.c:340) ==11390== by 0x67E3097: nsRunnable_Run (mutation.c:512) ==11390== by 0x6A83E0A0: ??? ==11390== by 0x67E3C78: nsDocumentObserver_AttemptToExecuteScript (mutation.c:797) ==11390== by 0x6A912591: ??? ==11390== { 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:* } ==11390== 32 bytes in 4 blocks are definitely lost in loss record 1,037 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x678066E: heap_alloc_zero (mshtml_private.h:1162) ==11390== by 0x67848B3: alloc_handler_vector (htmlevent.c:1330) ==11390== by 0x6784DB8: set_event_handler_disp (htmlevent.c:1438) ==11390== by 0x67856B6: check_event_attr (htmlevent.c:1633) ==11390== by 0x67E387D: nsDocumentObserver_BindToDocument (mutation.c:747) ==11390== by 0x6A9124CF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,629 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87EF5D7: ??? ==11390== by 0x87EB243: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,630 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87EE6E4: ??? ==11390== by 0x87EF620: ??? ==11390== by 0x87EB243: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,631 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x87EE188: ??? ==11390== by 0x87EE728: ??? ==11390== by 0x87EF620: ??? ==11390== by 0x87EB243: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,632 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x87F4929: ??? ==11390== by 0x87EE73B: ??? ==11390== by 0x87EF620: ??? ==11390== by 0x87EB243: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,633 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x87F48F7: ??? ==11390== by 0x87EE74E: ??? ==11390== by 0x87EF620: ??? ==11390== by 0x87EB243: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,634 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x87F48F7: ??? ==11390== by 0x87EE761: ??? ==11390== by 0x87EF620: ??? ==11390== by 0x87EB243: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,635 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87EA480: ??? ==11390== by 0x87EB2EC: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,636 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x87EE188: ??? ==11390== by 0x87EE1E2: ??? ==11390== by 0x87EA4AD: ??? ==11390== by 0x87EB2EC: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,637 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x87F4929: ??? ==11390== by 0x87EE1F9: ??? ==11390== by 0x87EA4AD: ??? ==11390== by 0x87EB2EC: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,638 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x66F0CE44: ??? ==11390== by 0x66F0B7DB: ??? ==11390== by 0x66F057FD: ??? ==11390== by 0x66F02095: ??? ==11390== by 0x87C8BBA: ??? ==11390== by 0x87C90B3: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,639 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F0B971: ??? ==11390== by 0x66F057FD: ??? ==11390== by 0x66F02095: ??? ==11390== by 0x87C8BBA: ??? ==11390== by 0x87C90B3: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,640 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F0B992: ??? ==11390== by 0x66F057FD: ??? ==11390== by 0x66F02095: ??? ==11390== by 0x87C8BBA: ??? ==11390== by 0x87C90B3: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,641 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x66F0CE44: ??? ==11390== by 0x66F04728: ??? ==11390== by 0x66F0467B: ??? ==11390== by 0x66F05BFD: ??? ==11390== by 0x66F01FF8: ??? ==11390== by 0x87DA66E: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,642 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F047D7: ??? ==11390== by 0x66F0467B: ??? ==11390== by 0x66F05BFD: ??? ==11390== by 0x66F01FF8: ??? ==11390== by 0x87DA66E: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,643 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F04800: ??? ==11390== by 0x66F0467B: ??? ==11390== by 0x66F05BFD: ??? ==11390== by 0x66F01FF8: ??? ==11390== by 0x87DA66E: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,644 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F0481A: ??? ==11390== by 0x66F0467B: ??? ==11390== by 0x66F05BFD: ??? ==11390== by 0x66F01FF8: ??? ==11390== by 0x87DA66E: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,645 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F04834: ??? ==11390== by 0x66F0467B: ??? ==11390== by 0x66F05BFD: ??? ==11390== by 0x66F01FF8: ??? ==11390== by 0x87DA66E: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,646 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x66F0CE44: ??? ==11390== by 0x66F026F8: ??? ==11390== by 0x66F0531E: ??? ==11390== by 0x66F066A3: ??? ==11390== by 0x66F01EEE: ??? ==11390== by 0x87DA7E7: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,647 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x894FFD1: ??? ==11390== by 0x66F02793: ??? ==11390== by 0x66F0531E: ??? ==11390== by 0x66F066A3: ??? ==11390== by 0x66F01EEE: ??? ==11390== by 0x87DA7E7: ??? ==11390== by 0x87DAB6C: ??? ==11390== by 0x87C9209: ??? ==11390== by 0x87D27DE: ??? ==11390== by 0x87D2954: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,648 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87BA91F: ??? ==11390== by 0x87EB15B: ??? ==11390== by 0x87EB33E: ??? ==11390== by 0x87D2973: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,649 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87BA9BB: ??? ==11390== by 0x87EB15B: ??? ==11390== by 0x87EB33E: ??? ==11390== by 0x87D2973: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 40 bytes in 1 blocks are possibly lost in loss record 1,650 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87F4E39: ??? ==11390== by 0x87F5168: ??? ==11390== by 0x87F51EB: ??? ==11390== by 0x87EB1D5: ??? ==11390== by 0x87EB348: ??? ==11390== by 0x87D2973: ??? ==11390== by 0x69E65432: ??? ==11390== { 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:* } ==11390== 72 bytes in 3 blocks are possibly lost in loss record 2,130 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x682349F: heap_alloc (mshtml_private.h:1157) ==11390== by 0x6825999: set_script_elem_readystate (script.c:762) ==11390== by 0x6827188: doc_insert_script (script.c:1290) ==11390== by 0x67AB8DA: HTMLScriptElement_bind_to_tree (htmlscript.c:408) ==11390== by 0x67E226C: run_bind_to_tree (mutation.c:232) ==11390== by 0x67E3097: nsRunnable_Run (mutation.c:512) ==11390== by 0x6A841D7D: ??? ==11390== { 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:* } ==11390== 72 bytes in 3 blocks are definitely lost in loss record 2,132 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x682349F: heap_alloc (mshtml_private.h:1157) ==11390== by 0x6825999: set_script_elem_readystate (script.c:762) ==11390== by 0x6827188: doc_insert_script (script.c:1290) ==11390== by 0x67AB8DA: HTMLScriptElement_bind_to_tree (htmlscript.c:408) ==11390== by 0x67E226C: run_bind_to_tree (mutation.c:232) ==11390== by 0x67E3097: nsRunnable_Run (mutation.c:512) ==11390== by 0x6A841D7D: ??? ==11390== { 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:* } ==11390== 80 bytes in 2 blocks are possibly lost in loss record 2,237 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87BA91F: ??? ==11390== by 0x87EB15B: ??? ==11390== by 0x87EB2AC: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 80 bytes in 2 blocks are possibly lost in loss record 2,238 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x87F42C0: ??? ==11390== by 0x87BA9BB: ??? ==11390== by 0x87EB15B: ??? ==11390== by 0x87EB2AC: ??? ==11390== by 0x887CBBE: ??? ==11390== by 0x887D1E2: ??? ==11390== by 0x69E652EF: ??? ==11390== { 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:* } ==11390== 96 bytes in 4 blocks are possibly lost in loss record 2,464 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x89502DD: ??? ==11390== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11390== 128 bytes in 4 blocks are possibly lost in loss record 2,665 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==11390== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==11390== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==11390== by 0x6A0D8113: ??? ==11390== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==11390== 136 bytes in 1 blocks are definitely lost in loss record 2,819 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x93B6985: WINTRUST_Alloc (wintrust_main.c:47) ==11390== by 0x93B6F0D: WINTRUST_AllocateProviderData (wintrust_main.c:207) ==11390== by 0x93B71E1: WINTRUST_DefaultVerify (wintrust_main.c:286) ==11390== by 0x93B90B4: WinVerifyTrust (wintrust_main.c:731) ==11390== by 0x69F18B8B: ??? ==11390== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:WINTRUST_Alloc fun:WINTRUST_AllocateProviderData fun:WINTRUST_DefaultVerify fun:WinVerifyTrust obj:* } ==11390== 192 bytes in 2 blocks are possibly lost in loss record 2,957 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x570E165: heap_alloc_zero (internet.h:99) ==11390== by 0x570F458: create_netconn (netconnection.c:348) ==11390== by 0x56FEAF6: open_http_connection (http.c:4851) ==11390== by 0x56FF235: HTTP_HttpSendRequestW (http.c:4992) ==11390== by 0x570010C: AsyncHttpSendRequestProc (http.c:5261) ==11390== by 0x570C094: INTERNET_WorkerThreadFunc (internet.c:3724) ==11390== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==11390== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==11390== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==11390== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==11390== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==11390== by 0x7BC9970A: start_thread (thread.c:453) ==11390== by 0x4243260: start_thread (pthread_create.c:333) ==11390== by 0x433F31D: clone (clone.S:114) ==11390== { 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 } ==11390== 192 bytes in 2 blocks are possibly lost in loss record 2,958 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11390== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11390== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11390== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11390== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11390== by 0x5C4FF4A: combine_uri (uri.c:6671) ==11390== by 0x5C50790: CoInternetCombineUrlEx (uri.c:6816) ==11390== by 0x67F6DFA: combine_url (nsio.c:152) ==11390== by 0x6803A40: nsIOServiceHook_NewURI (nsio.c:3888) ==11390== by 0x69F3AFD9: ??? ==11390== { 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:* } ==11390== 240 bytes in 3 blocks are possibly lost in loss record 3,021 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11390== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11390== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11390== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11390== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11390== by 0x5482A5C: SysAllocString (oleaut.c:247) ==11390== by 0x5C4F5FA: combine_uri (uri.c:6465) ==11390== by 0x5C50790: CoInternetCombineUrlEx (uri.c:6816) ==11390== by 0x67F6DFA: combine_url (nsio.c:152) ==11390== by 0x6803A40: nsIOServiceHook_NewURI (nsio.c:3888) ==11390== by 0x69F3AFD9: ??? ==11390== { 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:* } ==11390== 448 bytes in 6 blocks are possibly lost in loss record 3,347 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11390== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11390== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11390== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11390== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11390== by 0x5482A5C: SysAllocString (oleaut.c:247) ==11390== by 0x5C490CC: Uri_GetPropertyBSTR (uri.c:4376) ==11390== by 0x5C4A2FC: IUri_GetPropertyBSTR (urlmon.h:6761) ==11390== by 0x5C4A2FC: Uri_GetDisplayUri (???:0) ==11390== by 0x5C3CC6B: IUri_GetDisplayUri (urlmon.h:6779) ==11390== by 0x5C3CC6B: create_moniker (???:0) ==11390== by 0x5C3D20A: CreateURLMonikerEx2 (umon.c:708) ==11390== by 0x67F9E24: async_open (nsio.c:1033) ==11390== by 0x67FA538: nsChannel_AsyncOpen (nsio.c:1161) ==11390== by 0x6A59939E: ??? ==11390== { 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:* } ==11390== 986 bytes in 3 blocks are possibly lost in loss record 3,660 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11390== by 0x8715F62: msvcrt_heap_realloc (heap.c:102) ==11390== by 0x8716B15: MSVCRT_realloc (heap.c:457) ==11390== by 0x69E78C00: ??? ==11390== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==11390== 1,192 bytes in 13 blocks are possibly lost in loss record 3,716 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x8715E26: msvcrt_heap_alloc (heap.c:70) ==11390== by 0x87169BA: MSVCRT_calloc (heap.c:405) ==11390== by 0x89390C1: ??? ==11390== by 0x895002A: ??? ==11390== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:msvcrt_heap_alloc fun:MSVCRT_calloc obj:* obj:* } ==11390== 4,960 bytes in 64 blocks are possibly lost in loss record 3,999 of 4,221 ==11390== at 0x7BC50754: notify_alloc (heap.c:254) ==11390== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11390== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11390== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11390== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11390== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11390== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11390== by 0x5C3FC83: pre_process_uri (uri.c:786) ==11390== by 0x5C4D176: CreateUri (uri.c:5738) ==11390== by 0x6812FCA: create_uri (persist.c:185) ==11390== by 0x6803A63: nsIOServiceHook_NewURI (nsio.c:3890) ==11390== by 0x69F3AFD9: ??? ==11390== { 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 ==11478== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11478_251af0ea is empty ==11478== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==11478== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11478_251af0ea is empty ==11478== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==11478== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11478_251af0ea is empty ==11478== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==11478== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11478_251af0ea is empty ==11478== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==11478== Invalid read of size 2 ==11478== at 0x4AC2BAE: wine_dbgstr_wn (test.h:479) ==11478== by 0x4AA14EB: wine_dbgstr_w (test.h:70) ==11478== by 0x4AAE858: test_body_style (style.c:1575) ==11478== by 0x4ABB694: basic_style_test (style.c:2993) ==11478== by 0x4ABC24C: run_test (style.c:3202) ==11478== by 0x4ABC30F: func_style (style.c:3214) ==11478== by 0x4AC3106: run_test (test.h:589) ==11478== by 0x4AC3532: main (test.h:671) ==11478== Address 0x49c6a4c is 716 bytes inside a block of size 896 free'd ==11478== at 0x7BC507C3: notify_free (heap.c:262) ==11478== by 0x7BC55296: RtlReAllocateHeap (heap.c:1888) ==11478== by 0x66DAC2C: heap_realloc_zero (mshtml_private.h:1172) ==11478== by 0x66DB301: add_func_info (dispex.c:253) ==11478== by 0x66DB8A9: process_interface (dispex.c:345) ==11478== by 0x66DBBA9: preprocess_dispex_data (dispex.c:408) ==11478== by 0x66DFF91: init_dispex_with_compat_mode (dispex.c:1761) ==11478== by 0x6772BF0: init_dispex (mshtml_private.h:325) ==11478== by 0x677D037: create_inner_window (htmlwindow.c:3022) ==11478== by 0x677D371: create_pending_window (htmlwindow.c:3108) ==11478== by 0x677D214: HTMLOuterWindow_Create (htmlwindow.c:3076) ==11478== by 0x67083AC: HTMLDocument_Create (htmldoc.c:5134) ==11478== by 0x67806CF: ClassFactory_CreateInstance (main.c:298) ==11478== by 0x4C4B5AB: IClassFactory_CreateInstance (unknwn.h:236) ==11478== by 0x4C4B5AB: CoCreateInstanceEx (???:0) ==11478== by 0x4C4B0D2: CoCreateInstance (compobj.c:3201) ==11478== by 0x4ABBBFF: create_document (style.c:3064) ==11478== by 0x4ABBF05: create_doc_with_string (style.c:3145) ==11478== by 0x4ABC1D8: run_test (style.c:3191) ==11478== by 0x4ABC30F: func_style (style.c:3214) ==11478== by 0x4AC3106: run_test (test.h:589) ==11478== Block was alloc'd at ==11478== at 0x7BC50754: notify_alloc (heap.c:254) ==11478== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11478== by 0x66DAC2C: heap_realloc_zero (mshtml_private.h:1172) ==11478== by 0x66DB301: add_func_info (dispex.c:253) ==11478== by 0x66DB8A9: process_interface (dispex.c:345) ==11478== by 0x66DBBA9: preprocess_dispex_data (dispex.c:408) ==11478== by 0x66DFF91: init_dispex_with_compat_mode (dispex.c:1761) ==11478== by 0x6772BF0: init_dispex (mshtml_private.h:325) ==11478== by 0x677D037: create_inner_window (htmlwindow.c:3022) ==11478== by 0x677D371: create_pending_window (htmlwindow.c:3108) ==11478== by 0x677D214: HTMLOuterWindow_Create (htmlwindow.c:3076) ==11478== by 0x67083AC: HTMLDocument_Create (htmldoc.c:5134) ==11478== by 0x67806CF: ClassFactory_CreateInstance (main.c:298) ==11478== by 0x4C4B5AB: IClassFactory_CreateInstance (unknwn.h:236) ==11478== by 0x4C4B5AB: CoCreateInstanceEx (???:0) ==11478== by 0x4C4B0D2: CoCreateInstance (compobj.c:3201) ==11478== by 0x4ABBBFF: create_document (style.c:3064) ==11478== by 0x4ABBF05: create_doc_with_string (style.c:3145) ==11478== by 0x4ABC1D8: run_test (style.c:3191) ==11478== by 0x4ABC30F: func_style (style.c:3214) ==11478== by 0x4AC3106: run_test (test.h:589) ==11478== { 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 } ==11478== Invalid read of size 2 ==11478== at 0x4AC2C2C: wine_dbgstr_wn (test.h:489) ==11478== by 0x4AA14EB: wine_dbgstr_w (test.h:70) ==11478== by 0x4AAE858: test_body_style (style.c:1575) ==11478== by 0x4ABB694: basic_style_test (style.c:2993) ==11478== by 0x4ABC24C: run_test (style.c:3202) ==11478== by 0x4ABC30F: func_style (style.c:3214) ==11478== by 0x4AC3106: run_test (test.h:589) ==11478== by 0x4AC3532: main (test.h:671) ==11478== Address 0x49c6a4c is 716 bytes inside a block of size 896 free'd ==11478== at 0x7BC507C3: notify_free (heap.c:262) ==11478== by 0x7BC55296: RtlReAllocateHeap (heap.c:1888) ==11478== by 0x66DAC2C: heap_realloc_zero (mshtml_private.h:1172) ==11478== by 0x66DB301: add_func_info (dispex.c:253) ==11478== by 0x66DB8A9: process_interface (dispex.c:345) ==11478== by 0x66DBBA9: preprocess_dispex_data (dispex.c:408) ==11478== by 0x66DFF91: init_dispex_with_compat_mode (dispex.c:1761) ==11478== by 0x6772BF0: init_dispex (mshtml_private.h:325) ==11478== by 0x677D037: create_inner_window (htmlwindow.c:3022) ==11478== by 0x677D371: create_pending_window (htmlwindow.c:3108) ==11478== by 0x677D214: HTMLOuterWindow_Create (htmlwindow.c:3076) ==11478== by 0x67083AC: HTMLDocument_Create (htmldoc.c:5134) ==11478== by 0x67806CF: ClassFactory_CreateInstance (main.c:298) ==11478== by 0x4C4B5AB: IClassFactory_CreateInstance (unknwn.h:236) ==11478== by 0x4C4B5AB: CoCreateInstanceEx (???:0) ==11478== by 0x4C4B0D2: CoCreateInstance (compobj.c:3201) ==11478== by 0x4ABBBFF: create_document (style.c:3064) ==11478== by 0x4ABBF05: create_doc_with_string (style.c:3145) ==11478== by 0x4ABC1D8: run_test (style.c:3191) ==11478== by 0x4ABC30F: func_style (style.c:3214) ==11478== by 0x4AC3106: run_test (test.h:589) ==11478== Block was alloc'd at ==11478== at 0x7BC50754: notify_alloc (heap.c:254) ==11478== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11478== by 0x66DAC2C: heap_realloc_zero (mshtml_private.h:1172) ==11478== by 0x66DB301: add_func_info (dispex.c:253) ==11478== by 0x66DB8A9: process_interface (dispex.c:345) ==11478== by 0x66DBBA9: preprocess_dispex_data (dispex.c:408) ==11478== by 0x66DFF91: init_dispex_with_compat_mode (dispex.c:1761) ==11478== by 0x6772BF0: init_dispex (mshtml_private.h:325) ==11478== by 0x677D037: create_inner_window (htmlwindow.c:3022) ==11478== by 0x677D371: create_pending_window (htmlwindow.c:3108) ==11478== by 0x677D214: HTMLOuterWindow_Create (htmlwindow.c:3076) ==11478== by 0x67083AC: HTMLDocument_Create (htmldoc.c:5134) ==11478== by 0x67806CF: ClassFactory_CreateInstance (main.c:298) ==11478== by 0x4C4B5AB: IClassFactory_CreateInstance (unknwn.h:236) ==11478== by 0x4C4B5AB: CoCreateInstanceEx (???:0) ==11478== by 0x4C4B0D2: CoCreateInstance (compobj.c:3201) ==11478== by 0x4ABBBFF: create_document (style.c:3064) ==11478== by 0x4ABBF05: create_doc_with_string (style.c:3145) ==11478== by 0x4ABC1D8: run_test (style.c:3191) ==11478== by 0x4ABC30F: func_style (style.c:3214) ==11478== by 0x4AC3106: run_test (test.h:589) ==11478== { 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 } ==11478== Thread 40: ==11478== Invalid read of size 1 ==11478== at 0x43758BD: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:129) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247954 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4375918: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:156) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247955 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4375937: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:165) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247956 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4375945: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:166) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247957 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4374C60: get_cie_encoding (unwind-dw2-fde.c:302) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e71 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x402DDF8: __GI_strlen (vg_replace_strmem.c:455) ==11478== by 0x4374C80: get_cie_encoding (unwind-dw2-fde.c:306) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e71 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:__GI_strlen fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x402DE03: __GI_strlen (vg_replace_strmem.c:455) ==11478== by 0x4374C80: get_cie_encoding (unwind-dw2-fde.c:306) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e72 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:__GI_strlen fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4376C93: read_uleb128 (unwind-pe.h:157) ==11478== by 0x4374C91: get_cie_encoding (unwind-dw2-fde.c:307) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e74 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:read_uleb128 fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4376CD3: read_sleb128 (unwind-pe.h:179) ==11478== by 0x4374CA1: get_cie_encoding (unwind-dw2-fde.c:308) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e75 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:read_sleb128 fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4376C93: read_uleb128 (unwind-pe.h:157) ==11478== by 0x4374CAD: get_cie_encoding (unwind-dw2-fde.c:312) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e77 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:read_uleb128 fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4374CAE: get_cie_encoding (unwind-dw2-fde.c:316) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e72 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x4374D00: get_cie_encoding (unwind-dw2-fde.c:317) ==11478== by 0x4375AD6: get_fde_encoding (unwind-dw2-fde.c:339) ==11478== by 0x4375AD6: _Unwind_IteratePhdrCallback (unwind-dw2-fde-glibc.c:214) ==11478== by 0x4373C02: dl_iterate_phdr (dl-iteratephdr.c:76) ==11478== by 0x43760BF: _Unwind_Find_FDE (unwind-dw2-fde-glibc.c:267) ==11478== by 0x18243B4C: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e78 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:get_cie_encoding fun:get_fde_encoding fun:_Unwind_IteratePhdrCallback fun:dl_iterate_phdr fun:_Unwind_Find_FDE obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x402DDD8: strlen (vg_replace_strmem.c:454) ==11478== by 0x18243B8A: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e71 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:strlen obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x402DDE3: strlen (vg_replace_strmem.c:454) ==11478== by 0x18243B8A: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e72 is on thread 1's stack ==11478== { Memcheck:Addr1 fun:strlen obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243B8E: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e71 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243BA0: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e70 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243BB3: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e74 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18242163: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243BDB: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e75 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243BF0: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e70 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243FA0: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e76 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243C34: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e71 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243F6B: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e77 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243F95: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e72 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243CB8: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e78 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243C67: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e73 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182425A0: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243D7E: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e79 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182429B3: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243D7E: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e7a is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182429E3: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243D7E: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e7b is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x1824263B: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243D7E: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18247e7d is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243DD3: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18249c68 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182425A0: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243F11: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18249c69 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18242A63: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243F11: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18249c6b is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x1824263B: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243F11: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18249c6d is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18242A23: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243F11: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18249c70 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18242766: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243F11: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182442F1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x18249c7f is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x1824431D: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x1824c10c is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182439C1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182443F4: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x1824c10c is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243833: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x182443F4: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824484C: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x1824484d is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182437B8: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243A86: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824455B: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18244876: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x1824c10c is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x182439C1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18243A86: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824455B: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18244876: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x1824c10c is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Invalid read of size 1 ==11478== at 0x18243A99: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x1824455B: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x18244876: _Unwind_ForcedUnwind (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x424DAC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:134) ==11478== by 0x424B949: __pthread_unwind (unwind.c:121) ==11478== by 0x42441E0: __do_cancel (pthreadP.h:283) ==11478== by 0x42441E0: pthread_exit (pthread_exit.c:28) ==11478== by 0x7BC99407: terminate_thread (thread.c:373) ==11478== by 0x7BC8FA49: ??? (signal_i386.c:2700) ==11478== by 0x1835F367: ??? ==11478== by 0x4243260: start_thread (pthread_create.c:333) ==11478== by 0x433F31D: clone (clone.S:114) ==11478== Address 0x1824c110 is on thread 1's stack ==11478== { Memcheck:Addr1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_Unwind_ForcedUnwind fun:_Unwind_ForcedUnwind fun:__pthread_unwind fun:__do_cancel fun:pthread_exit fun:terminate_thread obj:/home/austin/wine-valgrind/dlls/ntdll/ntdll.dll.so obj:* fun:start_thread fun:clone } ==11478== Thread 1 mshtml_test.exe.so: ==11478== Jump to the invalid address stated on the next line ==11478== at 0x182335D0: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x4288202: __run_exit_handlers (exit.c:82) ==11478== by 0x4288260: exit (exit.c:104) ==11478== by 0x7BC6F292: NtTerminateProcess (process.c:67) ==11478== by 0x7BC5E281: RtlExitUserProcess (loader.c:2745) ==11478== by 0x7B46FC3D: ??? (process.c:2713) ==11478== Address 0x182335d0 is on thread 1's stack ==11478== { Memcheck:Jump obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:__run_exit_handlers fun:exit fun:NtTerminateProcess fun:RtlExitUserProcess obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so } ==11478== Invalid read of size 2 ==11478== at 0x400E304: _dl_fixup (dl-runtime.c:91) ==11478== by 0x401494F: _dl_runtime_resolve (dl-trampoline.S:43) ==11478== by 0x18233602: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x400F533: _dl_fini (dl-fini.c:235) ==11478== by 0x4288202: __run_exit_handlers (exit.c:82) ==11478== by 0x4288260: exit (exit.c:104) ==11478== by 0x7BC6F292: NtTerminateProcess (process.c:67) ==11478== by 0x7BC5E281: RtlExitUserProcess (loader.c:2745) ==11478== by 0x7B46FC3D: ??? (process.c:2713) ==11478== Address 0x1823287e is on thread 1's stack ==11478== { Memcheck:Addr2 fun:_dl_fixup fun:_dl_runtime_resolve obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:_dl_fini fun:__run_exit_handlers fun:exit fun:NtTerminateProcess fun:RtlExitUserProcess obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so } ==11478== Jump to the invalid address stated on the next line ==11478== at 0x18246EC8: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x4288202: __run_exit_handlers (exit.c:82) ==11478== by 0x4288260: exit (exit.c:104) ==11478== by 0x7BC6F292: NtTerminateProcess (process.c:67) ==11478== by 0x7BC5E281: RtlExitUserProcess (loader.c:2745) ==11478== by 0x7B46FC3D: ??? (process.c:2713) ==11478== Address 0x18246ec8 is on thread 1's stack ==11478== { Memcheck:Jump obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:__run_exit_handlers fun:exit fun:NtTerminateProcess fun:RtlExitUserProcess obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so } ==11478== Jump to the invalid address stated on the next line ==11478== at 0x18246ED1: ??? (in /usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1) ==11478== by 0x4288202: __run_exit_handlers (exit.c:82) ==11478== by 0x4288260: exit (exit.c:104) ==11478== by 0x7BC6F292: NtTerminateProcess (process.c:67) ==11478== by 0x7BC5E281: RtlExitUserProcess (loader.c:2745) ==11478== by 0x7B46FC3D: ??? (process.c:2713) ==11478== Address 0x18246ed1 is on thread 1's stack ==11478== { Memcheck:Jump obj:/usr/lib64/gcc/x86_64-pc-linux-gnu/4.9.4/32/libgcc_s.so.1 fun:__run_exit_handlers fun:exit fun:NtTerminateProcess fun:RtlExitUserProcess obj:/home/austin/wine-valgrind/dlls/kernel32/kernel32.dll.so } ==11478== 128 bytes in 4 blocks are possibly lost in loss record 1,751 of 2,469 ==11478== at 0x7BC50754: notify_alloc (heap.c:254) ==11478== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11478== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==11478== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==11478== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==11478== by 0x6A0D8113: ??? ==11478== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==11478== 187 bytes in 1 blocks are possibly lost in loss record 1,840 of 2,469 ==11478== at 0x7BC50754: notify_alloc (heap.c:254) ==11478== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11478== by 0x8705F62: msvcrt_heap_realloc (heap.c:102) ==11478== by 0x8706B15: MSVCRT_realloc (heap.c:457) ==11478== by 0x69E78C00: ??? ==11478== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==11478== 224 bytes in 6 blocks are possibly lost in loss record 1,874 of 2,469 ==11478== at 0x7BC50754: notify_alloc (heap.c:254) ==11478== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11478== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11478== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11478== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11478== by 0x549D9BE: alloc_bstr (oleaut.c:177) ==11478== by 0x549DD85: SysAllocStringLen (oleaut.c:355) ==11478== by 0x5C52C83: pre_process_uri (uri.c:786) ==11478== by 0x5C60176: CreateUri (uri.c:5738) ==11478== by 0x67B4FCA: create_uri (persist.c:185) ==11478== by 0x67A5A63: nsIOServiceHook_NewURI (nsio.c:3890) ==11478== by 0x69F3AFD9: ??? ==11478== { 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 xmlhttprequest && touch xmlhttprequest.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==11545== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11545_c068bd71 is empty ==11545== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==11545== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11545_c068bd71 is empty ==11545== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==11545== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11545_c068bd71 is empty ==11545== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==11545== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp11545_c068bd71 is empty ==11545== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==11545== 128 bytes in 4 blocks are possibly lost in loss record 1,822 of 2,617 ==11545== at 0x7BC50754: notify_alloc (heap.c:254) ==11545== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11545== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==11545== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==11545== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==11545== by 0x6A0D8113: ??? ==11545== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==11545== 192 bytes in 2 blocks are possibly lost in loss record 1,945 of 2,617 ==11545== at 0x7BC50754: notify_alloc (heap.c:254) ==11545== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11545== by 0x570E165: heap_alloc_zero (internet.h:99) ==11545== by 0x570F458: create_netconn (netconnection.c:348) ==11545== by 0x56FEAF6: open_http_connection (http.c:4851) ==11545== by 0x56FF235: HTTP_HttpSendRequestW (http.c:4992) ==11545== by 0x570010C: AsyncHttpSendRequestProc (http.c:5261) ==11545== by 0x570C094: INTERNET_WorkerThreadFunc (internet.c:3724) ==11545== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==11545== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==11545== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==11545== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==11545== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==11545== by 0x7BC9970A: start_thread (thread.c:453) ==11545== by 0x4243260: start_thread (pthread_create.c:333) ==11545== by 0x433F31D: clone (clone.S:114) ==11545== { 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 } ==11545== 304 bytes in 5 blocks are possibly lost in loss record 2,073 of 2,617 ==11545== at 0x7BC50754: notify_alloc (heap.c:254) ==11545== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11545== by 0x4C6991A: IMalloc_fnAlloc (ifs.c:187) ==11545== by 0x4C6A1B9: IMalloc_Alloc (objidl.h:1508) ==11545== by 0x4C6A1B9: CoTaskMemAlloc (???:0) ==11545== by 0x54829BE: alloc_bstr (oleaut.c:177) ==11545== by 0x5482D85: SysAllocStringLen (oleaut.c:355) ==11545== by 0x5C43C83: pre_process_uri (uri.c:786) ==11545== by 0x5C51176: CreateUri (uri.c:5738) ==11545== by 0x6822FCA: create_uri (persist.c:185) ==11545== by 0x6813A63: nsIOServiceHook_NewURI (nsio.c:3890) ==11545== by 0x69F3AFD9: ??? ==11545== { 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:* } ==11545== 1,173 bytes in 4 blocks are possibly lost in loss record 2,360 of 2,617 ==11545== at 0x7BC50754: notify_alloc (heap.c:254) ==11545== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==11545== by 0x870DF62: msvcrt_heap_realloc (heap.c:102) ==11545== by 0x870EB15: MSVCRT_realloc (heap.c:457) ==11545== by 0x69E78C00: ??? ==11545== { 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/mshtml/tests' 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 ==11632== Invalid free() / delete / delete[] / realloc() ==11632== at 0x7BC5084A: notify_realloc (heap.c:270) ==11632== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11632== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11632== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11632== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11632== by 0x4DC201A: msi_create_table (table.c:796) ==11632== by 0x4D65562: CREATE_execute (create.c:72) ==11632== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11632== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11632== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11632== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11632== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11632== by 0x4A1C24E: create_database_wordcount (action.c:2633) ==11632== by 0x4A1CC86: test_register_product (action.c:2888) ==11632== by 0x4A3640E: func_action (action.c:7029) ==11632== by 0x4B5DB6C: run_test (test.h:589) ==11632== by 0x4B5DF98: main (test.h:671) ==11632== Address 0x491a860 is 0 bytes after a block of size 0 alloc'd ==11632== at 0x7BC50754: notify_alloc (heap.c:254) ==11632== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11632== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11632== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11632== by 0x4DC157B: get_table (table.c:620) ==11632== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11632== by 0x4DC1EEE: msi_create_table (table.c:775) ==11632== by 0x4D65562: CREATE_execute (create.c:72) ==11632== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11632== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11632== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11632== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11632== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11632== by 0x4A1C24E: create_database_wordcount (action.c:2633) ==11632== by 0x4A1CC86: test_register_product (action.c:2888) ==11632== by 0x4A3640E: func_action (action.c:7029) ==11632== by 0x4B5DB6C: run_test (test.h:589) ==11632== by 0x4B5DF98: main (test.h:671) ==11632== { 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 } ==11632== Invalid free() / delete / delete[] / realloc() ==11632== at 0x7BC5084A: notify_realloc (heap.c:270) ==11632== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11632== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11632== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11632== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11632== by 0x4DC201A: msi_create_table (table.c:796) ==11632== by 0x4D65562: CREATE_execute (create.c:72) ==11632== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11632== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11632== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11632== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11632== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11632== by 0x4A1C24E: create_database_wordcount (action.c:2633) ==11632== by 0x4A1CC86: test_register_product (action.c:2888) ==11632== by 0x4A3640E: func_action (action.c:7029) ==11632== by 0x4B5DB6C: run_test (test.h:589) ==11632== by 0x4B5DF98: main (test.h:671) ==11632== Address 0x491a878 is 0 bytes after a block of size 0 alloc'd ==11632== at 0x7BC50754: notify_alloc (heap.c:254) ==11632== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11632== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11632== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11632== by 0x4DC157B: get_table (table.c:620) ==11632== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11632== by 0x4DC1EEE: msi_create_table (table.c:775) ==11632== by 0x4D65562: CREATE_execute (create.c:72) ==11632== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11632== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11632== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11632== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11632== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11632== by 0x4A1C24E: create_database_wordcount (action.c:2633) ==11632== by 0x4A1CC86: test_register_product (action.c:2888) ==11632== by 0x4A3640E: func_action (action.c:7029) ==11632== by 0x4B5DB6C: run_test (test.h:589) ==11632== by 0x4B5DF98: main (test.h:671) ==11632== { 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 preloader: Warning: failed to reserve range 00110000-68000000 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 ==11721== Invalid free() / delete / delete[] / realloc() ==11721== at 0x7BC5084A: notify_realloc (heap.c:270) ==11721== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11721== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11721== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11721== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11721== by 0x4DC201A: msi_create_table (table.c:796) ==11721== by 0x4D65562: CREATE_execute (create.c:72) ==11721== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11721== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11721== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11721== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11721== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11721== by 0x4A36D45: create_database (automation.c:337) ==11721== by 0x4A36E79: create_package (automation.c:358) ==11721== by 0x4A38C04: test_dispatch (automation.c:741) ==11721== by 0x4A4547A: func_automation (automation.c:2794) ==11721== by 0x4B5DB6C: run_test (test.h:589) ==11721== by 0x4B5DF98: main (test.h:671) ==11721== Address 0x49c9db8 is 0 bytes after a block of size 0 alloc'd ==11721== at 0x7BC50754: notify_alloc (heap.c:254) ==11721== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11721== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11721== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11721== by 0x4DC157B: get_table (table.c:620) ==11721== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11721== by 0x4DC1EEE: msi_create_table (table.c:775) ==11721== by 0x4D65562: CREATE_execute (create.c:72) ==11721== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11721== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11721== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11721== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11721== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11721== by 0x4A36D45: create_database (automation.c:337) ==11721== by 0x4A36E79: create_package (automation.c:358) ==11721== by 0x4A38C04: test_dispatch (automation.c:741) ==11721== by 0x4A4547A: func_automation (automation.c:2794) ==11721== by 0x4B5DB6C: run_test (test.h:589) ==11721== by 0x4B5DF98: main (test.h:671) ==11721== { 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 } ==11721== Invalid free() / delete / delete[] / realloc() ==11721== at 0x7BC5084A: notify_realloc (heap.c:270) ==11721== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11721== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11721== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11721== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11721== by 0x4DC201A: msi_create_table (table.c:796) ==11721== by 0x4D65562: CREATE_execute (create.c:72) ==11721== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11721== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11721== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11721== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11721== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11721== by 0x4A36D45: create_database (automation.c:337) ==11721== by 0x4A36E79: create_package (automation.c:358) ==11721== by 0x4A38C04: test_dispatch (automation.c:741) ==11721== by 0x4A4547A: func_automation (automation.c:2794) ==11721== by 0x4B5DB6C: run_test (test.h:589) ==11721== by 0x4B5DF98: main (test.h:671) ==11721== Address 0x49c9dd0 is 0 bytes after a block of size 0 alloc'd ==11721== at 0x7BC50754: notify_alloc (heap.c:254) ==11721== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11721== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11721== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11721== by 0x4DC157B: get_table (table.c:620) ==11721== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11721== by 0x4DC1EEE: msi_create_table (table.c:775) ==11721== by 0x4D65562: CREATE_execute (create.c:72) ==11721== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11721== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11721== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11721== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11721== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11721== by 0x4A36D45: create_database (automation.c:337) ==11721== by 0x4A36E79: create_package (automation.c:358) ==11721== by 0x4A38C04: test_dispatch (automation.c:741) ==11721== by 0x4A4547A: func_automation (automation.c:2794) ==11721== by 0x4B5DB6C: run_test (test.h:589) ==11721== by 0x4B5DF98: main (test.h:671) ==11721== { 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 ==11732== Invalid free() / delete / delete[] / realloc() ==11732== at 0x7BC5084A: notify_realloc (heap.c:270) ==11732== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11732== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11732== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11732== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11732== by 0x4DC201A: msi_create_table (table.c:796) ==11732== by 0x4D65562: CREATE_execute (create.c:72) ==11732== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11732== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11732== by 0x4A46965: test_msiinsert (db.c:318) ==11732== by 0x4A7D2DD: func_db (db.c:9732) ==11732== by 0x4B5DB6C: run_test (test.h:589) ==11732== by 0x4B5DF98: main (test.h:671) ==11732== Address 0x48d06d0 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==11732== at 0x7BC50754: notify_alloc (heap.c:254) ==11732== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11732== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11732== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11732== by 0x4DC157B: get_table (table.c:620) ==11732== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11732== by 0x4DC1EEE: msi_create_table (table.c:775) ==11732== by 0x4D65562: CREATE_execute (create.c:72) ==11732== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11732== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11732== by 0x4A46965: test_msiinsert (db.c:318) ==11732== by 0x4A7D2DD: func_db (db.c:9732) ==11732== by 0x4B5DB6C: run_test (test.h:589) ==11732== by 0x4B5DF98: main (test.h:671) ==11732== { 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 } ==11732== Invalid free() / delete / delete[] / realloc() ==11732== at 0x7BC5084A: notify_realloc (heap.c:270) ==11732== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11732== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11732== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11732== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11732== by 0x4DC201A: msi_create_table (table.c:796) ==11732== by 0x4D65562: CREATE_execute (create.c:72) ==11732== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11732== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11732== by 0x4A46965: test_msiinsert (db.c:318) ==11732== by 0x4A7D2DD: func_db (db.c:9732) ==11732== by 0x4B5DB6C: run_test (test.h:589) ==11732== by 0x4B5DF98: main (test.h:671) ==11732== Address 0x48d06e8 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==11732== at 0x7BC50754: notify_alloc (heap.c:254) ==11732== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11732== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11732== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11732== by 0x4DC157B: get_table (table.c:620) ==11732== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11732== by 0x4DC1EEE: msi_create_table (table.c:775) ==11732== by 0x4D65562: CREATE_execute (create.c:72) ==11732== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11732== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11732== by 0x4A46965: test_msiinsert (db.c:318) ==11732== by 0x4A7D2DD: func_db (db.c:9732) ==11732== by 0x4B5DB6C: run_test (test.h:589) ==11732== by 0x4B5DF98: main (test.h:671) ==11732== { 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 ==11741== Invalid free() / delete / delete[] / realloc() ==11741== at 0x7BC5084A: notify_realloc (heap.c:270) ==11741== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11741== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11741== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11741== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11741== by 0x4DC201A: msi_create_table (table.c:796) ==11741== by 0x4D65562: CREATE_execute (create.c:72) ==11741== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11741== by 0x4D9D33E: create_temp_property_table (package.c:375) ==11741== by 0x4D9F712: MSI_CreatePackage (package.c:1101) ==11741== by 0x4DA0AE1: MSI_OpenPackageW (package.c:1543) ==11741== by 0x4DA10B7: MsiOpenPackageExW (package.c:1632) ==11741== by 0x4DA11AD: MsiOpenPackageExA (package.c:1661) ==11741== by 0x4DA11FC: MsiOpenPackageA (package.c:1670) ==11741== by 0x4A7E136: package_from_db (format.c:239) ==11741== by 0x4A7E714: helper_createpackage (format.c:326) ==11741== by 0x4A7E797: test_createpackage (format.c:342) ==11741== by 0x4A923EC: func_format (format.c:2788) ==11741== by 0x4B5DB6C: run_test (test.h:589) ==11741== by 0x4B5DF98: main (test.h:671) ==11741== Address 0x4906898 is 0 bytes after a block of size 0 alloc'd ==11741== at 0x7BC50754: notify_alloc (heap.c:254) ==11741== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11741== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11741== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11741== by 0x4DC157B: get_table (table.c:620) ==11741== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11741== by 0x4DC1EEE: msi_create_table (table.c:775) ==11741== by 0x4D65562: CREATE_execute (create.c:72) ==11741== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11741== by 0x4D9D33E: create_temp_property_table (package.c:375) ==11741== by 0x4D9F712: MSI_CreatePackage (package.c:1101) ==11741== by 0x4DA0AE1: MSI_OpenPackageW (package.c:1543) ==11741== by 0x4DA10B7: MsiOpenPackageExW (package.c:1632) ==11741== by 0x4DA11AD: MsiOpenPackageExA (package.c:1661) ==11741== by 0x4DA11FC: MsiOpenPackageA (package.c:1670) ==11741== by 0x4A7E136: package_from_db (format.c:239) ==11741== by 0x4A7E714: helper_createpackage (format.c:326) ==11741== by 0x4A7E797: test_createpackage (format.c:342) ==11741== by 0x4A923EC: func_format (format.c:2788) ==11741== by 0x4B5DB6C: run_test (test.h:589) ==11741== { 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 } ==11741== Invalid free() / delete / delete[] / realloc() ==11741== at 0x7BC5084A: notify_realloc (heap.c:270) ==11741== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11741== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11741== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11741== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11741== by 0x4DC201A: msi_create_table (table.c:796) ==11741== by 0x4D65562: CREATE_execute (create.c:72) ==11741== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11741== by 0x4D9D33E: create_temp_property_table (package.c:375) ==11741== by 0x4D9F712: MSI_CreatePackage (package.c:1101) ==11741== by 0x4DA0AE1: MSI_OpenPackageW (package.c:1543) ==11741== by 0x4DA10B7: MsiOpenPackageExW (package.c:1632) ==11741== by 0x4DA11AD: MsiOpenPackageExA (package.c:1661) ==11741== by 0x4DA11FC: MsiOpenPackageA (package.c:1670) ==11741== by 0x4A7E136: package_from_db (format.c:239) ==11741== by 0x4A7E714: helper_createpackage (format.c:326) ==11741== by 0x4A7E797: test_createpackage (format.c:342) ==11741== by 0x4A923EC: func_format (format.c:2788) ==11741== by 0x4B5DB6C: run_test (test.h:589) ==11741== by 0x4B5DF98: main (test.h:671) ==11741== Address 0x49068b0 is 0 bytes after a block of size 0 alloc'd ==11741== at 0x7BC50754: notify_alloc (heap.c:254) ==11741== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11741== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11741== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11741== by 0x4DC157B: get_table (table.c:620) ==11741== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11741== by 0x4DC1EEE: msi_create_table (table.c:775) ==11741== by 0x4D65562: CREATE_execute (create.c:72) ==11741== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11741== by 0x4D9D33E: create_temp_property_table (package.c:375) ==11741== by 0x4D9F712: MSI_CreatePackage (package.c:1101) ==11741== by 0x4DA0AE1: MSI_OpenPackageW (package.c:1543) ==11741== by 0x4DA10B7: MsiOpenPackageExW (package.c:1632) ==11741== by 0x4DA11AD: MsiOpenPackageExA (package.c:1661) ==11741== by 0x4DA11FC: MsiOpenPackageA (package.c:1670) ==11741== by 0x4A7E136: package_from_db (format.c:239) ==11741== by 0x4A7E714: helper_createpackage (format.c:326) ==11741== by 0x4A7E797: test_createpackage (format.c:342) ==11741== by 0x4A923EC: func_format (format.c:2788) ==11741== by 0x4B5DB6C: run_test (test.h:589) ==11741== { 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 ==11752== Invalid free() / delete / delete[] / realloc() ==11752== at 0x7BC5084A: notify_realloc (heap.c:270) ==11752== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11752== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11752== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11752== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11752== by 0x4DC201A: msi_create_table (table.c:796) ==11752== by 0x4D65562: CREATE_execute (create.c:72) ==11752== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11752== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11752== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11752== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11752== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11752== by 0x4A94282: create_database_wordcount (install.c:2404) ==11752== by 0x4A972A9: test_MsiSetComponentState (install.c:2770) ==11752== by 0x4AA709D: func_install (install.c:5990) ==11752== by 0x4B5DB6C: run_test (test.h:589) ==11752== by 0x4B5DF98: main (test.h:671) ==11752== Address 0x4918b20 is 0 bytes after a block of size 0 alloc'd ==11752== at 0x7BC50754: notify_alloc (heap.c:254) ==11752== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11752== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11752== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11752== by 0x4DC157B: get_table (table.c:620) ==11752== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11752== by 0x4DC1EEE: msi_create_table (table.c:775) ==11752== by 0x4D65562: CREATE_execute (create.c:72) ==11752== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11752== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11752== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11752== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11752== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11752== by 0x4A94282: create_database_wordcount (install.c:2404) ==11752== by 0x4A972A9: test_MsiSetComponentState (install.c:2770) ==11752== by 0x4AA709D: func_install (install.c:5990) ==11752== by 0x4B5DB6C: run_test (test.h:589) ==11752== by 0x4B5DF98: main (test.h:671) ==11752== { 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 } ==11752== Invalid free() / delete / delete[] / realloc() ==11752== at 0x7BC5084A: notify_realloc (heap.c:270) ==11752== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11752== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11752== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11752== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11752== by 0x4DC201A: msi_create_table (table.c:796) ==11752== by 0x4D65562: CREATE_execute (create.c:72) ==11752== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11752== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11752== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11752== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11752== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11752== by 0x4A94282: create_database_wordcount (install.c:2404) ==11752== by 0x4A972A9: test_MsiSetComponentState (install.c:2770) ==11752== by 0x4AA709D: func_install (install.c:5990) ==11752== by 0x4B5DB6C: run_test (test.h:589) ==11752== by 0x4B5DF98: main (test.h:671) ==11752== Address 0x4918b38 is 0 bytes after a block of size 0 alloc'd ==11752== at 0x7BC50754: notify_alloc (heap.c:254) ==11752== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11752== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11752== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11752== by 0x4DC157B: get_table (table.c:620) ==11752== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11752== by 0x4DC1EEE: msi_create_table (table.c:775) ==11752== by 0x4D65562: CREATE_execute (create.c:72) ==11752== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11752== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11752== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11752== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11752== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11752== by 0x4A94282: create_database_wordcount (install.c:2404) ==11752== by 0x4A972A9: test_MsiSetComponentState (install.c:2770) ==11752== by 0x4AA709D: func_install (install.c:5990) ==11752== by 0x4B5DB6C: run_test (test.h:589) ==11752== by 0x4B5DF98: main (test.h:671) ==11752== { 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 } ==11752== Invalid free() / delete / delete[] / realloc() ==11752== at 0x7BC5084A: notify_realloc (heap.c:270) ==11752== by 0x7BC551A0: RtlReAllocateHeap (heap.c:1860) ==11752== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11752== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11752== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11752== by 0x4DC201A: msi_create_table (table.c:796) ==11752== by 0x4D65562: CREATE_execute (create.c:72) ==11752== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11752== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11752== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11752== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11752== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11752== by 0x4A94282: create_database_wordcount (install.c:2404) ==11752== by 0x4A99BEB: test_readonlyfile (install.c:3253) ==11752== by 0x4AA70C0: func_install (install.c:5997) ==11752== by 0x4B5DB6C: run_test (test.h:589) ==11752== by 0x4B5DF98: main (test.h:671) ==11752== Address 0x48ed808 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==11752== at 0x7BC50754: notify_alloc (heap.c:254) ==11752== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11752== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11752== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11752== by 0x4DC157B: get_table (table.c:620) ==11752== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11752== by 0x4DC1EEE: msi_create_table (table.c:775) ==11752== by 0x4D65562: CREATE_execute (create.c:72) ==11752== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11752== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11752== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11752== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11752== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11752== by 0x4A94282: create_database_wordcount (install.c:2404) ==11752== by 0x4A99BEB: test_readonlyfile (install.c:3253) ==11752== by 0x4AA70C0: func_install (install.c:5997) ==11752== by 0x4B5DB6C: run_test (test.h:589) ==11752== by 0x4B5DF98: main (test.h:671) ==11752== { 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_readonlyfile 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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 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 ==11772== Invalid free() / delete / delete[] / realloc() ==11772== at 0x7BC5084A: notify_realloc (heap.c:270) ==11772== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11772== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11772== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11772== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11772== by 0x4DC201A: msi_create_table (table.c:796) ==11772== by 0x4D65562: CREATE_execute (create.c:72) ==11772== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11772== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11772== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11772== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11772== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11772== by 0x4AA909B: create_database_wordcount (msi.c:1116) ==11772== by 0x4AB720E: test_MsiProvideComponent (msi.c:3456) ==11772== by 0x4B04F6E: func_msi (msi.c:14562) ==11772== by 0x4B5DB6C: run_test (test.h:589) ==11772== by 0x4B5DF98: main (test.h:671) ==11772== Address 0x48e3050 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==11772== at 0x7BC50754: notify_alloc (heap.c:254) ==11772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11772== by 0x57104CB: create_family (freetype.c:1584) ==11772== by 0x5710DE1: load_font_list_from_cache (freetype.c:1758) ==11772== by 0x57197DC: WineEngInit (freetype.c:4397) ==11772== by 0x5728544: DllMain (gdiobj.c:658) ==11772== by 0x5746CD5: __wine_spec_dll_entry (dll_entry.c:40) ==11772== by 0x7BC56DC9: ??? (loader.c:143) ==11772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==11772== by 0x7BC59BD1: process_attach (loader.c:1215) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==11772== by 0x404019C: ??? (port.c:78) ==11772== { 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 } ==11772== Invalid free() / delete / delete[] / realloc() ==11772== at 0x7BC5084A: notify_realloc (heap.c:270) ==11772== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11772== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11772== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11772== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11772== by 0x4DC201A: msi_create_table (table.c:796) ==11772== by 0x4D65562: CREATE_execute (create.c:72) ==11772== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11772== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11772== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11772== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11772== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11772== by 0x4AA909B: create_database_wordcount (msi.c:1116) ==11772== by 0x4AB720E: test_MsiProvideComponent (msi.c:3456) ==11772== by 0x4B04F6E: func_msi (msi.c:14562) ==11772== by 0x4B5DB6C: run_test (test.h:589) ==11772== by 0x4B5DF98: main (test.h:671) ==11772== Address 0x48e2cb0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==11772== at 0x7BC50754: notify_alloc (heap.c:254) ==11772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11772== by 0x57104CB: create_family (freetype.c:1584) ==11772== by 0x5710DE1: load_font_list_from_cache (freetype.c:1758) ==11772== by 0x57197DC: WineEngInit (freetype.c:4397) ==11772== by 0x5728544: DllMain (gdiobj.c:658) ==11772== by 0x5746CD5: __wine_spec_dll_entry (dll_entry.c:40) ==11772== by 0x7BC56DC9: ??? (loader.c:143) ==11772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==11772== by 0x7BC59BD1: process_attach (loader.c:1215) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC59B1C: process_attach (loader.c:1203) ==11772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==11772== by 0x404019C: ??? (port.c:78) ==11772== { 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 ==11788== Invalid free() / delete / delete[] / realloc() ==11788== at 0x7BC5084A: notify_realloc (heap.c:270) ==11788== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11788== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11788== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11788== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11788== by 0x4DC201A: msi_create_table (table.c:796) ==11788== by 0x4D65562: CREATE_execute (create.c:72) ==11788== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11788== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11788== by 0x4B0638C: run_query (package.c:440) ==11788== by 0x4B07D6D: create_package_db (package.c:806) ==11788== by 0x4B082FB: test_createpackage (package.c:948) ==11788== by 0x4B3CAC9: func_package (package.c:9101) ==11788== by 0x4B5DB6C: run_test (test.h:589) ==11788== by 0x4B5DF98: main (test.h:671) ==11788== Address 0x4917d58 is 0 bytes after a block of size 0 alloc'd ==11788== at 0x7BC50754: notify_alloc (heap.c:254) ==11788== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11788== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11788== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11788== by 0x4DC157B: get_table (table.c:620) ==11788== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11788== by 0x4DC1EEE: msi_create_table (table.c:775) ==11788== by 0x4D65562: CREATE_execute (create.c:72) ==11788== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11788== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11788== by 0x4B0638C: run_query (package.c:440) ==11788== by 0x4B07D6D: create_package_db (package.c:806) ==11788== by 0x4B082FB: test_createpackage (package.c:948) ==11788== by 0x4B3CAC9: func_package (package.c:9101) ==11788== by 0x4B5DB6C: run_test (test.h:589) ==11788== by 0x4B5DF98: main (test.h:671) ==11788== { 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 } ==11788== Invalid free() / delete / delete[] / realloc() ==11788== at 0x7BC5084A: notify_realloc (heap.c:270) ==11788== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11788== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11788== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11788== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11788== by 0x4DC201A: msi_create_table (table.c:796) ==11788== by 0x4D65562: CREATE_execute (create.c:72) ==11788== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11788== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11788== by 0x4B0638C: run_query (package.c:440) ==11788== by 0x4B07D6D: create_package_db (package.c:806) ==11788== by 0x4B082FB: test_createpackage (package.c:948) ==11788== by 0x4B3CAC9: func_package (package.c:9101) ==11788== by 0x4B5DB6C: run_test (test.h:589) ==11788== by 0x4B5DF98: main (test.h:671) ==11788== Address 0x4917d70 is 0 bytes after a block of size 0 alloc'd ==11788== at 0x7BC50754: notify_alloc (heap.c:254) ==11788== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11788== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11788== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11788== by 0x4DC157B: get_table (table.c:620) ==11788== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11788== by 0x4DC1EEE: msi_create_table (table.c:775) ==11788== by 0x4D65562: CREATE_execute (create.c:72) ==11788== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11788== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11788== by 0x4B0638C: run_query (package.c:440) ==11788== by 0x4B07D6D: create_package_db (package.c:806) ==11788== by 0x4B082FB: test_createpackage (package.c:948) ==11788== by 0x4B3CAC9: func_package (package.c:9101) ==11788== by 0x4B5DB6C: run_test (test.h:589) ==11788== by 0x4B5DF98: main (test.h:671) ==11788== { 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 ==11802== Invalid free() / delete / delete[] / realloc() ==11802== at 0x7BC5084A: notify_realloc (heap.c:270) ==11802== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11802== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11802== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11802== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11802== by 0x4DC201A: msi_create_table (table.c:796) ==11802== by 0x4D65562: CREATE_execute (create.c:72) ==11802== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11802== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11802== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11802== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11802== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11802== by 0x4B3D786: create_database (patch.c:332) ==11802== by 0x4B3DF9C: test_simple_patch (patch.c:740) ==11802== by 0x4B412B3: func_patch (patch.c:1372) ==11802== by 0x4B5DB6C: run_test (test.h:589) ==11802== by 0x4B5DF98: main (test.h:671) ==11802== Address 0x49106e0 is 0 bytes after a block of size 0 alloc'd ==11802== at 0x7BC50754: notify_alloc (heap.c:254) ==11802== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11802== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11802== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11802== by 0x4DC157B: get_table (table.c:620) ==11802== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11802== by 0x4DC1EEE: msi_create_table (table.c:775) ==11802== by 0x4D65562: CREATE_execute (create.c:72) ==11802== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11802== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11802== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11802== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11802== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11802== by 0x4B3D786: create_database (patch.c:332) ==11802== by 0x4B3DF9C: test_simple_patch (patch.c:740) ==11802== by 0x4B412B3: func_patch (patch.c:1372) ==11802== by 0x4B5DB6C: run_test (test.h:589) ==11802== by 0x4B5DF98: main (test.h:671) ==11802== { 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 } ==11802== Invalid free() / delete / delete[] / realloc() ==11802== at 0x7BC5084A: notify_realloc (heap.c:270) ==11802== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11802== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11802== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11802== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11802== by 0x4DC201A: msi_create_table (table.c:796) ==11802== by 0x4D65562: CREATE_execute (create.c:72) ==11802== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11802== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11802== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11802== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11802== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11802== by 0x4B3D786: create_database (patch.c:332) ==11802== by 0x4B3DF9C: test_simple_patch (patch.c:740) ==11802== by 0x4B412B3: func_patch (patch.c:1372) ==11802== by 0x4B5DB6C: run_test (test.h:589) ==11802== by 0x4B5DF98: main (test.h:671) ==11802== Address 0x49106f8 is 0 bytes after a block of size 0 alloc'd ==11802== at 0x7BC50754: notify_alloc (heap.c:254) ==11802== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11802== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11802== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11802== by 0x4DC157B: get_table (table.c:620) ==11802== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11802== by 0x4DC1EEE: msi_create_table (table.c:775) ==11802== by 0x4D65562: CREATE_execute (create.c:72) ==11802== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11802== by 0x4D6C118: msi_add_table_to_db (database.c:622) ==11802== by 0x4D6C901: MSI_DatabaseImport (database.c:835) ==11802== by 0x4D6CB12: MsiDatabaseImportW (database.c:883) ==11802== by 0x4D6CC20: MsiDatabaseImportA (database.c:910) ==11802== by 0x4B3D786: create_database (patch.c:332) ==11802== by 0x4B3DF9C: test_simple_patch (patch.c:740) ==11802== by 0x4B412B3: func_patch (patch.c:1372) ==11802== by 0x4B5DB6C: run_test (test.h:589) ==11802== by 0x4B5DF98: main (test.h:671) ==11802== { 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 ==11810== Invalid free() / delete / delete[] / realloc() ==11810== at 0x7BC5084A: notify_realloc (heap.c:270) ==11810== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11810== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11810== by 0x4DC3AF2: table_create_new_row (table.c:1443) ==11810== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11810== by 0x4DC201A: msi_create_table (table.c:796) ==11810== by 0x4D65562: CREATE_execute (create.c:72) ==11810== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11810== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11810== by 0x4B4533A: test_fieldzero (record.c:558) ==11810== by 0x4B45AAD: func_record (record.c:623) ==11810== by 0x4B5DB6C: run_test (test.h:589) ==11810== by 0x4B5DF98: main (test.h:671) ==11810== Address 0x4910b00 is 0 bytes after a block of size 0 alloc'd ==11810== at 0x7BC50754: notify_alloc (heap.c:254) ==11810== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11810== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11810== by 0x4DC0C6B: read_table_from_storage (table.c:426) ==11810== by 0x4DC157B: get_table (table.c:620) ==11810== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11810== by 0x4DC1EEE: msi_create_table (table.c:775) ==11810== by 0x4D65562: CREATE_execute (create.c:72) ==11810== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11810== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11810== by 0x4B4533A: test_fieldzero (record.c:558) ==11810== by 0x4B45AAD: func_record (record.c:623) ==11810== by 0x4B5DB6C: run_test (test.h:589) ==11810== by 0x4B5DF98: main (test.h:671) ==11810== { 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 } ==11810== Invalid free() / delete / delete[] / realloc() ==11810== at 0x7BC5084A: notify_realloc (heap.c:270) ==11810== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==11810== by 0x4DBFA39: msi_realloc (msipriv.h:1218) ==11810== by 0x4DC3B51: table_create_new_row (table.c:1454) ==11810== by 0x4DC4407: TABLE_insert_row (table.c:1664) ==11810== by 0x4DC201A: msi_create_table (table.c:796) ==11810== by 0x4D65562: CREATE_execute (create.c:72) ==11810== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11810== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11810== by 0x4B4533A: test_fieldzero (record.c:558) ==11810== by 0x4B45AAD: func_record (record.c:623) ==11810== by 0x4B5DB6C: run_test (test.h:589) ==11810== by 0x4B5DF98: main (test.h:671) ==11810== Address 0x4910b18 is 0 bytes after a block of size 0 alloc'd ==11810== at 0x7BC50754: notify_alloc (heap.c:254) ==11810== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11810== by 0x4DBFA11: msi_alloc_zero (msipriv.h:1212) ==11810== by 0x4DC0C95: read_table_from_storage (table.c:429) ==11810== by 0x4DC157B: get_table (table.c:620) ==11810== by 0x4DC5959: TABLE_CreateView (table.c:2181) ==11810== by 0x4DC1EEE: msi_create_table (table.c:775) ==11810== by 0x4D65562: CREATE_execute (create.c:72) ==11810== by 0x4D9A86A: MSI_ViewExecute (msiquery.c:456) ==11810== by 0x4D9A947: MsiViewExecute (msiquery.c:482) ==11810== by 0x4B4533A: test_fieldzero (record.c:558) ==11810== by 0x4B45AAD: func_record (record.c:623) ==11810== by 0x4B5DB6C: run_test (test.h:589) ==11810== by 0x4B5DF98: main (test.h:671) ==11810== { 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 ==11913== Invalid write of size 1 ==11913== at 0x402DEF8: strcpy (vg_replace_strmem.c:506) ==11913== by 0x7BC8FE5C: NTDLL_strcpy (string.c:117) ==11913== by 0x4A26FA8: test_strstreambuf (msvcirt.c:2168) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== Address 0x4c4215d is 0 bytes after a block of size 5 alloc'd ==11913== at 0x7BC50754: notify_alloc (heap.c:254) ==11913== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11913== by 0x4BB9E26: msvcrt_heap_alloc (heap.c:70) ==11913== by 0x4BBA095: MSVCRT_operator_new (heap.c:138) ==11913== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==11913== by 0x4A26ED3: test_strstreambuf (msvcirt.c:2162) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== { Memcheck:Addr1 fun:strcpy fun:NTDLL_strcpy fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } ==11913== Invalid write of size 1 ==11913== at 0x4D72B9E: strstreambuf_overflow (msvcirt.c:1481) ==11913== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== Address 0x4c42205 is 1 bytes after a block of size 20 alloc'd ==11913== at 0x7BC50754: notify_alloc (heap.c:254) ==11913== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11913== by 0x4BB9E26: msvcrt_heap_alloc (heap.c:70) ==11913== by 0x4BBA095: MSVCRT_operator_new (heap.c:138) ==11913== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==11913== by 0x4D72B41: strstreambuf_overflow (msvcirt.c:1474) ==11913== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== { Memcheck:Addr1 fun:strstreambuf_overflow fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } ==11913== Invalid read of size 1 ==11913== at 0x4A28A08: test_strstreambuf (msvcirt.c:2305) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== Address 0x4c42205 is 1 bytes after a block of size 20 alloc'd ==11913== at 0x7BC50754: notify_alloc (heap.c:254) ==11913== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11913== by 0x4BB9E26: msvcrt_heap_alloc (heap.c:70) ==11913== by 0x4BBA095: MSVCRT_operator_new (heap.c:138) ==11913== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==11913== by 0x4D72B41: strstreambuf_overflow (msvcirt.c:1474) ==11913== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== { Memcheck:Addr1 fun:test_strstreambuf fun:func_msvcirt fun:run_test fun:main } ==11913== Invalid read of size 1 ==11913== at 0x4A28A17: test_strstreambuf (msvcirt.c:2305) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== Address 0x4c42205 is 1 bytes after a block of size 20 alloc'd ==11913== at 0x7BC50754: notify_alloc (heap.c:254) ==11913== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==11913== by 0x4BB9E26: msvcrt_heap_alloc (heap.c:70) ==11913== by 0x4BBA095: MSVCRT_operator_new (heap.c:138) ==11913== by 0x4D728E8: strstreambuf_doallocate (msvcirt.c:1430) ==11913== by 0x4D72B41: strstreambuf_overflow (msvcirt.c:1474) ==11913== by 0x4A28827: test_strstreambuf (msvcirt.c:2298) ==11913== by 0x4A635C7: func_msvcirt (msvcirt.c:7474) ==11913== by 0x4A64412: run_test (test.h:589) ==11913== by 0x4A6483D: main (test.h:671) ==11913== { 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 ==12364== Invalid free() / delete / delete[] / realloc() ==12364== at 0x7BC507C3: notify_free (heap.c:262) ==12364== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==12364== by 0x5EC63D3: heap_free (msxml_private.h:189) ==12364== by 0x5EC6B9F: free_properties (domdoc.c:360) ==12364== by 0x5EC74A6: xmldoc_release_refs (domdoc.c:624) ==12364== by 0x5EC74E3: xmldoc_release (domdoc.c:635) ==12364== by 0x5EF10A5: destroy_xmlnode (node.c:1481) ==12364== by 0x5EC83BD: domdoc_Release (domdoc.c:966) ==12364== by 0x4A51073: IXMLDOMDocument2_Release (msxml2.h:5224) ==12364== by 0x4A51073: test_get_ownerDocument (???:0) ==12364== by 0x4A74782: func_domdoc (domdoc.c:12222) ==12364== by 0x4AAEF37: run_test (test.h:589) ==12364== by 0x4AAF363: main (test.h:671) ==12364== Address 0x48d1cf0 is 16 bytes after a recently re-allocated block of size 48 alloc'd ==12364== at 0x7BC50754: notify_alloc (heap.c:254) ==12364== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==12364== by 0x4EAB91A: IMalloc_fnAlloc (ifs.c:187) ==12364== by 0x4EAC1B9: IMalloc_Alloc (objidl.h:1508) ==12364== by 0x4EAC1B9: CoTaskMemAlloc (???:0) ==12364== by 0x4C089BE: alloc_bstr (oleaut.c:177) ==12364== by 0x4C08D85: SysAllocStringLen (oleaut.c:355) ==12364== by 0x4A1B0EA: alloc_str_from_narrow (domdoc.c:928) ==12364== by 0x4A1B15F: _bstr_ (domdoc.c:939) ==12364== by 0x4A4FED6: _unset_props (domdoc.c:7541) ==12364== by 0x4A508BC: test_get_ownerDocument (domdoc.c:7617) ==12364== by 0x4A74782: func_domdoc (domdoc.c:12222) ==12364== by 0x4AAEF37: run_test (test.h:589) ==12364== by 0x4AAF363: main (test.h:671) ==12364== { 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 } ==12364== Invalid free() / delete / delete[] / realloc() ==12364== at 0x7BC507C3: notify_free (heap.c:262) ==12364== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==12364== by 0x5EC63D3: heap_free (msxml_private.h:189) ==12364== by 0x5EC6BBF: free_properties (domdoc.c:362) ==12364== by 0x5EC74A6: xmldoc_release_refs (domdoc.c:624) ==12364== by 0x5EC74E3: xmldoc_release (domdoc.c:635) ==12364== by 0x5EF10A5: destroy_xmlnode (node.c:1481) ==12364== by 0x5EC83BD: domdoc_Release (domdoc.c:966) ==12364== by 0x4A51073: IXMLDOMDocument2_Release (msxml2.h:5224) ==12364== by 0x4A51073: test_get_ownerDocument (???:0) ==12364== by 0x4A74782: func_domdoc (domdoc.c:12222) ==12364== by 0x4AAEF37: run_test (test.h:589) ==12364== by 0x4AAF363: main (test.h:671) ==12364== Address 0x48f4368 is 248 bytes inside a block of size 345 free'd ==12364== at 0x7BC507C3: notify_free (heap.c:262) ==12364== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==12364== by 0x7BC7D48C: RtlFreeAnsiString (rtlstr.c:173) ==12364== by 0x7BC4DE1C: NtQueryFullAttributesFile (file.c:2972) ==12364== by 0x7B445A7E: GetFileAttributesExW (file.c:2477) ==12364== by 0x555E766: fill_fileinfo_from_face (freetype.c:5338) ==12364== by 0x5560207: freetype_SelectFont (freetype.c:5741) ==12364== by 0x5B19C01: X11DRV_SelectFont (init.c:319) ==12364== by 0x5B4ECF9: xrenderdrv_SelectFont (xrender.c:829) ==12364== by 0x55478C7: FONT_SelectObject (font.c:752) ==12364== by 0x556BA1E: SelectObject (gdiobj.c:1193) ==12364== by 0x52F8A47: get_text_metr_size (sysparams.c:472) ==12364== by 0x52FEC05: GetSystemMetrics (sysparams.c:2435) ==12364== by 0x52FED5A: GetSystemMetrics (sysparams.c:2453) ==12364== by 0x5315B53: WINPOS_GetMinMaxInfo (winpos.c:774) ==12364== by 0x530D34A: WIN_CreateWindowEx (win.c:1586) ==12364== by 0x530DDB7: CreateWindowExW (win.c:1777) ==12364== by 0x4E89BD5: apartment_createwindowifneeded (compobj.c:1689) ==12364== by 0x4E87393: apartment_get_or_create (compobj.c:678) ==12364== by 0x4E8A2DE: CoInitializeEx (compobj.c:1911) ==12364== Block was alloc'd at ==12364== at 0x7BC50754: notify_alloc (heap.c:254) ==12364== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==12364== by 0x7BC43CA1: wine_nt_to_unix_file_name (directory.c:2938) ==12364== by 0x7BC43507: nt_to_unix_file_name_attr (directory.c:2807) ==12364== by 0x7BC4DC9B: NtQueryFullAttributesFile (file.c:2945) ==12364== by 0x7B445A7E: GetFileAttributesExW (file.c:2477) ==12364== by 0x555E766: fill_fileinfo_from_face (freetype.c:5338) ==12364== by 0x5560207: freetype_SelectFont (freetype.c:5741) ==12364== by 0x5B19C01: X11DRV_SelectFont (init.c:319) ==12364== by 0x5B4ECF9: xrenderdrv_SelectFont (xrender.c:829) ==12364== by 0x55478C7: FONT_SelectObject (font.c:752) ==12364== by 0x556BA1E: SelectObject (gdiobj.c:1193) ==12364== by 0x52F8A47: get_text_metr_size (sysparams.c:472) ==12364== by 0x52FEC05: GetSystemMetrics (sysparams.c:2435) ==12364== by 0x52FED5A: GetSystemMetrics (sysparams.c:2453) ==12364== by 0x5315B53: WINPOS_GetMinMaxInfo (winpos.c:774) ==12364== by 0x530D34A: WIN_CreateWindowEx (win.c:1586) ==12364== by 0x530DDB7: CreateWindowExW (win.c:1777) ==12364== by 0x4E89BD5: apartment_createwindowifneeded (compobj.c:1689) ==12364== by 0x4E87393: apartment_get_or_create (compobj.c:678) ==12364== { 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 } ==12364== 60 (24 direct, 36 indirect) bytes in 1 blocks are definitely lost in loss record 1,097 of 1,787 ==12364== at 0x402B267: malloc (vg_replace_malloc.c:299) ==12364== by 0x648FD13: xmlNewNs (tree.c:751) ==12364== by 0x5ECB73B: domdoc_createNode (domdoc.c:2037) ==12364== by 0x4A73C72: IXMLDOMDocument_createNode (msxml.h:2045) ==12364== by 0x4A73C72: test_create_attribute (???:0) ==12364== by 0x4A74796: func_domdoc (domdoc.c:12226) ==12364== by 0x4AAEF37: run_test (test.h:589) ==12364== by 0x4AAF363: main (test.h:671) ==12364== { 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 } ==12364== 315 (168 direct, 147 indirect) bytes in 7 blocks are definitely lost in loss record 1,561 of 1,787 ==12364== at 0x402B267: malloc (vg_replace_malloc.c:299) ==12364== by 0x648FD13: xmlNewNs (tree.c:751) ==12364== by 0x5ECB73B: domdoc_createNode (domdoc.c:2037) ==12364== by 0x4A736EB: IXMLDOMDocument_createNode (msxml.h:2045) ==12364== by 0x4A736EB: test_create_attribute (???:0) ==12364== by 0x4A74796: func_domdoc (domdoc.c:12226) ==12364== by 0x4AAEF37: run_test (test.h:589) ==12364== by 0x4AAF363: main (test.h:671) ==12364== { 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 ==12375== 96 bytes in 1 blocks are possibly lost in loss record 470 of 727 ==12375== at 0x7BC50754: notify_alloc (heap.c:254) ==12375== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==12375== by 0x8D80165: heap_alloc_zero (internet.h:99) ==12375== by 0x8D81458: create_netconn (netconnection.c:348) ==12375== by 0x8D70AF6: open_http_connection (http.c:4851) ==12375== by 0x8D71235: HTTP_HttpSendRequestW (http.c:4992) ==12375== by 0x8D7210C: AsyncHttpSendRequestProc (http.c:5261) ==12375== by 0x8D7E094: INTERNET_WorkerThreadFunc (internet.c:3724) ==12375== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==12375== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==12375== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==12375== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==12375== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==12375== by 0x7BC9970A: start_thread (thread.c:453) ==12375== by 0x4243260: start_thread (pthread_create.c:333) ==12375== by 0x433F31D: clone (clone.S:114) ==12375== { 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 ==12427== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp12427_9bd7a4fb is empty ==12427== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==12427== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp12427_9bd7a4fb is empty ==12427== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==12427== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp12427_9bd7a4fb is empty ==12427== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==12427== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp12427_9bd7a4fb is empty ==12427== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==12427== 12 bytes in 1 blocks are definitely lost in loss record 205 of 2,539 ==12427== at 0x7BC50754: notify_alloc (heap.c:254) ==12427== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==12427== by 0x90E30A0: heap_alloc (mshtml_private.h:1157) ==12427== by 0x90E99B7: nsSupportsWeakReference_GetWeakReference (nsembed.c:1952) ==12427== by 0x6BB64A55: ??? ==12427== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:heap_alloc fun:nsSupportsWeakReference_GetWeakReference obj:* } ==12427== 128 bytes in 4 blocks are possibly lost in loss record 1,774 of 2,539 ==12427== at 0x7BC50754: notify_alloc (heap.c:254) ==12427== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==12427== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==12427== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==12427== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==12427== by 0x6A0D8113: ??? ==12427== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==12427== 304 bytes in 4 blocks are possibly lost in loss record 2,002 of 2,539 ==12427== at 0x7BC50754: notify_alloc (heap.c:254) ==12427== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==12427== by 0x4EAB91A: IMalloc_fnAlloc (ifs.c:187) ==12427== by 0x4EAC1B9: IMalloc_Alloc (objidl.h:1508) ==12427== by 0x4EAC1B9: CoTaskMemAlloc (???:0) ==12427== by 0x4C089BE: alloc_bstr (oleaut.c:177) ==12427== by 0x4C08D85: SysAllocStringLen (oleaut.c:355) ==12427== by 0x5B3BC83: pre_process_uri (uri.c:786) ==12427== by 0x5B49176: CreateUri (uri.c:5738) ==12427== by 0x9108FCA: create_uri (persist.c:185) ==12427== by 0x90F9A63: nsIOServiceHook_NewURI (nsio.c:3890) ==12427== by 0x69F3AFD9: ??? ==12427== { 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:* } ==12427== 1,276 bytes in 5 blocks are possibly lost in loss record 2,284 of 2,539 ==12427== at 0x7BC50754: notify_alloc (heap.c:254) ==12427== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==12427== by 0xAADDF62: msvcrt_heap_realloc (heap.c:102) ==12427== by 0xAADEB15: MSVCRT_realloc (heap.c:457) ==12427== by 0x69E78C00: ??? ==12427== { 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 exception && touch exception.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==12618== 5 bytes in 1 blocks are definitely lost in loss record 4 of 242 ==12618== at 0x402B267: malloc (vg_replace_malloc.c:299) ==12618== by 0x42CD6A5: strdup (strdup.c:42) ==12618== by 0x4A9D773: main (test.h:649) ==12618== { Memcheck:Leak match-leak-kinds: definite fun:malloc fun:strdup fun:main } make[1]: *** [Makefile:277: exception.ok] Error 1 ../../../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 ==12626== Invalid read of size 1 ==12626== at 0x7BCAB18F: virtual_check_buffer_for_write (virtual.c:1632) ==12626== by 0x7BC48875: NtReadFile (file.c:860) ==12626== by 0x4A48CE5: test_read_write (file.c:3533) ==12626== by 0x4A4E50D: func_file (file.c:4245) ==12626== by 0x4A9D4FA: run_test (test.h:589) ==12626== by 0x4A9D926: main (test.h:671) ==12626== Address 0xdeadbeef is on thread 1's stack ==12626== { Memcheck:Addr1 fun:virtual_check_buffer_for_write fun:NtReadFile fun:test_read_write fun:func_file fun:run_test fun:main } 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]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ntdll/tests' make: *** [Makefile:13794: dlls/ntdll/tests/test] Error 2 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 make[1]: *** [Makefile:468: vartype.ok] Error 23 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/oleaut32/tests' make: *** [Makefile:14278: 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 0x6488b2c (thread 000b), 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 (0x06488b2c). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:06488b2c ESP:04b0e9f0 EBP:00028350 EFLAGS:00000004( - -- - -P- ) EAX:00000003 EBX:068a8000 ECX:04731538 EDX:00200000 ESI:046ba8b0 EDI:04731538 Stack dump: 0x04b0e9f0: 04b0ea2c 0472ae84 00000003 00000002 0x04b0ea00: 00007a50 00007a64 00000082 00007a6c 0x04b0ea10: 00800000 00000000 00007a44 00007a48 0x04b0ea20: 00007a4c 00000000 046ba090 00007a74 0x04b0ea30: 00000000 00000000 00000000 00000000 0x04b0ea40: 00000000 00000000 00000000 9d009200 Backtrace: =>0 0x06488b2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x0646f35b in radeonsi_dri.so (+0x63435a) (0x046b9428) 2 0x0646f6e2 in radeonsi_dri.so (+0x6346e1) (0x04b0eb88) 3 0x064efa6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0eb88) 4 0x05e6a79c in radeonsi_dri.so (+0x2f79b) (0x046afd48) 5 0x062a2000 in radeonsi_dri.so (+0x466fff) (0x046afd48) 6 0x062a1a3d in radeonsi_dri.so (+0x466a3c) (0x046afd48) 7 0x0616294b in radeonsi_dri.so (+0x32794a) (0x046afd48) 8 0x0615e976 in radeonsi_dri.so (+0x323975) (0x046afcc0) 9 0x05968722 in libgl.so.1 (+0x43721) (0x045fd048) 10 0x0593da42 in libgl.so.1 (+0x18a41) (0x045fab20) 11 0x0593960b in libgl.so.1 (+0x1460a) (0x04b0f644) 12 0x05939784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0f644) 13 0x055885cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0f718) 14 0x0558a023 init_opengl+0xfbe(once=0x55e6e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f928) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f978) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f9a8) 17 0x0558a49e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f9d8) 18 0x05592533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f9f8) 19 0x0557d293 X11DRV_wine_get_wgl_driver+0x10(dev=0x49003f0, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0fa28) 20 0x04c45d8e windrv_wine_get_wgl_driver+0x64(dev=0x49003f0, version=0xf) [/home/austin/wine-valgrind/dlls/gdi32/dibdrv/dc.c:1021] in gdi32 (0x04b0fa48) 21 0x04cbc5c4 __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 0x04cbc671 ChoosePixelFormat+0x8b(hdc=, pfd=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:75] in gdi32 (0x04b0fc48) 26 0x04828033 func_opengl+0xf7() [/home/austin/wine-valgrind/dlls/opengl32/tests/opengl.c:1633] in opengl32_test (0x04b0fcc8) 27 0x0482934f run_test+0x96(name="opengl") [/home/austin/wine-valgrind/dlls/opengl32/tests/../../../include/wine/test.h:589] in opengl32_test (0x04b0fd08) 28 0x0482977a main+0x244(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/opengl32/tests/../../../include/wine/test.h:671] in opengl32_test (0x04b0fdd8) 29 0x0482980b __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in opengl32_test (0x04b0fe18) 30 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 31 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 32 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 33 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 34 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 35 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfebee2b8) 38 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfebee338) 39 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfebef1e8) 40 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfebef228) 41 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfebef764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfebef278) 42 0x7c000f80 main+0x145(argc=, argv=0xfebef764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfebef6b8) 43 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x06488b2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 482f000 Dwarf opengl32_test \-PE 4820000- 482f000 \ opengl32_test ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4c10000- 4d55000 Dwarf gdi32 \-PE 4c20000- 4d55000 \ gdi32 ELF 4d55000- 4dd6000 Deferred advapi32 \-PE 4d60000- 4dd6000 \ advapi32 ELF 4dd6000- 4f4b000 Deferred user32 \-PE 4df0000- 4f4b000 \ user32 ELF 514b000- 5166000 Deferred version \-PE 5150000- 5166000 \ version ELF 51b2000- 526a000 Deferred libfreetype.so.6 ELF 5272000- 527e000 Deferred libxcursor.so.1 ELF 5282000- 5289000 Deferred libxfixes.so.3 ELF 529d000- 52a0000 Deferred libxshmfence.so.1 ELF 52bd000- 52e2000 Deferred imm32 \-PE 52c0000- 52e2000 \ imm32 ELF 52fa000- 52fe000 Deferred libxinerama.so.1 ELF 5302000- 5308000 Deferred libxxf86vm.so.1 ELF 530c000- 5318000 Deferred libxrender.so.1 ELF 531c000- 5329000 Deferred libxrandr.so.2 ELF 532d000- 5331000 Deferred libxcomposite.so.1 ELF 533e000- 5351000 Deferred libxext.so.6 ELF 535d000- 5361000 Deferred libxau.so.6 ELF 546a000- 5483000 Deferred libz.so.1 ELF 5483000- 5495000 Deferred libbz2.so.1 ELF 5499000- 54d7000 Deferred libpng16.so.16 ELF 54db000- 5518000 Deferred libfontconfig.so.1 ELF 551c000- 5546000 Deferred libexpat.so.1 ELF 554a000- 55ea000 Dwarf winex11 \-PE 5550000- 55ea000 \ winex11 ELF 55ea000- 573b000 Deferred libx11.so.6 ELF 573b000- 5767000 Deferred libxcb.so.1 ELF 5767000- 576e000 Deferred libxdmcp.so.6 ELF 576e000- 578a000 Deferred libbsd.so.0 ELF 57d6000- 57e9000 Deferred libxi.so.6 ELF 581d000- 5820000 Deferred libx11-xcb.so.1 ELF 582e000- 5832000 Deferred libxcb-dri3.so.0 ELF 5832000- 5836000 Deferred libxcb-present.so.0 ELF 58f5000- 591d000 Deferred libudev.so.1 ELF 5925000- 599c000 Dwarf libgl.so.1 ELF 5a9c000- 5aa4000 Deferred libxcb-sync.so.1 ELF 5aac000- 5ae3000 Deferred libglapi.so.0 ELF 5ae7000- 5aeb000 Deferred libxdamage.so.1 ELF 5aeb000- 5b08000 Deferred libxcb-glx.so.0 ELF 5b0c000- 5b12000 Deferred libxcb-dri2.so.0 ELF 5b16000- 5b28000 Deferred libdrm.so.2 ELF 5c38000- 5c3b000 Deferred libllvmamdgpuutils.so.3.7 ELF 5e3b000- 6aa6000 Dwarf radeonsi_dri.so ELF 6ca3000- 6ca9000 Deferred libtxc_dxtn.so ELF 6cdb000- 6d1b000 Deferred libnettle.so.6 ELF 6d1f000- 6d44000 Deferred libdrm_intel.so.1 ELF 6d48000- 6d52000 Deferred libdrm_nouveau.so.2 ELF 6d56000- 6d64000 Deferred libdrm_radeon.so.1 ELF 6d68000- 6d73000 Deferred libdrm_amdgpu.so.1 ELF 6d77000- 6d94000 Deferred libelf.so.1 ELF 73a6000- 746d000 Deferred libllvmipo.so.3.7 ELF 7481000- 7484000 Deferred libllvmamdgpuinfo.so.3.7 ELF 75b1000- 7720000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7d32000- 7dda000 Deferred libllvmvectorize.so.3.7 ELF 7dda000- 7e04000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 7ef0000- 7f4a000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 7f4a000- 8016000 Deferred libllvmamdgpudesc.so.3.7 ELF 8016000- 8052000 Deferred libllvmbitwriter.so.3.7 ELF 8052000- 81ba000 Deferred libllvmx86disassembler.so.3.7 ELF 81ba000- 825d000 Deferred libllvmx86asmparser.so.3.7 ELF 835d000- 839e000 Deferred libllvmprofiledata.so.3.7 ELF 87db000- 8a61000 Deferred libllvmx86codegen.so.3.7 ELF 8b65000- 8b6e000 Deferred libllvmmcdisassembler.so.3.7 ELF 8b72000- 8b75000 Deferred libllvmx86info.so.3.7 ELF 93b8000- 93ef000 Deferred libllvmipa.so.3.7 ELF 95b4000- 98bd000 Deferred libllvmselectiondag.so.3.7 ELF 98bd000- 998b000 Deferred libllvmasmprinter.so.3.7 ELF 998b000- 9997000 Deferred libllvmx86utils.so.3.7 ELF 999b000- 99ab000 Deferred libllvmmcjit.so.3.7 ELF 9f59000- a447000 Deferred libllvmcodegen.so.3.7 ELF a547000- a809000 Deferred libllvmscalaropts.so.3.7 ELF a909000- a91d000 Deferred libllvmtarget.so.3.7 ELF ae10000- aeff000 Deferred libllvminstcombine.so.3.7 ELF afff000- b0a7000 Deferred libllvminstrumentation.so.3.7 ELF b728000- b773000 Deferred libllvmx86asmprinter.so.3.7 ELF b773000- b79d000 Deferred libllvmexecutionengine.so.3.7 ELF b7c5000- b7d0000 Deferred libpciaccess.so.0 ELF babd000- bc23000 Deferred libllvmtransformutils.so.3.7 ELF bd23000- be80000 Deferred libllvmx86desc.so.3.7 ELF be80000- befe000 Deferred libllvmruntimedyld.so.3.7 ELF befe000- bf3b000 Deferred libllvmmcparser.so.3.7 ELF bf3b000- bf57000 Deferred libgcc_s.so.1 ELF c0f2000- c3df000 Deferred libllvmanalysis.so.3.7 ELF c6df000- c786000 Deferred libllvmobject.so.3.7 ELF c786000- c7d7000 Deferred libllvmbitreader.so.3.7 ELF c9ed000- caac000 Deferred libllvmmc.so.3.7 ELF ccac000- cd0a000 Deferred libncurses.so.6 ELF d1bc000- d522000 Deferred libllvmcore.so.3.7 ELF d622000- d73f000 Deferred libllvmsupport.so.3.7 ELF 7a800000-7a937000 Dwarf opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000001ac 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000001a5 0 000000b8 0 000000b7 0 000000b6 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001de (D) Z:\home\austin\wine-valgrind\dlls\opengl32\tests\opengl32_test.exe 0000000b 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 make[1]: *** [Makefile:171: opengl.ok] Error 29 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/opengl32/tests' make: *** [Makefile:14595: 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 ==13481== 72 bytes in 1 blocks are definitely lost in loss record 323 of 605 ==13481== at 0x7BC50754: notify_alloc (heap.c:254) ==13481== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==13481== by 0x4E0B91A: IMalloc_fnAlloc (ifs.c:187) ==13481== by 0x4E0C1B9: IMalloc_Alloc (objidl.h:1508) ==13481== by 0x4E0C1B9: CoTaskMemAlloc (???:0) ==13481== by 0x5D7627F: ??? ==13481== by 0x4A21359: IMediaSample_SetMediaType (strmif.h:2713) ==13481== by 0x4A21359: media_thread (???:0) ==13481== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==13481== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==13481== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==13481== by 0x7BC9970A: start_thread (thread.c:453) ==13481== by 0x4243260: start_thread (pthread_create.c:333) ==13481== by 0x433F31D: clone (clone.S:114) ==13481== { 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 } ==13481== 72 bytes in 1 blocks are definitely lost in loss record 324 of 605 ==13481== at 0x7BC50754: notify_alloc (heap.c:254) ==13481== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==13481== by 0x4E0B91A: IMalloc_fnAlloc (ifs.c:187) ==13481== by 0x4E0C1B9: IMalloc_Alloc (objidl.h:1508) ==13481== by 0x4E0C1B9: CoTaskMemAlloc (???:0) ==13481== by 0x5D7627F: ??? ==13481== by 0x5D03585: ??? ==13481== by 0x5D037B6: ??? ==13481== by 0x5D0CDE7: ??? ==13481== by 0x4A21442: IMemInputPin_Receive (strmif.h:3683) ==13481== by 0x4A21442: media_thread (???:0) ==13481== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==13481== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==13481== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==13481== by 0x7BC9970A: start_thread (thread.c:453) ==13481== by 0x4243260: start_thread (pthread_create.c:333) ==13481== by 0x433F31D: clone (clone.S:114) ==13481== { 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 } ==13481== 72 bytes in 1 blocks are definitely lost in loss record 326 of 605 ==13481== at 0x7BC50754: notify_alloc (heap.c:254) ==13481== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==13481== by 0x4E0B91A: IMalloc_fnAlloc (ifs.c:187) ==13481== by 0x4E0C1B9: IMalloc_Alloc (objidl.h:1508) ==13481== by 0x4E0C1B9: CoTaskMemAlloc (???:0) ==13481== by 0x5D7627F: ??? ==13481== by 0x5D03585: ??? ==13481== by 0x5D03854: ??? ==13481== by 0x5D0CDE7: ??? ==13481== by 0x4A21442: IMemInputPin_Receive (strmif.h:3683) ==13481== by 0x4A21442: media_thread (???:0) ==13481== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==13481== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==13481== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==13481== by 0x7BC9970A: start_thread (thread.c:453) ==13481== by 0x4243260: start_thread (pthread_create.c:333) ==13481== by 0x433F31D: clone (clone.S:114) ==13481== { 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 filtergraph.c:359: Tests skipped: Could not read test file L"test.avi", skipping test filtergraph.c:359: Tests skipped: Could not read test file L"test.mpg", skipping test ../../../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:768: 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:1923: 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 make[1]: *** [Makefile:187: 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 0x4b38f39 (thread 0131), 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 (0x04b38f39). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:000b GS:0013 EIP:04b38f39 ESP:04b0fbb0 EBP:04b0fbe8 EFLAGS:00200004( - -- - -P- ) EAX:00740000 EBX:04b45000 ECX:04b0fc00 EDX:04b0fc64 ESI:04b0fc00 EDI:7c000aa0 Stack dump: 0x04b0fbb0: 00000057 04837000 04821fe1 04824d7f 0x04b0fbc0: 048d0000 0483797a 00000008 0482f4b1 0x04b0fbd0: 048311a7 00000001 04201000 04b0fc00 0x04b0fbe0: 04837000 04b0fdf0 04b0fca8 04826cf1 0x04b0fbf0: 04b0fdf0 04837000 04b0fca8 04826cf1 0x04b0fc00: 04b0fc64 00000365 0483110a 04826729 Backtrace: =>0 0x04b38f39 DeleteSecurityContext+0x8e(phContext=) [/home/austin/wine-valgrind/dlls/secur32/wrapper.c:466] in secur32 (0x04b0fbe8) 1 0x04826cf1 testAuth+0x5d6(data_rep=0x10, fake=0x1) [/home/austin/wine-valgrind/dlls/secur32/tests/ntlm.c:903] in secur32_test (0x04b0fca8) 2 0x048291d4 func_ntlm+0x98() [/home/austin/wine-valgrind/dlls/secur32/tests/ntlm.c:1472] in secur32_test (0x04b0fcc8) 3 0x0482fd72 run_test+0x96(name="ntlm") [/home/austin/wine-valgrind/dlls/secur32/tests/../../../include/wine/test.h:589] in secur32_test (0x04b0fd08) 4 0x0483019e main+0x245(argc=, argv=0x48d1de8) [/home/austin/wine-valgrind/dlls/secur32/tests/../../../include/wine/test.h:671] in secur32_test (0x04b0fdd8) 5 0x0483022f __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in secur32_test (0x04b0fe18) 6 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 7 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 8 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 9 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 10 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 11 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfef982b8) 14 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfef98338) 15 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfef991e8) 16 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfef99228) 17 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfef99764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfef99278) 18 0x7c000f80 main+0x145(argc=, argv=0xfef99764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfef996b8) 19 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x04b38f39 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4838000 Dwarf secur32_test \-PE 4820000- 4838000 \ secur32_test ELF 4844000- 485c000 Deferred libresolv.so.2 ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 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- 4ec8000 Deferred user32 \-PE 4d70000- 4ec8000 \ user32 ELF 50cc000- 5211000 Deferred gdi32 \-PE 50e0000- 5211000 \ gdi32 ELF 521d000- 5238000 Deferred version \-PE 5220000- 5238000 \ version ELF 5290000- 53c7000 Deferred libgnutls.so.28 ELF 56cb000- 56e4000 Deferred libz.so.1 ELF 56ec000- 5701000 Deferred libtasn1.so.6 ELF 5705000- 5745000 Deferred libnettle.so.6 ELF 5749000- 5780000 Deferred libhogweed.so.4 ELF 5780000- 57f7000 Deferred libgmp.so.10 ELF 5803000- 58bb000 Deferred libfreetype.so.6 ELF 59c3000- 59d5000 Deferred libbz2.so.1 ELF 59dd000- 5a1b000 Deferred libpng16.so.16 ELF 5a1f000- 5a5c000 Deferred libfontconfig.so.1 ELF 5a60000- 5a8a000 Deferred libexpat.so.1 ELF 5ae1000- 5b06000 Deferred imm32 \-PE 5af0000- 5b06000 \ imm32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 000001ef 0 000001ee 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000000b1 0 000000d1 0 000001a5 0 000000b7 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001ed svchost.exe 00000068 0 000001f9 0 00000008 0 000001f6 0 000001f7 0 000001f8 0 000001f3 0 000000dd (D) Z:\home\austin\wine-valgrind\dlls\secur32\tests\secur32_test.exe 00000131 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==14660== 8 bytes in 1 blocks are definitely lost in loss record 11 of 330 ==14660== at 0x7BC50754: notify_alloc (heap.c:254) ==14660== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==14660== by 0x4B380C8: SECUR32_makeSecHandle (wrapper.c:44) ==14660== by 0x4B38270: AcquireCredentialsHandleA (wrapper.c:90) ==14660== by 0x4824E7E: setupClient (ntlm.c:331) ==14660== by 0x4826834: testAuth (ntlm.c:818) ==14660== by 0x48291D3: func_ntlm (ntlm.c:1472) ==14660== by 0x482FD71: run_test (test.h:589) ==14660== by 0x483019D: main (test.h:671) ==14660== { 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 } make[1]: *** [Makefile:218: 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' make: *** [Makefile:15745: 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 ==14938== Invalid read of size 1 ==14938== at 0x4C06C6C: _ILIsValue (pidl.c:1869) ==14938== by 0x4C687C2: ItemMenu_Constructor (shlview_cmenu.c:637) ==14938== by 0x4C44BEC: ShellFolder2_GetUIObjectOf (shfldr_unixfs.c:1191) ==14938== by 0x4C10679: IShellFolder_GetUIObjectOf (shobjidl.h:1684) ==14938== by 0x4C10679: FolderItemVerbs_Constructor (???:0) ==14938== by 0x4C11802: FolderItemImpl_Verbs (shelldispatch.c:871) ==14938== by 0x4A329BF: FolderItem_Verbs (shldisp.h:2168) ==14938== by 0x4A329BF: test_Verbs (???:0) ==14938== by 0x4A33318: func_shelldispatch (shelldispatch.c:1084) ==14938== by 0x4A8615D: run_test (test.h:589) ==14938== by 0x4A86589: main (test.h:671) ==14938== Address 0x6e454c2 is 14 bytes before a block of size 16 free'd ==14938== at 0x7BC507C3: notify_free (heap.c:262) ==14938== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==14938== by 0x544AD7B: IMalloc_fnFree (ifs.c:269) ==14938== by 0x544B209: IMalloc_Free (objidl.h:1514) ==14938== by 0x544B209: CoTaskMemFree (???:0) ==14938== by 0x5828CDB: SysFreeString (oleaut.c:324) ==14938== by 0x585437D: ITypeLib2_fnRelease (typelib.c:4778) ==14938== by 0x58544B9: ITypeLib2_Release (oaidl.h:3090) ==14938== by 0x58544B9: ITypeLib2_fnRelease (???:0) ==14938== by 0x5856966: ITypeLib2_Release (oaidl.h:3090) ==14938== by 0x5856966: ITypeInfo_fnRelease (???:0) ==14938== by 0x583FAD3: ITypeInfo_Release (oaidl.h:1568) ==14938== by 0x583FAD3: TMProxyImpl_Release (???:0) ==14938== by 0x5450339: IRpcProxyBuffer_Release (objidl.h:9247) ==14938== by 0x5450339: ifproxy_destroy (???:0) ==14938== by 0x545119E: proxy_manager_destroy (marshal.c:1097) ==14938== by 0x544EBCA: ClientIdentity_Release (marshal.c:252) ==14938== by 0x58446D2: ProxyIUnknown_Release (tmarshal.c:1626) ==14938== by 0x4A31F17: IShellWindows_Release (exdisp.h:3081) ==14938== by 0x4A31F17: test_ShellWindows (???:0) ==14938== by 0x4A3330E: func_shelldispatch (shelldispatch.c:1082) ==14938== by 0x4A8615D: run_test (test.h:589) ==14938== by 0x4A86589: main (test.h:671) ==14938== Block was alloc'd at ==14938== at 0x7BC50754: notify_alloc (heap.c:254) ==14938== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==14938== by 0x544A91A: IMalloc_fnAlloc (ifs.c:187) ==14938== by 0x544B1B9: IMalloc_Alloc (objidl.h:1508) ==14938== by 0x544B1B9: CoTaskMemAlloc (???:0) ==14938== by 0x58289BE: alloc_bstr (oleaut.c:177) ==14938== by 0x5828F1D: SysAllocStringByteLen (oleaut.c:440) ==14938== by 0x584C83E: MSFT_ReadAllNames (typelib.c:2181) ==14938== by 0x584FF03: ITypeLib2_Constructor_MSFT (typelib.c:3516) ==14938== by 0x584F83C: TLB_ReadTypeLib (typelib.c:3396) ==14938== by 0x5848574: LoadTypeLibEx (typelib.c:477) ==14938== by 0x5848493: LoadTypeLib (typelib.c:453) ==14938== by 0x585C92B: ITypeInfo_fnGetRefTypeInfo (typelib.c:7695) ==14938== by 0x583F684: ITypeInfo_GetRefTypeInfo (oaidl.h:1605) ==14938== by 0x583F684: num_of_funcs (???:0) ==14938== by 0x583F568: num_of_funcs (tmarshal.c:452) ==14938== by 0x5845352: PSFacBuf_CreateProxy (tmarshal.c:1867) ==14938== by 0x5450ADD: IPSFactoryBuffer_CreateProxy (objidl.h:9564) ==14938== by 0x5450ADD: proxy_manager_create_ifproxy (???:0) ==14938== by 0x5451995: unmarshal_object (marshal.c:1293) ==14938== by 0x5451EE4: StdMarshalImpl_UnmarshalInterface (marshal.c:1388) ==14938== by 0x545361E: IMarshal_UnmarshalInterface (objidl.h:881) ==14938== by 0x545361E: CoUnmarshalInterface (???:0) ==14938== by 0x57AD0DA: NdrInterfacePointerUnmarshall (ndr_ole.c:353) ==14938== { 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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 ==15012== Invalid read of size 2 ==15012== at 0x7B464E69: SearchPathW (path.c:894) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B52B: RtlDetermineDosPathNameType_U (path.c:244) ==15012== by 0x7B4649F8: contains_pathW (path.c:763) ==15012== by 0x7B464E98: SearchPathW (path.c:902) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:contains_pathW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B537: RtlDetermineDosPathNameType_U (path.c:244) ==15012== by 0x7B4649F8: contains_pathW (path.c:763) ==15012== by 0x7B464E98: SearchPathW (path.c:902) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:contains_pathW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B5C9: RtlDetermineDosPathNameType_U (path.c:254) ==15012== by 0x7B4649F8: contains_pathW (path.c:763) ==15012== by 0x7B464E98: SearchPathW (path.c:902) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:contains_pathW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B5D7: RtlDetermineDosPathNameType_U (path.c:254) ==15012== by 0x7B4649F8: contains_pathW (path.c:763) ==15012== by 0x7B464E98: SearchPathW (path.c:902) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bba is 18 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:contains_pathW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7B464A0B: contains_pathW (path.c:764) ==15012== by 0x7B464E98: SearchPathW (path.c:902) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:contains_pathW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7B462813: strlenW (unicode.h:200) ==15012== by 0x7B465093: SearchPathW (path.c:943) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strlenW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7B462892: strchrW (unicode.h:235) ==15012== by 0x7B4650AF: SearchPathW (path.c:945) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strchrW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7B4628A9: strchrW (unicode.h:235) ==15012== by 0x7B4650AF: SearchPathW (path.c:945) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strchrW fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC7D1A8: strlenW (unicode.h:200) ==15012== by 0x7BC7D57C: RtlInitUnicodeString (rtlstr.c:222) ==15012== by 0x7B464AC6: find_actctx_dllpath (path.c:787) ==15012== by 0x7B46517F: SearchPathW (path.c:968) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strlenW fun:RtlInitUnicodeString fun:find_actctx_dllpath fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B52B: RtlDetermineDosPathNameType_U (path.c:244) ==15012== by 0x7BC6BE26: RtlDosSearchPath_U (path.c:443) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B537: RtlDetermineDosPathNameType_U (path.c:244) ==15012== by 0x7BC6BE26: RtlDosSearchPath_U (path.c:443) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B5C9: RtlDetermineDosPathNameType_U (path.c:254) ==15012== by 0x7BC6BE26: RtlDosSearchPath_U (path.c:443) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6B5D7: RtlDetermineDosPathNameType_U (path.c:254) ==15012== by 0x7BC6BE26: RtlDosSearchPath_U (path.c:443) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bba is 18 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:RtlDetermineDosPathNameType_U fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6AA6A: strlenW (unicode.h:200) ==15012== by 0x7BC6BE56: RtlDosSearchPath_U (path.c:451) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strlenW fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6AB41: strchrW (unicode.h:235) ==15012== by 0x7BC6BE6C: RtlDosSearchPath_U (path.c:454) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strchrW fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6AB58: strchrW (unicode.h:235) ==15012== by 0x7BC6BE6C: RtlDosSearchPath_U (path.c:454) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strchrW fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ==15012== Invalid read of size 2 ==15012== at 0x7BC6AA9F: strcpyW (unicode.h:207) ==15012== by 0x7BC6BFE5: RtlDosSearchPath_U (path.c:479) ==15012== by 0x7B4652CC: SearchPathW (path.c:996) ==15012== by 0x4FF66C7: ICO_ExtractIconExW (exticon.c:289) ==15012== by 0x4FF78F2: PrivateExtractIconsW (exticon.c:585) ==15012== by 0x4C0CE11: ExtractIconW (shell32_main.c:886) ==15012== by 0x4C0CCCE: ExtractIconA (shell32_main.c:861) ==15012== by 0x4A39E26: test_ExtractIcon (shelllink.c:1164) ==15012== by 0x4A3AECE: func_shelllink (shelllink.c:1328) ==15012== by 0x4A8615D: run_test (test.h:589) ==15012== by 0x4A86589: main (test.h:671) ==15012== Address 0x48e4bb8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==15012== at 0x7BC50754: notify_alloc (heap.c:254) ==15012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==15012== by 0x52984CB: create_family (freetype.c:1584) ==15012== by 0x5298DE1: load_font_list_from_cache (freetype.c:1758) ==15012== by 0x52A17DC: WineEngInit (freetype.c:4397) ==15012== by 0x52B0544: DllMain (gdiobj.c:658) ==15012== by 0x52CECD5: __wine_spec_dll_entry (dll_entry.c:40) ==15012== by 0x7BC56DC9: ??? (loader.c:143) ==15012== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==15012== by 0x7BC59BD1: process_attach (loader.c:1215) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC59B1C: process_attach (loader.c:1203) ==15012== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==15012== by 0x404019C: ??? (port.c:78) ==15012== { Memcheck:Addr2 fun:strcpyW fun:RtlDosSearchPath_U fun:SearchPathW fun:ICO_ExtractIconExW fun:PrivateExtractIconsW fun:ExtractIconW fun:ExtractIconA fun:test_ExtractIcon fun:func_shelllink fun:run_test fun:main } ../../../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\wtacb7.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 shlexec.c:1113: Test failed: ShellExecute(verb="", file=""C:\users\austin\Temp\wtacb7.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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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\wtacb7.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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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/wtacb7.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 shlexec.c:1693: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtacb7.tmp\test file.noassoc.shlexec") WaitForSingleObject returned 258 shlexec.c:1693: Test failed: ShellExecute(verb="", file="C:\users\austin\Temp\wtacb7.tmp\test file.noassoc.shlexec") ShlexecVar expected 'Present', but key not found or empty 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\wtacb7.tmp\test file.noassoc.shlexec") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.noassoc.shlexec', got 'C:\users\austin\Temp\wtacb7.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\wtacb7.tmp\test file.shlexec") argvA3 expected 'QuotedLowerL', but key not found or empty shlexec.c:1717: Test failed: ShellExecute(verb="QuotedLowerL", file="C:\users\austin\Temp\wtacb7.tmp\test file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.shlexec', 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 shlexec.c:1715: Test failed: ShellExecute(verb="QuotedUpperL", file="C:\users\austin\Temp\wtacb7.tmp\test file.shlexec") argvA3 expected 'QuotedUpperL', got 'Open' shlexec.c:1717: Test failed: ShellExecute(verb="QuotedUpperL", file="C:\users\austin\Temp\wtacb7.tmp\test file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.shlexec', got 'C:\users\austin\Temp\wtacb7.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\wtacb7.tmp\test file.sha") argvA3 expected 'averb', got 'QuotedLowerL' shlexec.c:1717: Test failed: ShellExecute(verb="averb", file="C:\users\austin\Temp\wtacb7.tmp\test file.sha") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.sha', got 'C:\users\austin\Temp\wtacb7.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\wtacb7.tmp\masked file.shlexec") argvA3 expected 'Open', got 'AVerb' shlexec.c:1717: Test failed: ShellExecute(file="C:\users\austin\Temp\wtacb7.tmp\masked file.shlexec") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\masked file.shlexec', got 'C:\users\austin\Temp\wtacb7.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\wtacb7.tmp\test file.shlexec"") argcA expected 5, but got 6 shlexec.c:1776: Test failed: ShellExecute(file=""C:\users\austin\Temp\wtacb7.tmp\test file.shlexec"") argvA3 expected 'Open', got 'UpperL' shlexec.c:1778: Test failed: ShellExecute(file=""C:\users\austin\Temp\wtacb7.tmp\test file.shlexec"") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.shlexec', got 'C:\users\austin\Temp\wtacb7.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/wtacb7.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 shlexec.c:1941: Test failed: ShellExecute(file="fakeproto://foo/bar") 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 shlexec.c:1971: Test failed: ShellExecute(verb="averb", file="shlproto://foo/bar") argvA3 expected 'AVerb', got 'URL' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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 shlexec.c:1994: Test failed: ShellExecute(file="shlproto://foo/bar", params="shlexec.shlexec") argvA4 expected 'shlproto://foo/bar', got 'shlproto://foo/bar.exe' preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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:2178: Test failed: ShellExecuteEx(mask="0x808040", file="C:\users\austin\Temp\wtacb7.tmp\test_shortcut_shlexec.lnk") argvA3 expected 'Open', got 'URL' shlexec.c:2181: Test failed: ShellExecuteEx(mask="0x808040", file="C:\users\austin\Temp\wtacb7.tmp\test_shortcut_shlexec.lnk") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.shlexec', got 'shlproto:///foo' shlexec.c:2183: Test succeeded inside todo block: ShellExecuteEx(mask="0x808240", file="%TMPDIR%\test_shortcut_shlexec.lnk") WaitForSingleObject returned 0 shlexec.c:2186: Test succeeded inside todo block: ShellExecuteEx(mask="0x808240", file="%TMPDIR%\test_shortcut_shlexec.lnk") argvA3 expected 'Open', got 'Open' shlexec.c:2189: Test succeeded inside todo block: ShellExecuteEx(mask="0x808240", file="%TMPDIR%\test_shortcut_shlexec.lnk") argvA4 expected 'C:\users\austin\Temp\wtacb7.tmp\test file.shlexec', got 'C:\users\austin\Temp\wtacb7.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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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\wtacb7.tmp\test file.noassoc", params="shlexec "C:\users\austin\Temp\wtacb7.tmp\wtaced.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 make[1]: *** [Makefile:654: shlexec.ok] Error 32 ../../../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' make: *** [Makefile:16090: 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:2146: 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:2970: Test failed: Read failed: 00000001 ==16485== 192 bytes in 2 blocks are possibly lost in loss record 672 of 915 ==16485== at 0x7BC50754: notify_alloc (heap.c:254) ==16485== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16485== by 0x5B72165: heap_alloc_zero (internet.h:99) ==16485== by 0x5B73458: create_netconn (netconnection.c:348) ==16485== by 0x5B62AF6: open_http_connection (http.c:4851) ==16485== by 0x5B63235: HTTP_HttpSendRequestW (http.c:4992) ==16485== by 0x5B6410C: AsyncHttpSendRequestProc (http.c:5261) ==16485== by 0x5B70094: INTERNET_WorkerThreadFunc (internet.c:3724) ==16485== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==16485== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==16485== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16485== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16485== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16485== by 0x7BC9970A: start_thread (thread.c:453) ==16485== by 0x4243260: start_thread (pthread_create.c:333) ==16485== by 0x433F31D: clone (clone.S:114) ==16485== { 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 } make[1]: *** [Makefile:239: 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 ==16539== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp16539_7e5e9bcb is empty ==16539== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/xul.pdb ==16539== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp16539_7e5e9bcb is empty ==16539== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/lgpllibs.pdb ==16539== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp16539_7e5e9bcb is empty ==16539== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/nss3.pdb ==16539== LOAD_PDB_DEBUGINFO: Find PDB file: /tmp/valgrind_petmp16539_7e5e9bcb is empty ==16539== Warning: Missing or un-stat-able /home/austin/.wine-valgrind/drive_c/windows/system32/gecko/2.47/wine_gecko/mozglue.pdb ==16539== 8 bytes in 1 blocks are definitely lost in loss record 124 of 2,698 ==16539== at 0x7BC50754: notify_alloc (heap.c:254) ==16539== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16539== by 0x95A20C8: SECUR32_makeSecHandle (wrapper.c:44) ==16539== by 0x95A2B46: InitializeSecurityContextW (wrapper.c:354) ==16539== by 0x5B608A7: netcon_secure_connect_setup (netconnection.c:467) ==16539== by 0x5B611E4: NETCON_secure_connect (netconnection.c:617) ==16539== by 0x5B502A8: HTTP_HttpSendRequestW (http.c:5001) ==16539== by 0x5B5110C: AsyncHttpSendRequestProc (http.c:5261) ==16539== by 0x5B5D094: INTERNET_WorkerThreadFunc (internet.c:3724) ==16539== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==16539== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==16539== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16539== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16539== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16539== by 0x7BC9970A: start_thread (thread.c:453) ==16539== by 0x4243260: start_thread (pthread_create.c:333) ==16539== by 0x433F31D: clone (clone.S:114) ==16539== { 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 } ==16539== 96 bytes in 1 blocks are definitely lost in loss record 1,813 of 2,698 ==16539== at 0x7BC50754: notify_alloc (heap.c:254) ==16539== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16539== by 0x5B5F165: heap_alloc_zero (internet.h:99) ==16539== by 0x5B60458: create_netconn (netconnection.c:348) ==16539== by 0x5B4FAF6: open_http_connection (http.c:4851) ==16539== by 0x5B50235: HTTP_HttpSendRequestW (http.c:4992) ==16539== by 0x5B5110C: AsyncHttpSendRequestProc (http.c:5261) ==16539== by 0x5B5D094: INTERNET_WorkerThreadFunc (internet.c:3724) ==16539== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==16539== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==16539== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16539== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16539== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16539== by 0x7BC9970A: start_thread (thread.c:453) ==16539== by 0x4243260: start_thread (pthread_create.c:333) ==16539== by 0x433F31D: clone (clone.S:114) ==16539== { 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 } ==16539== 128 bytes in 4 blocks are possibly lost in loss record 1,915 of 2,698 ==16539== at 0x7BC50754: notify_alloc (heap.c:254) ==16539== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16539== by 0x7BC3BC63: RtlInitializeCriticalSectionEx (critsection.c:326) ==16539== by 0x7B47E38B: InitializeCriticalSectionEx (sync.c:359) ==16539== by 0x7B47E359: InitializeCriticalSectionAndSpinCount (sync.c:337) ==16539== by 0x6A0D8113: ??? ==16539== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlAllocateHeap fun:RtlInitializeCriticalSectionEx fun:InitializeCriticalSectionEx fun:InitializeCriticalSectionAndSpinCount obj:* } ==16539== 384 bytes in 4 blocks are possibly lost in loss record 2,220 of 2,698 ==16539== at 0x7BC50754: notify_alloc (heap.c:254) ==16539== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16539== by 0x5B5F165: heap_alloc_zero (internet.h:99) ==16539== by 0x5B60458: create_netconn (netconnection.c:348) ==16539== by 0x5B4FAF6: open_http_connection (http.c:4851) ==16539== by 0x5B50235: HTTP_HttpSendRequestW (http.c:4992) ==16539== by 0x5B5110C: AsyncHttpSendRequestProc (http.c:5261) ==16539== by 0x5B5D094: INTERNET_WorkerThreadFunc (internet.c:3724) ==16539== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==16539== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==16539== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16539== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16539== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16539== by 0x7BC9970A: start_thread (thread.c:453) ==16539== by 0x4243260: start_thread (pthread_create.c:333) ==16539== by 0x433F31D: clone (clone.S:114) ==16539== { 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 } ==16539== 986 bytes in 3 blocks are possibly lost in loss record 2,398 of 2,698 ==16539== at 0x7BC50754: notify_alloc (heap.c:254) ==16539== by 0x7BC55268: RtlReAllocateHeap (heap.c:1883) ==16539== by 0x8F21F62: msvcrt_heap_realloc (heap.c:102) ==16539== by 0x8F22B15: MSVCRT_realloc (heap.c:457) ==16539== by 0x69E78C00: ??? ==16539== { Memcheck:Leak match-leak-kinds: possible fun:notify_alloc fun:RtlReAllocateHeap fun:msvcrt_heap_realloc fun:MSVCRT_realloc obj:* } ==16539== 1,136 bytes in 16 blocks are possibly lost in loss record 2,425 of 2,698 ==16539== at 0x7BC50754: notify_alloc (heap.c:254) ==16539== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16539== by 0x4CD791A: IMalloc_fnAlloc (ifs.c:187) ==16539== by 0x4CD81B9: IMalloc_Alloc (objidl.h:1508) ==16539== by 0x4CD81B9: CoTaskMemAlloc (???:0) ==16539== by 0x54F09BE: alloc_bstr (oleaut.c:177) ==16539== by 0x54F0D85: SysAllocStringLen (oleaut.c:355) ==16539== by 0x4C04C83: pre_process_uri (uri.c:786) ==16539== by 0x4C12176: CreateUri (uri.c:5738) ==16539== by 0x768AFCA: create_uri (persist.c:185) ==16539== by 0x767BA63: nsIOServiceHook_NewURI (nsio.c:3890) ==16539== by 0x69F3AFD9: ??? ==16539== { 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:* } make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/urlmon/tests' make: *** [Makefile:17045: 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 ==16772== Syscall param writev(vector[...]) points to uninitialised byte(s) ==16772== at 0x4337453: __writev_nocancel (syscall-template.S:84) ==16772== by 0x7BC87C3B: send_request (server.c:228) ==16772== by 0x7BC87DEE: wine_server_call (server.c:309) ==16772== by 0x4CFD5E2: SetClipboardData (clipboard.c:904) ==16772== by 0x4A22DCF: test_RegisterClipboardFormatA (clipboard.c:434) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48ec890 is 8 bytes inside a block of size 9 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Uninitialised value was created by a client request ==16772== at 0x7BC50523: mark_block_uninitialized (heap.c:208) ==16772== by 0x7BC506AF: initialize_block (heap.c:239) ==16772== by 0x7BC54BF5: RtlAllocateHeap (heap.c:1717) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { 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 } ==16783== 8 bytes in 1 blocks are possibly lost in loss record 47 of 575 ==16783== at 0x7BC50754: notify_alloc (heap.c:254) ==16783== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16783== by 0x7B44973A: HeapAlloc (heap.c:271) ==16783== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16783== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16783== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16783== by 0x4B24E50: run_test (test.h:589) ==16783== by 0x4B2527C: main (test.h:671) ==16783== { 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 } ==16783== 9 bytes in 1 blocks are definitely lost in loss record 49 of 575 ==16783== at 0x7BC50754: notify_alloc (heap.c:254) ==16783== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16783== by 0x7B44973A: HeapAlloc (heap.c:271) ==16783== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16783== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16783== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16783== by 0x4B24E50: run_test (test.h:589) ==16783== by 0x4B2527C: main (test.h:671) ==16783== { 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 } ==16783== 100 bytes in 1 blocks are definitely lost in loss record 370 of 575 ==16783== at 0x7BC50754: notify_alloc (heap.c:254) ==16783== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16783== by 0x7B44973A: HeapAlloc (heap.c:271) ==16783== by 0x7B449907: GlobalAlloc (heap.c:365) ==16783== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16783== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16783== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16783== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16783== by 0x7BC9970A: start_thread (thread.c:453) ==16783== by 0x4243260: start_thread (pthread_create.c:333) ==16783== by 0x433F31D: clone (clone.S:114) ==16783== { 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 ==16784== 100 bytes in 1 blocks are definitely lost in loss record 301 of 469 ==16784== at 0x7BC50754: notify_alloc (heap.c:254) ==16784== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16784== by 0x7B44973A: HeapAlloc (heap.c:271) ==16784== by 0x7B449907: GlobalAlloc (heap.c:365) ==16784== by 0x4A15B8E: set_clipboard_data_process (clipboard.c:118) ==16784== by 0x4A25916: func_clipboard (clipboard.c:2413) ==16784== by 0x4B19E50: run_test (test.h:589) ==16784== by 0x4B1A27C: main (test.h:671) ==16784== { 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 } ==16790== 8 bytes in 1 blocks are possibly lost in loss record 47 of 578 ==16790== at 0x7BC50754: notify_alloc (heap.c:254) ==16790== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16790== by 0x7B44973A: HeapAlloc (heap.c:271) ==16790== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16790== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16790== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16790== by 0x4B24E50: run_test (test.h:589) ==16790== by 0x4B2527C: main (test.h:671) ==16790== { 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 } ==16790== 9 bytes in 1 blocks are definitely lost in loss record 49 of 578 ==16790== at 0x7BC50754: notify_alloc (heap.c:254) ==16790== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16790== by 0x7B44973A: HeapAlloc (heap.c:271) ==16790== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16790== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16790== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16790== by 0x4B24E50: run_test (test.h:589) ==16790== by 0x4B2527C: main (test.h:671) ==16790== { 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 } ==16790== 100 bytes in 1 blocks are definitely lost in loss record 372 of 578 ==16790== at 0x7BC50754: notify_alloc (heap.c:254) ==16790== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16790== by 0x7B44973A: HeapAlloc (heap.c:271) ==16790== by 0x7B449907: GlobalAlloc (heap.c:365) ==16790== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16790== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16790== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16790== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16790== by 0x7BC9970A: start_thread (thread.c:453) ==16790== by 0x4243260: start_thread (pthread_create.c:333) ==16790== by 0x433F31D: clone (clone.S:114) ==16790== { 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 ==16793== 8 bytes in 1 blocks are possibly lost in loss record 47 of 579 ==16793== at 0x7BC50754: notify_alloc (heap.c:254) ==16793== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16793== by 0x7B44973A: HeapAlloc (heap.c:271) ==16793== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16793== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16793== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16793== by 0x4B24E50: run_test (test.h:589) ==16793== by 0x4B2527C: main (test.h:671) ==16793== { 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 } ==16793== 9 bytes in 1 blocks are definitely lost in loss record 49 of 579 ==16793== at 0x7BC50754: notify_alloc (heap.c:254) ==16793== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16793== by 0x7B44973A: HeapAlloc (heap.c:271) ==16793== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16793== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16793== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16793== by 0x4B24E50: run_test (test.h:589) ==16793== by 0x4B2527C: main (test.h:671) ==16793== { 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 } ==16793== 100 bytes in 1 blocks are definitely lost in loss record 372 of 579 ==16793== at 0x7BC50754: notify_alloc (heap.c:254) ==16793== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16793== by 0x7B44973A: HeapAlloc (heap.c:271) ==16793== by 0x7B449907: GlobalAlloc (heap.c:365) ==16793== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16793== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16793== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16793== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16793== by 0x7BC9970A: start_thread (thread.c:453) ==16793== by 0x4243260: start_thread (pthread_create.c:333) ==16793== by 0x433F31D: clone (clone.S:114) ==16793== { 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 ==16796== 8 bytes in 1 blocks are possibly lost in loss record 47 of 567 ==16796== at 0x7BC50754: notify_alloc (heap.c:254) ==16796== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16796== by 0x7B44973A: HeapAlloc (heap.c:271) ==16796== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16796== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16796== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16796== by 0x4B24E50: run_test (test.h:589) ==16796== by 0x4B2527C: main (test.h:671) ==16796== { 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 } ==16796== 9 bytes in 1 blocks are definitely lost in loss record 49 of 567 ==16796== at 0x7BC50754: notify_alloc (heap.c:254) ==16796== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16796== by 0x7B44973A: HeapAlloc (heap.c:271) ==16796== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16796== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16796== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16796== by 0x4B24E50: run_test (test.h:589) ==16796== by 0x4B2527C: main (test.h:671) ==16796== { 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 } ==16796== 100 bytes in 1 blocks are definitely lost in loss record 364 of 567 ==16796== at 0x7BC50754: notify_alloc (heap.c:254) ==16796== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16796== by 0x7B44973A: HeapAlloc (heap.c:271) ==16796== by 0x7B449907: GlobalAlloc (heap.c:365) ==16796== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16796== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16796== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16796== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16796== by 0x7BC9970A: start_thread (thread.c:453) ==16796== by 0x4243260: start_thread (pthread_create.c:333) ==16796== by 0x433F31D: clone (clone.S:114) ==16796== { 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 ==16803== 8 bytes in 1 blocks are possibly lost in loss record 47 of 568 ==16803== at 0x7BC50754: notify_alloc (heap.c:254) ==16803== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16803== by 0x7B44973A: HeapAlloc (heap.c:271) ==16803== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16803== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16803== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16803== by 0x4B24E50: run_test (test.h:589) ==16803== by 0x4B2527C: main (test.h:671) ==16803== { 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 } ==16803== 9 bytes in 1 blocks are definitely lost in loss record 49 of 568 ==16803== at 0x7BC50754: notify_alloc (heap.c:254) ==16803== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16803== by 0x7B44973A: HeapAlloc (heap.c:271) ==16803== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16803== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16803== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16803== by 0x4B24E50: run_test (test.h:589) ==16803== by 0x4B2527C: main (test.h:671) ==16803== { 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 } ==16803== 100 bytes in 1 blocks are definitely lost in loss record 364 of 568 ==16803== at 0x7BC50754: notify_alloc (heap.c:254) ==16803== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16803== by 0x7B44973A: HeapAlloc (heap.c:271) ==16803== by 0x7B449907: GlobalAlloc (heap.c:365) ==16803== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16803== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16803== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16803== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16803== by 0x7BC9970A: start_thread (thread.c:453) ==16803== by 0x4243260: start_thread (pthread_create.c:333) ==16803== by 0x433F31D: clone (clone.S:114) ==16803== { 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 ==16772== Thread 2: ==16772== Syscall param writev(vector[...]) points to uninitialised byte(s) ==16772== at 0x433747F: ??? (syscall-template.S:84) ==16772== by 0x7BC87C3B: send_request (server.c:228) ==16772== by 0x7BC87DEE: wine_server_call (server.c:309) ==16772== by 0x4CFD5E2: SetClipboardData (clipboard.c:904) ==16772== by 0x4A28949: clipboard_thread (clipboard.c:1318) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x48e1ca0 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== Uninitialised value was created by a client request ==16772== at 0x7BC50523: mark_block_uninitialized (heap.c:208) ==16772== by 0x7BC506AF: initialize_block (heap.c:239) ==16772== by 0x7BC54BF5: RtlAllocateHeap (heap.c:1717) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4A2893B: clipboard_thread (clipboard.c:1318) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== { Memcheck:Param writev(vector[...]) obj:/lib32/libc-2.23.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 } ==16809== Thread 1 user32_test.exe.so: ==16809== 8 bytes in 1 blocks are possibly lost in loss record 60 of 693 ==16809== at 0x7BC50754: notify_alloc (heap.c:254) ==16809== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16809== by 0x7B44973A: HeapAlloc (heap.c:271) ==16809== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16809== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16809== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16809== by 0x4B24E50: run_test (test.h:589) ==16809== by 0x4B2527C: main (test.h:671) ==16809== { 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 } ==16809== 9 bytes in 1 blocks are definitely lost in loss record 62 of 693 ==16809== at 0x7BC50754: notify_alloc (heap.c:254) ==16809== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16809== by 0x7B44973A: HeapAlloc (heap.c:271) ==16809== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16809== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16809== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16809== by 0x4B24E50: run_test (test.h:589) ==16809== by 0x4B2527C: main (test.h:671) ==16809== { 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 } ==16809== 100 bytes in 1 blocks are definitely lost in loss record 429 of 693 ==16809== at 0x7BC50754: notify_alloc (heap.c:254) ==16809== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16809== by 0x7B44973A: HeapAlloc (heap.c:271) ==16809== by 0x7B449907: GlobalAlloc (heap.c:365) ==16809== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16809== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16809== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16809== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16809== by 0x7BC9970A: start_thread (thread.c:453) ==16809== by 0x4243260: start_thread (pthread_create.c:333) ==16809== by 0x433F31D: clone (clone.S:114) ==16809== { 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 } ==16809== 100 bytes in 1 blocks are definitely lost in loss record 430 of 693 ==16809== at 0x7BC50754: notify_alloc (heap.c:254) ==16809== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16809== by 0x7B44973A: HeapAlloc (heap.c:271) ==16809== by 0x7B449907: GlobalAlloc (heap.c:365) ==16809== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16809== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16809== by 0x4B24E50: run_test (test.h:589) ==16809== by 0x4B2527C: main (test.h:671) ==16809== { 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 ==16812== Thread 1 user32_test.exe.so: ==16812== 8 bytes in 1 blocks are possibly lost in loss record 60 of 693 ==16812== at 0x7BC50754: notify_alloc (heap.c:254) ==16812== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16812== by 0x7B44973A: HeapAlloc (heap.c:271) ==16812== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16812== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16812== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16812== by 0x4B24E50: run_test (test.h:589) ==16812== by 0x4B2527C: main (test.h:671) ==16812== { 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 } ==16812== 9 bytes in 1 blocks are definitely lost in loss record 62 of 693 ==16812== at 0x7BC50754: notify_alloc (heap.c:254) ==16812== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16812== by 0x7B44973A: HeapAlloc (heap.c:271) ==16812== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16812== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16812== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16812== by 0x4B24E50: run_test (test.h:589) ==16812== by 0x4B2527C: main (test.h:671) ==16812== { 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 } ==16812== 100 bytes in 1 blocks are definitely lost in loss record 429 of 693 ==16812== at 0x7BC50754: notify_alloc (heap.c:254) ==16812== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16812== by 0x7B44973A: HeapAlloc (heap.c:271) ==16812== by 0x7B449907: GlobalAlloc (heap.c:365) ==16812== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16812== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16812== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16812== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16812== by 0x7BC9970A: start_thread (thread.c:453) ==16812== by 0x4243260: start_thread (pthread_create.c:333) ==16812== by 0x433F31D: clone (clone.S:114) ==16812== { 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 } ==16812== 100 bytes in 1 blocks are definitely lost in loss record 430 of 693 ==16812== at 0x7BC50754: notify_alloc (heap.c:254) ==16812== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16812== by 0x7B44973A: HeapAlloc (heap.c:271) ==16812== by 0x7B449907: GlobalAlloc (heap.c:365) ==16812== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16812== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16812== by 0x4B24E50: run_test (test.h:589) ==16812== by 0x4B2527C: main (test.h:671) ==16812== { 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 ==16816== Thread 1 user32_test.exe.so: ==16816== 8 bytes in 1 blocks are possibly lost in loss record 60 of 692 ==16816== at 0x7BC50754: notify_alloc (heap.c:254) ==16816== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16816== by 0x7B44973A: HeapAlloc (heap.c:271) ==16816== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16816== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16816== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16816== by 0x4B24E50: run_test (test.h:589) ==16816== by 0x4B2527C: main (test.h:671) ==16816== { 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 } ==16816== 9 bytes in 1 blocks are definitely lost in loss record 62 of 692 ==16816== at 0x7BC50754: notify_alloc (heap.c:254) ==16816== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16816== by 0x7B44973A: HeapAlloc (heap.c:271) ==16816== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16816== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16816== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16816== by 0x4B24E50: run_test (test.h:589) ==16816== by 0x4B2527C: main (test.h:671) ==16816== { 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 } ==16816== 100 bytes in 1 blocks are definitely lost in loss record 428 of 692 ==16816== at 0x7BC50754: notify_alloc (heap.c:254) ==16816== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16816== by 0x7B44973A: HeapAlloc (heap.c:271) ==16816== by 0x7B449907: GlobalAlloc (heap.c:365) ==16816== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16816== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16816== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16816== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16816== by 0x7BC9970A: start_thread (thread.c:453) ==16816== by 0x4243260: start_thread (pthread_create.c:333) ==16816== by 0x433F31D: clone (clone.S:114) ==16816== { 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 } ==16816== 100 bytes in 1 blocks are definitely lost in loss record 429 of 692 ==16816== at 0x7BC50754: notify_alloc (heap.c:254) ==16816== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16816== by 0x7B44973A: HeapAlloc (heap.c:271) ==16816== by 0x7B449907: GlobalAlloc (heap.c:365) ==16816== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16816== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16816== by 0x4B24E50: run_test (test.h:589) ==16816== by 0x4B2527C: main (test.h:671) ==16816== { 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 ==16818== Thread 1 user32_test.exe.so: ==16818== 8 bytes in 1 blocks are possibly lost in loss record 60 of 692 ==16818== at 0x7BC50754: notify_alloc (heap.c:254) ==16818== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16818== by 0x7B44973A: HeapAlloc (heap.c:271) ==16818== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16818== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16818== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16818== by 0x4B24E50: run_test (test.h:589) ==16818== by 0x4B2527C: main (test.h:671) ==16818== { 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 } ==16818== 9 bytes in 1 blocks are definitely lost in loss record 62 of 692 ==16818== at 0x7BC50754: notify_alloc (heap.c:254) ==16818== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16818== by 0x7B44973A: HeapAlloc (heap.c:271) ==16818== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16818== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16818== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16818== by 0x4B24E50: run_test (test.h:589) ==16818== by 0x4B2527C: main (test.h:671) ==16818== { 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 } ==16818== 100 bytes in 1 blocks are definitely lost in loss record 428 of 692 ==16818== at 0x7BC50754: notify_alloc (heap.c:254) ==16818== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16818== by 0x7B44973A: HeapAlloc (heap.c:271) ==16818== by 0x7B449907: GlobalAlloc (heap.c:365) ==16818== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16818== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16818== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16818== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16818== by 0x7BC9970A: start_thread (thread.c:453) ==16818== by 0x4243260: start_thread (pthread_create.c:333) ==16818== by 0x433F31D: clone (clone.S:114) ==16818== { 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 } ==16818== 100 bytes in 1 blocks are definitely lost in loss record 429 of 692 ==16818== at 0x7BC50754: notify_alloc (heap.c:254) ==16818== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16818== by 0x7B44973A: HeapAlloc (heap.c:271) ==16818== by 0x7B449907: GlobalAlloc (heap.c:365) ==16818== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16818== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16818== by 0x4B24E50: run_test (test.h:589) ==16818== by 0x4B2527C: main (test.h:671) ==16818== { 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 ==16772== Thread 1 user32_test.exe.so: ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B451: test_handles (clipboard.c:1735) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d8d78 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B8AF: test_handles (clipboard.c:1766) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48da660 is 0 bytes inside a block of size 10 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4FCDF41: load_font_list_from_cache (freetype.c:1781) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCC2E7: strdupW (freetype.c:1098) ==16772== by 0x4FCDEAC: load_font_list_from_cache (freetype.c:1773) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B8EC: test_handles (clipboard.c:1767) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d9888 is 16 bytes after a recently re-allocated block of size 24 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCC2E7: strdupW (freetype.c:1098) ==16772== by 0x4FCD794: load_face (freetype.c:1650) ==16772== by 0x4FCDF06: load_font_list_from_cache (freetype.c:1778) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B929: test_handles (clipboard.c:1768) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d9428 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B966: test_handles (clipboard.c:1769) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d9100 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B9A3: test_handles (clipboard.c:1770) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d8658 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C561: test_handles (clipboard.c:1860) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48da660 is 0 bytes inside a block of size 10 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4FCDF41: load_font_list_from_cache (freetype.c:1781) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCC2E7: strdupW (freetype.c:1098) ==16772== by 0x4FCDEAC: load_font_list_from_cache (freetype.c:1773) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C5D2: test_handles (clipboard.c:1861) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d9888 is 16 bytes after a recently re-allocated block of size 24 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCC2E7: strdupW (freetype.c:1098) ==16772== by 0x4FCD794: load_face (freetype.c:1650) ==16772== by 0x4FCDF06: load_font_list_from_cache (freetype.c:1778) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C643: test_handles (clipboard.c:1862) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d9428 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C6B4: test_handles (clipboard.c:1863) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d9100 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C725: test_handles (clipboard.c:1864) ==16772== by 0x4A2DF9A: test_data_handles (clipboard.c:2052) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d8658 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B451: test_handles (clipboard.c:1735) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x49129c8 is 0 bytes inside a block of size 80 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4FEF360: MFDRV_DeleteDC (init.c:300) ==16772== by 0x4F6B111: free_dc_ptr (dc.c:186) ==16772== by 0x4FEF8C5: CloseMetaFile (init.c:464) ==16772== by 0x4FECE50: GetWinMetaFileBits (metafile.c:1277) ==16772== by 0x4CFC419: render_synthesized_metafile (clipboard.c:542) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A240BA: test_synthesized (clipboard.c:664) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FEF218: MFDRV_AllocMetaFile (init.c:259) ==16772== by 0x4FEF40F: CreateMetaFileW (init.c:328) ==16772== by 0x4FECDCB: GetWinMetaFileBits (metafile.c:1269) ==16772== by 0x4CFC419: render_synthesized_metafile (clipboard.c:542) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A240BA: test_synthesized (clipboard.c:664) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B8AF: test_handles (clipboard.c:1766) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490f8e0 is 64 bytes inside a block of size 80 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4FEF360: MFDRV_DeleteDC (init.c:300) ==16772== by 0x4F6B111: free_dc_ptr (dc.c:186) ==16772== by 0x4FEF8C5: CloseMetaFile (init.c:464) ==16772== by 0x4FECE50: GetWinMetaFileBits (metafile.c:1277) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A240BA: test_synthesized (clipboard.c:664) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FEF218: MFDRV_AllocMetaFile (init.c:259) ==16772== by 0x4FEF40F: CreateMetaFileW (init.c:328) ==16772== by 0x4FECDCB: GetWinMetaFileBits (metafile.c:1269) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A240BA: test_synthesized (clipboard.c:664) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B8EC: test_handles (clipboard.c:1767) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d76d8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B929: test_handles (clipboard.c:1768) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490dca8 is 0 bytes inside a block of size 20 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==16772== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==16772== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==16772== by 0x4A24159: test_synthesized (clipboard.c:670) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4CFB9E7: cache_data (clipboard.c:291) ==16772== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==16772== by 0x4A23DC6: test_synthesized (clipboard.c:641) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B966: test_handles (clipboard.c:1769) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490d930 is 0 bytes inside a block of size 5 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A79E: GlobalFree (heap.c:752) ==16772== by 0x4CFBB20: free_cached_data (clipboard.c:329) ==16772== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==16772== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==16772== by 0x4A24159: test_synthesized (clipboard.c:670) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4CFBE44: render_synthesized_textA (clipboard.c:423) ==16772== by 0x4CFC67C: render_synthesized_format (clipboard.c:593) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A23FBE: test_synthesized (clipboard.c:656) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B9A3: test_handles (clipboard.c:1770) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490c838 is 192 bytes inside a block of size 512 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4D8CC8A: EnumWindows (win.c:3351) ==16772== by 0x55B05E5: has_owned_popups (window.c:195) ==16772== by 0x55B0777: is_window_managed (window.c:239) ==16772== by 0x55B60A0: X11DRV_WindowPosChanging (window.c:2217) ==16772== by 0x4D9454B: set_window_pos (winpos.c:2070) ==16772== by 0x4D88499: WIN_CreateWindowEx (win.c:1599) ==16772== by 0x4D88DB7: CreateWindowExW (win.c:1777) ==16772== by 0x554A697: __wine_register_window (imm.c:1666) ==16772== by 0x4D8860F: WIN_CreateWindowEx (win.c:1617) ==16772== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==16772== by 0x4A238F2: test_synthesized (clipboard.c:605) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4D84043: list_window_children (win.c:319) ==16772== by 0x4D8CBA9: WIN_ListChildren (win.c:3322) ==16772== by 0x4D8CBE8: EnumWindows (win.c:3341) ==16772== by 0x55B05E5: has_owned_popups (window.c:195) ==16772== by 0x55B0777: is_window_managed (window.c:239) ==16772== by 0x55B60A0: X11DRV_WindowPosChanging (window.c:2217) ==16772== by 0x4D9454B: set_window_pos (winpos.c:2070) ==16772== by 0x4D88499: WIN_CreateWindowEx (win.c:1599) ==16772== by 0x4D88DB7: CreateWindowExW (win.c:1777) ==16772== by 0x554A697: __wine_register_window (imm.c:1666) ==16772== by 0x4D8860F: WIN_CreateWindowEx (win.c:1617) ==16772== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==16772== by 0x4A238F2: test_synthesized (clipboard.c:605) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C561: test_handles (clipboard.c:1860) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490f8e0 is 64 bytes inside a block of size 80 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4FEF360: MFDRV_DeleteDC (init.c:300) ==16772== by 0x4F6B111: free_dc_ptr (dc.c:186) ==16772== by 0x4FEF8C5: CloseMetaFile (init.c:464) ==16772== by 0x4FECE50: GetWinMetaFileBits (metafile.c:1277) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A240BA: test_synthesized (clipboard.c:664) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FEF218: MFDRV_AllocMetaFile (init.c:259) ==16772== by 0x4FEF40F: CreateMetaFileW (init.c:328) ==16772== by 0x4FECDCB: GetWinMetaFileBits (metafile.c:1269) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A240BA: test_synthesized (clipboard.c:664) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C5D2: test_handles (clipboard.c:1861) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48d76d8 is 16 bytes after a recently re-allocated block of size 32 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FCD4CB: create_family (freetype.c:1584) ==16772== by 0x4FCDDE1: load_font_list_from_cache (freetype.c:1758) ==16772== by 0x4FD67DC: WineEngInit (freetype.c:4397) ==16772== by 0x4FE5544: DllMain (gdiobj.c:658) ==16772== by 0x5003CD5: __wine_spec_dll_entry (dll_entry.c:40) ==16772== by 0x7BC56DC9: ??? (loader.c:143) ==16772== by 0x7BC596FB: MODULE_InitDLL (loader.c:1114) ==16772== by 0x7BC59BD1: process_attach (loader.c:1215) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC59B1C: process_attach (loader.c:1203) ==16772== by 0x7BC5EDB9: attach_process_dlls (loader.c:2976) ==16772== by 0x404019C: ??? (port.c:78) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C643: test_handles (clipboard.c:1862) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490dca8 is 0 bytes inside a block of size 20 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==16772== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==16772== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==16772== by 0x4A24159: test_synthesized (clipboard.c:670) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4CFB9E7: cache_data (clipboard.c:291) ==16772== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==16772== by 0x4A23DC6: test_synthesized (clipboard.c:641) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C6B4: test_handles (clipboard.c:1863) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490d930 is 0 bytes inside a block of size 5 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A79E: GlobalFree (heap.c:752) ==16772== by 0x4CFBB20: free_cached_data (clipboard.c:329) ==16772== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==16772== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==16772== by 0x4A24159: test_synthesized (clipboard.c:670) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4CFBE44: render_synthesized_textA (clipboard.c:423) ==16772== by 0x4CFC67C: render_synthesized_format (clipboard.c:593) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A23FBE: test_synthesized (clipboard.c:656) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C725: test_handles (clipboard.c:1864) ==16772== by 0x4A2DFAB: test_data_handles (clipboard.c:2053) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490c838 is 192 bytes inside a block of size 512 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4D8CC8A: EnumWindows (win.c:3351) ==16772== by 0x55B05E5: has_owned_popups (window.c:195) ==16772== by 0x55B0777: is_window_managed (window.c:239) ==16772== by 0x55B60A0: X11DRV_WindowPosChanging (window.c:2217) ==16772== by 0x4D9454B: set_window_pos (winpos.c:2070) ==16772== by 0x4D88499: WIN_CreateWindowEx (win.c:1599) ==16772== by 0x4D88DB7: CreateWindowExW (win.c:1777) ==16772== by 0x554A697: __wine_register_window (imm.c:1666) ==16772== by 0x4D8860F: WIN_CreateWindowEx (win.c:1617) ==16772== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==16772== by 0x4A238F2: test_synthesized (clipboard.c:605) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4D84043: list_window_children (win.c:319) ==16772== by 0x4D8CBA9: WIN_ListChildren (win.c:3322) ==16772== by 0x4D8CBE8: EnumWindows (win.c:3341) ==16772== by 0x55B05E5: has_owned_popups (window.c:195) ==16772== by 0x55B0777: is_window_managed (window.c:239) ==16772== by 0x55B60A0: X11DRV_WindowPosChanging (window.c:2217) ==16772== by 0x4D9454B: set_window_pos (winpos.c:2070) ==16772== by 0x4D88499: WIN_CreateWindowEx (win.c:1599) ==16772== by 0x4D88DB7: CreateWindowExW (win.c:1777) ==16772== by 0x554A697: __wine_register_window (imm.c:1666) ==16772== by 0x4D8860F: WIN_CreateWindowEx (win.c:1617) ==16772== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==16772== by 0x4A238F2: test_synthesized (clipboard.c:605) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B451: test_handles (clipboard.c:1735) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490d818 is 19 bytes after a recently re-allocated block of size 13 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A234FF: create_textA (clipboard.c:485) ==16772== by 0x4A2A538: test_handles (clipboard.c:1617) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C561: test_handles (clipboard.c:1860) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x4916218 is 0 bytes inside a block of size 1 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A79E: GlobalFree (heap.c:752) ==16772== by 0x4CFDF04: GetClipboardData (clipboard.c:1072) ==16772== by 0x4A254E4: test_synthesized (clipboard.c:840) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16772== by 0x4A254E4: test_synthesized (clipboard.c:840) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C5D2: test_handles (clipboard.c:1861) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x4916250 is 12 bytes after a block of size 20 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4CFBB50: free_cached_data (clipboard.c:333) ==16772== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==16772== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==16772== by 0x4A247A9: test_synthesized (clipboard.c:716) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4CFB9E7: cache_data (clipboard.c:291) ==16772== by 0x4CFDE5C: GetClipboardData (clipboard.c:1066) ==16772== by 0x4A25365: test_synthesized (clipboard.c:827) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C643: test_handles (clipboard.c:1862) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490d7a8 is 168 bytes inside a block of size 348 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A79E: GlobalFree (heap.c:752) ==16772== by 0x4CFD6E6: SetClipboardData (clipboard.c:926) ==16772== by 0x4A23A35: test_synthesized (clipboard.c:617) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4CFB566: marshal_data (clipboard.c:159) ==16772== by 0x4CFD4B6: SetClipboardData (clipboard.c:890) ==16772== by 0x4A23A35: test_synthesized (clipboard.c:617) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C6B4: test_handles (clipboard.c:1863) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x490d7e0 is 224 bytes inside a block of size 348 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A79E: GlobalFree (heap.c:752) ==16772== by 0x4CFD6E6: SetClipboardData (clipboard.c:926) ==16772== by 0x4A23A35: test_synthesized (clipboard.c:617) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4CFB566: marshal_data (clipboard.c:159) ==16772== by 0x4CFD4B6: SetClipboardData (clipboard.c:890) ==16772== by 0x4A23A35: test_synthesized (clipboard.c:617) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C725: test_handles (clipboard.c:1864) ==16772== by 0x4A2DFB9: test_data_handles (clipboard.c:2054) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x4915e08 is 16 bytes before a block of size 13 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A837: GlobalFree (heap.c:772) ==16772== by 0x4CFBB20: free_cached_data (clipboard.c:329) ==16772== by 0x4CFBBBB: invalidate_memory_formats (clipboard.c:354) ==16772== by 0x4CFCADC: OpenClipboard (clipboard.c:706) ==16772== by 0x4A24AB8: test_synthesized (clipboard.c:757) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A234FF: create_textA (clipboard.c:485) ==16772== by 0x4A24824: test_synthesized (clipboard.c:723) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_handles fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16772== Thread 2: ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2B451: test_handles (clipboard.c:1735) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x4920a50 is 19 bytes after a recently re-allocated block of size 13 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A234FF: create_textA (clipboard.c:485) ==16772== by 0x4A2A538: test_handles (clipboard.c:1617) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== { 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 } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C561: test_handles (clipboard.c:1860) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x4924188 is 64 bytes inside a block of size 80 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4FEF360: MFDRV_DeleteDC (init.c:300) ==16772== by 0x4F6B111: free_dc_ptr (dc.c:186) ==16772== by 0x4FEF8C5: CloseMetaFile (init.c:464) ==16772== by 0x4FECE50: GetWinMetaFileBits (metafile.c:1277) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A24BE8: test_synthesized (clipboard.c:766) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4FEF218: MFDRV_AllocMetaFile (init.c:259) ==16772== by 0x4FEF40F: CreateMetaFileW (init.c:328) ==16772== by 0x4FECDCB: GetWinMetaFileBits (metafile.c:1269) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A24BE8: test_synthesized (clipboard.c:766) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { 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 } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C5D2: test_handles (clipboard.c:1861) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x48d14f8 is 0 bytes inside a block of size 32 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B4697B5: set_additional_environment (process.c:559) ==16772== by 0x7B46B165: __wine_kernel_init (process.c:1208) ==16772== by 0x7BC5FB3B: __wine_process_init (loader.c:3312) ==16772== by 0x403F59A: wine_init (loader.c:956) ==16772== by 0x7C000F7F: main (main.c:254) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B46971D: set_additional_environment (process.c:553) ==16772== by 0x7B46B165: __wine_kernel_init (process.c:1208) ==16772== by 0x7BC5FB3B: __wine_process_init (loader.c:3312) ==16772== by 0x403F59A: wine_init (loader.c:956) ==16772== by 0x7C000F7F: main (main.c:254) ==16772== { 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 } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C643: test_handles (clipboard.c:1862) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x48d01f0 is 0 bytes inside a block of size 26 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7BC5A972: load_builtin_callback (loader.c:1589) ==16772== by 0x403EFEE: __wine_dll_register (loader.c:514) ==16772== by 0x7B492E8F: __wine_spec_init (init.c:35) ==16772== by 0x400EEED: call_init.part.0 (dl-init.c:58) ==16772== by 0x400F03F: call_init (dl-init.c:30) ==16772== by 0x400F03F: _dl_init (dl-init.c:120) ==16772== by 0x4013266: dl_open_worker (dl-open.c:564) ==16772== by 0x400EDD4: _dl_catch_error (dl-error.c:187) ==16772== by 0x4012928: _dl_open (dl-open.c:649) ==16772== by 0x440AC64: dlopen_doit (dlopen.c:66) ==16772== by 0x400EDD4: _dl_catch_error (dl-error.c:187) ==16772== by 0x440B310: _dlerror_run (dlerror.c:163) ==16772== by 0x440AD0D: dlopen@@GLIBC_2.1 (dlopen.c:87) ==16772== by 0x403F5DA: wine_dlopen (loader.c:1016) ==16772== by 0x403E995: dlopen_dll (loader.c:292) ==16772== by 0x403F229: wine_dll_load (loader.c:578) ==16772== by 0x7BC5BD86: load_builtin_dll (loader.c:1939) ==16772== by 0x7BC5FA88: __wine_process_init (loader.c:3297) ==16772== by 0x403F59A: wine_init (loader.c:956) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7BC5A63C: get_builtin_fullname (loader.c:1524) ==16772== by 0x7BC5A8B4: load_builtin_callback (loader.c:1581) ==16772== by 0x403EFEE: __wine_dll_register (loader.c:514) ==16772== by 0x7B492E8F: __wine_spec_init (init.c:35) ==16772== by 0x400EEED: call_init.part.0 (dl-init.c:58) ==16772== by 0x400F03F: call_init (dl-init.c:30) ==16772== by 0x400F03F: _dl_init (dl-init.c:120) ==16772== by 0x4013266: dl_open_worker (dl-open.c:564) ==16772== by 0x400EDD4: _dl_catch_error (dl-error.c:187) ==16772== by 0x4012928: _dl_open (dl-open.c:649) ==16772== by 0x440AC64: dlopen_doit (dlopen.c:66) ==16772== by 0x400EDD4: _dl_catch_error (dl-error.c:187) ==16772== by 0x440B310: _dlerror_run (dlerror.c:163) ==16772== by 0x440AD0D: dlopen@@GLIBC_2.1 (dlopen.c:87) ==16772== by 0x403F5DA: wine_dlopen (loader.c:1016) ==16772== by 0x403E995: dlopen_dll (loader.c:292) ==16772== by 0x403F229: wine_dll_load (loader.c:578) ==16772== by 0x7BC5BD86: load_builtin_dll (loader.c:1939) ==16772== by 0x7BC5FA88: __wine_process_init (loader.c:3297) ==16772== { 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 } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C6B4: test_handles (clipboard.c:1863) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x48d1ab0 is 32 bytes inside a block of size 42 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7BC3E67E: DIR_get_drives_info (directory.c:631) ==16772== by 0x7BC6AD05: find_drive_rootA (path.c:105) ==16772== by 0x7BC6D37A: wine_unix_to_nt_file_name (path.c:1063) ==16772== by 0x7B46A445: init_current_directory (process.c:912) ==16772== by 0x7B46B17C: __wine_kernel_init (process.c:1212) ==16772== by 0x7BC5FB3B: __wine_process_init (loader.c:3312) ==16772== by 0x403F59A: wine_init (loader.c:956) ==16772== by 0x7C000F7F: main (main.c:254) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7BC3E4E7: DIR_get_drives_info (directory.c:609) ==16772== by 0x7BC6AD05: find_drive_rootA (path.c:105) ==16772== by 0x7BC6D37A: wine_unix_to_nt_file_name (path.c:1063) ==16772== by 0x7B46A445: init_current_directory (process.c:912) ==16772== by 0x7B46B17C: __wine_kernel_init (process.c:1212) ==16772== by 0x7BC5FB3B: __wine_process_init (loader.c:3312) ==16772== by 0x403F59A: wine_init (loader.c:956) ==16772== by 0x7C000F7F: main (main.c:254) ==16772== { 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 } ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2C725: test_handles (clipboard.c:1864) ==16772== by 0x4A2C97B: test_handles_thread (clipboard.c:1878) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== Address 0x4924070 is 296 bytes inside a block of size 372 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x4F6B0A6: free_dc_state (dc.c:171) ==16772== by 0x4F6B1A1: free_dc_ptr (dc.c:193) ==16772== by 0x4FEF8C5: CloseMetaFile (init.c:464) ==16772== by 0x4FECE50: GetWinMetaFileBits (metafile.c:1277) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A24BE8: test_synthesized (clipboard.c:766) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x4F6AE4A: alloc_dc_ptr (dc.c:131) ==16772== by 0x4FEF120: MFDRV_AllocMetaFile (init.c:242) ==16772== by 0x4FEF40F: CreateMetaFileW (init.c:328) ==16772== by 0x4FECDCB: GetWinMetaFileBits (metafile.c:1269) ==16772== by 0x4CFC399: render_synthesized_metafile (clipboard.c:538) ==16772== by 0x4CFC6D7: render_synthesized_format (clipboard.c:606) ==16772== by 0x4CFE068: GetClipboardData (clipboard.c:1090) ==16772== by 0x4A24BE8: test_synthesized (clipboard.c:766) ==16772== by 0x4A30A75: func_clipboard (clipboard.c:2444) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { 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 } ==16825== Thread 1 user32_test.exe.so: ==16825== 8 bytes in 1 blocks are possibly lost in loss record 62 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16825== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 8 bytes in 1 blocks are possibly lost in loss record 63 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E0B4: test_data_handles (clipboard.c:2065) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 8 bytes in 1 blocks are possibly lost in loss record 64 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E107: test_data_handles (clipboard.c:2067) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 8 bytes in 1 blocks are possibly lost in loss record 65 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A2361F: create_metafile (clipboard.c:511) ==16825== by 0x4A2E275: test_data_handles (clipboard.c:2075) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 8 bytes in 1 blocks are possibly lost in loss record 66 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A2361F: create_metafile (clipboard.c:511) ==16825== by 0x4A2E2F4: test_data_handles (clipboard.c:2078) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 8 bytes in 1 blocks are possibly lost in loss record 67 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E485: test_data_handles (clipboard.c:2087) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 8 bytes in 1 blocks are possibly lost in loss record 68 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E4DB: test_data_handles (clipboard.c:2089) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 9 bytes in 1 blocks are definitely lost in loss record 70 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16825== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 13 bytes in 1 blocks are definitely lost in loss record 108 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E0B4: test_data_handles (clipboard.c:2065) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 13 bytes in 1 blocks are definitely lost in loss record 109 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E107: test_data_handles (clipboard.c:2067) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 13 bytes in 1 blocks are definitely lost in loss record 110 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E485: test_data_handles (clipboard.c:2087) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 13 bytes in 1 blocks are definitely lost in loss record 111 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A234FF: create_textA (clipboard.c:485) ==16825== by 0x4A2E4DB: test_data_handles (clipboard.c:2089) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 24 bytes in 1 blocks are definitely lost in loss record 222 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A2361F: create_metafile (clipboard.c:511) ==16825== by 0x4A2E275: test_data_handles (clipboard.c:2075) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 24 bytes in 1 blocks are definitely lost in loss record 223 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16825== by 0x4A2361F: create_metafile (clipboard.c:511) ==16825== by 0x4A2E2F4: test_data_handles (clipboard.c:2078) ==16825== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 } ==16825== 100 bytes in 1 blocks are definitely lost in loss record 460 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B449907: GlobalAlloc (heap.c:365) ==16825== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16825== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16825== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16825== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16825== by 0x7BC9970A: start_thread (thread.c:453) ==16825== by 0x4243260: start_thread (pthread_create.c:333) ==16825== by 0x433F31D: clone (clone.S:114) ==16825== { 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 } ==16825== 100 bytes in 1 blocks are definitely lost in loss record 461 of 729 ==16825== at 0x7BC50754: notify_alloc (heap.c:254) ==16825== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16825== by 0x7B44973A: HeapAlloc (heap.c:271) ==16825== by 0x7B449907: GlobalAlloc (heap.c:365) ==16825== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16825== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16825== by 0x4B24E50: run_test (test.h:589) ==16825== by 0x4B2527C: main (test.h:671) ==16825== { 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 ==16826== 8 bytes in 1 blocks are definitely lost in loss record 36 of 504 ==16826== at 0x7BC50754: notify_alloc (heap.c:254) ==16826== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16826== by 0x7B44973A: HeapAlloc (heap.c:271) ==16826== by 0x7B449907: GlobalAlloc (heap.c:365) ==16826== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16826== by 0x4A22684: test_handles_process (clipboard.c:1975) ==16826== by 0x4A2599E: func_clipboard (clipboard.c:2423) ==16826== by 0x4B19E50: run_test (test.h:589) ==16826== by 0x4B1A27C: main (test.h:671) ==16826== { 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 } ==16826== 58 bytes in 1 blocks are possibly lost in loss record 256 of 504 ==16826== at 0x7BC50754: notify_alloc (heap.c:254) ==16826== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16826== by 0x7B44973A: HeapAlloc (heap.c:271) ==16826== by 0x7B449907: GlobalAlloc (heap.c:365) ==16826== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16826== by 0x4A224C0: test_handles_process (clipboard.c:1967) ==16826== by 0x4A2599E: func_clipboard (clipboard.c:2423) ==16826== by 0x4B19E50: run_test (test.h:589) ==16826== by 0x4B1A27C: main (test.h:671) ==16826== { 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 } ==16826== 348 bytes in 1 blocks are definitely lost in loss record 404 of 504 ==16826== at 0x7BC50754: notify_alloc (heap.c:254) ==16826== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16826== by 0x7B44973A: HeapAlloc (heap.c:271) ==16826== by 0x7B449907: GlobalAlloc (heap.c:365) ==16826== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16826== by 0x4A2298E: test_handles_process (clipboard.c:1991) ==16826== by 0x4A2599E: func_clipboard (clipboard.c:2423) ==16826== by 0x4B19E50: run_test (test.h:589) ==16826== by 0x4B1A27C: main (test.h:671) ==16826== { 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 } ==16826== 348 bytes in 1 blocks are definitely lost in loss record 405 of 504 ==16826== at 0x7BC50754: notify_alloc (heap.c:254) ==16826== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16826== by 0x7B44973A: HeapAlloc (heap.c:271) ==16826== by 0x7B449907: GlobalAlloc (heap.c:365) ==16826== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16826== by 0x4A22AB9: test_handles_process (clipboard.c:1998) ==16826== by 0x4A2599E: func_clipboard (clipboard.c:2423) ==16826== by 0x4B19E50: run_test (test.h:589) ==16826== by 0x4B1A27C: main (test.h:671) ==16826== { 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 } ==16828== Thread 1 user32_test.exe.so: ==16828== 8 bytes in 1 blocks are possibly lost in loss record 59 of 693 ==16828== at 0x7BC50754: notify_alloc (heap.c:254) ==16828== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16828== by 0x7B44973A: HeapAlloc (heap.c:271) ==16828== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16828== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16828== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16828== by 0x4B24E50: run_test (test.h:589) ==16828== by 0x4B2527C: main (test.h:671) ==16828== { 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 } ==16828== 8 bytes in 1 blocks are possibly lost in loss record 60 of 693 ==16828== at 0x7BC50754: notify_alloc (heap.c:254) ==16828== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16828== by 0x7B44973A: HeapAlloc (heap.c:271) ==16828== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16828== by 0x4A234FF: create_textA (clipboard.c:485) ==16828== by 0x4A2E767: test_data_handles (clipboard.c:2110) ==16828== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16828== by 0x4B24E50: run_test (test.h:589) ==16828== by 0x4B2527C: main (test.h:671) ==16828== { 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 } ==16828== 9 bytes in 1 blocks are definitely lost in loss record 62 of 693 ==16828== at 0x7BC50754: notify_alloc (heap.c:254) ==16828== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16828== by 0x7B44973A: HeapAlloc (heap.c:271) ==16828== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16828== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16828== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16828== by 0x4B24E50: run_test (test.h:589) ==16828== by 0x4B2527C: main (test.h:671) ==16828== { 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 } ==16828== 13 bytes in 1 blocks are definitely lost in loss record 99 of 693 ==16828== at 0x7BC50754: notify_alloc (heap.c:254) ==16828== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16828== by 0x7B44973A: HeapAlloc (heap.c:271) ==16828== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16828== by 0x4A234FF: create_textA (clipboard.c:485) ==16828== by 0x4A2E767: test_data_handles (clipboard.c:2110) ==16828== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16828== by 0x4B24E50: run_test (test.h:589) ==16828== by 0x4B2527C: main (test.h:671) ==16828== { 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 } ==16828== 100 bytes in 1 blocks are definitely lost in loss record 428 of 693 ==16828== at 0x7BC50754: notify_alloc (heap.c:254) ==16828== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16828== by 0x7B44973A: HeapAlloc (heap.c:271) ==16828== by 0x7B449907: GlobalAlloc (heap.c:365) ==16828== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16828== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16828== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16828== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16828== by 0x7BC9970A: start_thread (thread.c:453) ==16828== by 0x4243260: start_thread (pthread_create.c:333) ==16828== by 0x433F31D: clone (clone.S:114) ==16828== { 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 } ==16828== 100 bytes in 1 blocks are definitely lost in loss record 429 of 693 ==16828== at 0x7BC50754: notify_alloc (heap.c:254) ==16828== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16828== by 0x7B44973A: HeapAlloc (heap.c:271) ==16828== by 0x7B449907: GlobalAlloc (heap.c:365) ==16828== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16828== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16828== by 0x4B24E50: run_test (test.h:589) ==16828== by 0x4B2527C: main (test.h:671) ==16828== { 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 ==16829== 8 bytes in 1 blocks are possibly lost in loss record 9 of 241 ==16829== at 0x7BC50754: notify_alloc (heap.c:254) ==16829== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16829== by 0x7B44973A: HeapAlloc (heap.c:271) ==16829== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16829== by 0x4A22D1A: test_handles_process_open (clipboard.c:2015) ==16829== by 0x4A259DC: func_clipboard (clipboard.c:2428) ==16829== by 0x4B19E50: run_test (test.h:589) ==16829== by 0x4B1A27C: main (test.h:671) ==16829== { 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 } ==16829== 15 bytes in 1 blocks are definitely lost in loss record 20 of 241 ==16829== at 0x7BC50754: notify_alloc (heap.c:254) ==16829== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16829== by 0x7B44973A: HeapAlloc (heap.c:271) ==16829== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16829== by 0x4A22D1A: test_handles_process_open (clipboard.c:2015) ==16829== by 0x4A259DC: func_clipboard (clipboard.c:2428) ==16829== by 0x4B19E50: run_test (test.h:589) ==16829== by 0x4B1A27C: main (test.h:671) ==16829== { 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 } ==16772== Thread 1 user32_test.exe.so: ==16772== Invalid read of size 2 ==16772== at 0x7B44AB12: GlobalSize (heap.c:839) ==16772== by 0x4A2A471: is_freed (clipboard.c:1593) ==16772== by 0x4A2E99C: test_data_handles (clipboard.c:2127) ==16772== by 0x4A30A7F: func_clipboard (clipboard.c:2446) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x48ec948 is 0 bytes inside a block of size 9 free'd ==16772== at 0x7BC507C3: notify_free (heap.c:262) ==16772== by 0x7BC54D32: RtlFreeHeap (heap.c:1762) ==16772== by 0x7B44976A: HeapFree (heap.c:276) ==16772== by 0x7B44A837: GlobalFree (heap.c:772) ==16772== by 0x4CFBB20: free_cached_data (clipboard.c:329) ==16772== by 0x4CFBC16: free_cached_formats (clipboard.c:367) ==16772== by 0x4CFCD88: EmptyClipboard (clipboard.c:759) ==16772== by 0x4A2324D: test_RegisterClipboardFormatA (clipboard.c:461) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Block was alloc'd at ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A22EEB: test_RegisterClipboardFormatA (clipboard.c:439) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:GlobalSize fun:is_freed fun:test_data_handles fun:func_clipboard fun:run_test fun:main } ==16830== 8 bytes in 1 blocks are possibly lost in loss record 59 of 693 ==16830== at 0x7BC50754: notify_alloc (heap.c:254) ==16830== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16830== by 0x7B44973A: HeapAlloc (heap.c:271) ==16830== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16830== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16830== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16830== by 0x4B24E50: run_test (test.h:589) ==16830== by 0x4B2527C: main (test.h:671) ==16830== { 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 } ==16830== 9 bytes in 1 blocks are definitely lost in loss record 61 of 693 ==16830== at 0x7BC50754: notify_alloc (heap.c:254) ==16830== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16830== by 0x7B44973A: HeapAlloc (heap.c:271) ==16830== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16830== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16830== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16830== by 0x4B24E50: run_test (test.h:589) ==16830== by 0x4B2527C: main (test.h:671) ==16830== { 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 } ==16830== 100 bytes in 1 blocks are definitely lost in loss record 428 of 693 ==16830== at 0x7BC50754: notify_alloc (heap.c:254) ==16830== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16830== by 0x7B44973A: HeapAlloc (heap.c:271) ==16830== by 0x7B449907: GlobalAlloc (heap.c:365) ==16830== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16830== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16830== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16830== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16830== by 0x7BC9970A: start_thread (thread.c:453) ==16830== by 0x4243260: start_thread (pthread_create.c:333) ==16830== by 0x433F31D: clone (clone.S:114) ==16830== { 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 } ==16830== 100 bytes in 1 blocks are definitely lost in loss record 429 of 693 ==16830== at 0x7BC50754: notify_alloc (heap.c:254) ==16830== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16830== by 0x7B44973A: HeapAlloc (heap.c:271) ==16830== by 0x7B449907: GlobalAlloc (heap.c:365) ==16830== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16830== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16830== by 0x4B24E50: run_test (test.h:589) ==16830== by 0x4B2527C: main (test.h:671) ==16830== { 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 ==16836== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16836== at 0x7BC50754: notify_alloc (heap.c:254) ==16836== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16836== by 0x7B44973A: HeapAlloc (heap.c:271) ==16836== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16836== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16836== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16836== by 0x4B24E50: run_test (test.h:589) ==16836== by 0x4B2527C: main (test.h:671) ==16836== { 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 } ==16836== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16836== at 0x7BC50754: notify_alloc (heap.c:254) ==16836== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16836== by 0x7B44973A: HeapAlloc (heap.c:271) ==16836== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16836== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16836== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16836== by 0x4B24E50: run_test (test.h:589) ==16836== by 0x4B2527C: main (test.h:671) ==16836== { 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 } ==16836== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16836== at 0x7BC50754: notify_alloc (heap.c:254) ==16836== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16836== by 0x7B44973A: HeapAlloc (heap.c:271) ==16836== by 0x7B449907: GlobalAlloc (heap.c:365) ==16836== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16836== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16836== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16836== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16836== by 0x7BC9970A: start_thread (thread.c:453) ==16836== by 0x4243260: start_thread (pthread_create.c:333) ==16836== by 0x433F31D: clone (clone.S:114) ==16836== { 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 } ==16836== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16836== at 0x7BC50754: notify_alloc (heap.c:254) ==16836== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16836== by 0x7B44973A: HeapAlloc (heap.c:271) ==16836== by 0x7B449907: GlobalAlloc (heap.c:365) ==16836== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16836== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16836== by 0x4B24E50: run_test (test.h:589) ==16836== by 0x4B2527C: main (test.h:671) ==16836== { 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 ==16838== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16838== at 0x7BC50754: notify_alloc (heap.c:254) ==16838== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16838== by 0x7B44973A: HeapAlloc (heap.c:271) ==16838== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16838== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16838== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16838== by 0x4B24E50: run_test (test.h:589) ==16838== by 0x4B2527C: main (test.h:671) ==16838== { 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 } ==16838== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16838== at 0x7BC50754: notify_alloc (heap.c:254) ==16838== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16838== by 0x7B44973A: HeapAlloc (heap.c:271) ==16838== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16838== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16838== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16838== by 0x4B24E50: run_test (test.h:589) ==16838== by 0x4B2527C: main (test.h:671) ==16838== { 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 } ==16838== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16838== at 0x7BC50754: notify_alloc (heap.c:254) ==16838== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16838== by 0x7B44973A: HeapAlloc (heap.c:271) ==16838== by 0x7B449907: GlobalAlloc (heap.c:365) ==16838== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16838== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16838== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16838== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16838== by 0x7BC9970A: start_thread (thread.c:453) ==16838== by 0x4243260: start_thread (pthread_create.c:333) ==16838== by 0x433F31D: clone (clone.S:114) ==16838== { 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 } ==16838== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16838== at 0x7BC50754: notify_alloc (heap.c:254) ==16838== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16838== by 0x7B44973A: HeapAlloc (heap.c:271) ==16838== by 0x7B449907: GlobalAlloc (heap.c:365) ==16838== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16838== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16838== by 0x4B24E50: run_test (test.h:589) ==16838== by 0x4B2527C: main (test.h:671) ==16838== { 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 ==16844== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16844== at 0x7BC50754: notify_alloc (heap.c:254) ==16844== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16844== by 0x7B44973A: HeapAlloc (heap.c:271) ==16844== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16844== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16844== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16844== by 0x4B24E50: run_test (test.h:589) ==16844== by 0x4B2527C: main (test.h:671) ==16844== { 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 } ==16844== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16844== at 0x7BC50754: notify_alloc (heap.c:254) ==16844== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16844== by 0x7B44973A: HeapAlloc (heap.c:271) ==16844== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16844== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16844== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16844== by 0x4B24E50: run_test (test.h:589) ==16844== by 0x4B2527C: main (test.h:671) ==16844== { 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 } ==16844== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16844== at 0x7BC50754: notify_alloc (heap.c:254) ==16844== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16844== by 0x7B44973A: HeapAlloc (heap.c:271) ==16844== by 0x7B449907: GlobalAlloc (heap.c:365) ==16844== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16844== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16844== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16844== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16844== by 0x7BC9970A: start_thread (thread.c:453) ==16844== by 0x4243260: start_thread (pthread_create.c:333) ==16844== by 0x433F31D: clone (clone.S:114) ==16844== { 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 } ==16844== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16844== at 0x7BC50754: notify_alloc (heap.c:254) ==16844== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16844== by 0x7B44973A: HeapAlloc (heap.c:271) ==16844== by 0x7B449907: GlobalAlloc (heap.c:365) ==16844== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16844== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16844== by 0x4B24E50: run_test (test.h:589) ==16844== by 0x4B2527C: main (test.h:671) ==16844== { 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 ==16846== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16846== at 0x7BC50754: notify_alloc (heap.c:254) ==16846== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16846== by 0x7B44973A: HeapAlloc (heap.c:271) ==16846== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16846== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16846== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16846== by 0x4B24E50: run_test (test.h:589) ==16846== by 0x4B2527C: main (test.h:671) ==16846== { 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 } ==16846== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16846== at 0x7BC50754: notify_alloc (heap.c:254) ==16846== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16846== by 0x7B44973A: HeapAlloc (heap.c:271) ==16846== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16846== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16846== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16846== by 0x4B24E50: run_test (test.h:589) ==16846== by 0x4B2527C: main (test.h:671) ==16846== { 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 } ==16846== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16846== at 0x7BC50754: notify_alloc (heap.c:254) ==16846== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16846== by 0x7B44973A: HeapAlloc (heap.c:271) ==16846== by 0x7B449907: GlobalAlloc (heap.c:365) ==16846== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16846== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16846== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16846== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16846== by 0x7BC9970A: start_thread (thread.c:453) ==16846== by 0x4243260: start_thread (pthread_create.c:333) ==16846== by 0x433F31D: clone (clone.S:114) ==16846== { 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 } ==16846== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16846== at 0x7BC50754: notify_alloc (heap.c:254) ==16846== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16846== by 0x7B44973A: HeapAlloc (heap.c:271) ==16846== by 0x7B449907: GlobalAlloc (heap.c:365) ==16846== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16846== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16846== by 0x4B24E50: run_test (test.h:589) ==16846== by 0x4B2527C: main (test.h:671) ==16846== { 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 ==16865== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16865== at 0x7BC50754: notify_alloc (heap.c:254) ==16865== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16865== by 0x7B44973A: HeapAlloc (heap.c:271) ==16865== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16865== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16865== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16865== by 0x4B24E50: run_test (test.h:589) ==16865== by 0x4B2527C: main (test.h:671) ==16865== { 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 } ==16865== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16865== at 0x7BC50754: notify_alloc (heap.c:254) ==16865== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16865== by 0x7B44973A: HeapAlloc (heap.c:271) ==16865== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16865== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16865== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16865== by 0x4B24E50: run_test (test.h:589) ==16865== by 0x4B2527C: main (test.h:671) ==16865== { 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 } ==16865== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16865== at 0x7BC50754: notify_alloc (heap.c:254) ==16865== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16865== by 0x7B44973A: HeapAlloc (heap.c:271) ==16865== by 0x7B449907: GlobalAlloc (heap.c:365) ==16865== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16865== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16865== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16865== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16865== by 0x7BC9970A: start_thread (thread.c:453) ==16865== by 0x4243260: start_thread (pthread_create.c:333) ==16865== by 0x433F31D: clone (clone.S:114) ==16865== { 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 } ==16865== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16865== at 0x7BC50754: notify_alloc (heap.c:254) ==16865== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16865== by 0x7B44973A: HeapAlloc (heap.c:271) ==16865== by 0x7B449907: GlobalAlloc (heap.c:365) ==16865== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16865== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16865== by 0x4B24E50: run_test (test.h:589) ==16865== by 0x4B2527C: main (test.h:671) ==16865== { 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 ==16869== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16869== at 0x7BC50754: notify_alloc (heap.c:254) ==16869== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16869== by 0x7B44973A: HeapAlloc (heap.c:271) ==16869== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16869== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16869== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16869== by 0x4B24E50: run_test (test.h:589) ==16869== by 0x4B2527C: main (test.h:671) ==16869== { 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 } ==16869== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16869== at 0x7BC50754: notify_alloc (heap.c:254) ==16869== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16869== by 0x7B44973A: HeapAlloc (heap.c:271) ==16869== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16869== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16869== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16869== by 0x4B24E50: run_test (test.h:589) ==16869== by 0x4B2527C: main (test.h:671) ==16869== { 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 } ==16869== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16869== at 0x7BC50754: notify_alloc (heap.c:254) ==16869== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16869== by 0x7B44973A: HeapAlloc (heap.c:271) ==16869== by 0x7B449907: GlobalAlloc (heap.c:365) ==16869== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16869== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16869== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16869== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16869== by 0x7BC9970A: start_thread (thread.c:453) ==16869== by 0x4243260: start_thread (pthread_create.c:333) ==16869== by 0x433F31D: clone (clone.S:114) ==16869== { 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 } ==16869== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16869== at 0x7BC50754: notify_alloc (heap.c:254) ==16869== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16869== by 0x7B44973A: HeapAlloc (heap.c:271) ==16869== by 0x7B449907: GlobalAlloc (heap.c:365) ==16869== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16869== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16869== by 0x4B24E50: run_test (test.h:589) ==16869== by 0x4B2527C: main (test.h:671) ==16869== { 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 ==16872== 8 bytes in 1 blocks are possibly lost in loss record 59 of 682 ==16872== at 0x7BC50754: notify_alloc (heap.c:254) ==16872== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16872== by 0x7B44973A: HeapAlloc (heap.c:271) ==16872== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16872== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16872== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16872== by 0x4B24E50: run_test (test.h:589) ==16872== by 0x4B2527C: main (test.h:671) ==16872== { 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 } ==16872== 9 bytes in 1 blocks are definitely lost in loss record 61 of 682 ==16872== at 0x7BC50754: notify_alloc (heap.c:254) ==16872== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16872== by 0x7B44973A: HeapAlloc (heap.c:271) ==16872== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16872== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16872== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16872== by 0x4B24E50: run_test (test.h:589) ==16872== by 0x4B2527C: main (test.h:671) ==16872== { 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 } ==16872== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16872== at 0x7BC50754: notify_alloc (heap.c:254) ==16872== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16872== by 0x7B44973A: HeapAlloc (heap.c:271) ==16872== by 0x7B449907: GlobalAlloc (heap.c:365) ==16872== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16872== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16872== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16872== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16872== by 0x7BC9970A: start_thread (thread.c:453) ==16872== by 0x4243260: start_thread (pthread_create.c:333) ==16872== by 0x433F31D: clone (clone.S:114) ==16872== { 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 } ==16872== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16872== at 0x7BC50754: notify_alloc (heap.c:254) ==16872== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16872== by 0x7B44973A: HeapAlloc (heap.c:271) ==16872== by 0x7B449907: GlobalAlloc (heap.c:365) ==16872== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16872== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16872== by 0x4B24E50: run_test (test.h:589) ==16872== by 0x4B2527C: main (test.h:671) ==16872== { 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 ==16876== 8 bytes in 1 blocks are possibly lost in loss record 59 of 682 ==16876== at 0x7BC50754: notify_alloc (heap.c:254) ==16876== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16876== by 0x7B44973A: HeapAlloc (heap.c:271) ==16876== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16876== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16876== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16876== by 0x4B24E50: run_test (test.h:589) ==16876== by 0x4B2527C: main (test.h:671) ==16876== { 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 } ==16876== 9 bytes in 1 blocks are definitely lost in loss record 61 of 682 ==16876== at 0x7BC50754: notify_alloc (heap.c:254) ==16876== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16876== by 0x7B44973A: HeapAlloc (heap.c:271) ==16876== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16876== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16876== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16876== by 0x4B24E50: run_test (test.h:589) ==16876== by 0x4B2527C: main (test.h:671) ==16876== { 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 } ==16876== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16876== at 0x7BC50754: notify_alloc (heap.c:254) ==16876== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16876== by 0x7B44973A: HeapAlloc (heap.c:271) ==16876== by 0x7B449907: GlobalAlloc (heap.c:365) ==16876== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16876== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16876== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16876== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16876== by 0x7BC9970A: start_thread (thread.c:453) ==16876== by 0x4243260: start_thread (pthread_create.c:333) ==16876== by 0x433F31D: clone (clone.S:114) ==16876== { 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 } ==16876== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16876== at 0x7BC50754: notify_alloc (heap.c:254) ==16876== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16876== by 0x7B44973A: HeapAlloc (heap.c:271) ==16876== by 0x7B449907: GlobalAlloc (heap.c:365) ==16876== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16876== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16876== by 0x4B24E50: run_test (test.h:589) ==16876== by 0x4B2527C: main (test.h:671) ==16876== { 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 ==16772== Invalid write of size 2 ==16772== at 0x4CFB6E5: marshal_data (clipboard.c:194) ==16772== by 0x4CFD4B6: SetClipboardData (clipboard.c:890) ==16772== by 0x4A2FF9B: test_string_data (clipboard.c:2329) ==16772== by 0x4A30A89: func_clipboard (clipboard.c:2448) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x4923180 is 0 bytes inside a recently re-allocated block of size 1 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4A2FDEA: test_string_data (clipboard.c:2316) ==16772== by 0x4A30A89: func_clipboard (clipboard.c:2448) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:marshal_data fun:SetClipboardData fun:test_string_data fun:func_clipboard fun:run_test fun:main } ==16772== Invalid read of size 2 ==16772== at 0x4B24976: wine_dbgstr_wn (test.h:489) ==16772== by 0x4A3004F: test_string_data (clipboard.c:2332) ==16772== by 0x4A30A89: func_clipboard (clipboard.c:2448) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== Address 0x4923180 is 0 bytes inside a recently re-allocated block of size 1 alloc'd ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4A2FDEA: test_string_data (clipboard.c:2316) ==16772== by 0x4A30A89: func_clipboard (clipboard.c:2448) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data fun:func_clipboard fun:run_test fun:main } ==16878== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16878== at 0x7BC50754: notify_alloc (heap.c:254) ==16878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16878== by 0x7B44973A: HeapAlloc (heap.c:271) ==16878== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16878== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16878== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16878== by 0x4B24E50: run_test (test.h:589) ==16878== by 0x4B2527C: main (test.h:671) ==16878== { 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 } ==16878== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16878== at 0x7BC50754: notify_alloc (heap.c:254) ==16878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16878== by 0x7B44973A: HeapAlloc (heap.c:271) ==16878== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16878== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16878== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16878== by 0x4B24E50: run_test (test.h:589) ==16878== by 0x4B2527C: main (test.h:671) ==16878== { 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 } ==16878== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16878== at 0x7BC50754: notify_alloc (heap.c:254) ==16878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16878== by 0x7B44973A: HeapAlloc (heap.c:271) ==16878== by 0x7B449907: GlobalAlloc (heap.c:365) ==16878== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16878== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16878== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16878== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16878== by 0x7BC9970A: start_thread (thread.c:453) ==16878== by 0x4243260: start_thread (pthread_create.c:333) ==16878== by 0x433F31D: clone (clone.S:114) ==16878== { 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 } ==16878== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16878== at 0x7BC50754: notify_alloc (heap.c:254) ==16878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16878== by 0x7B44973A: HeapAlloc (heap.c:271) ==16878== by 0x7B449907: GlobalAlloc (heap.c:365) ==16878== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16878== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16878== by 0x4B24E50: run_test (test.h:589) ==16878== by 0x4B2527C: main (test.h:671) ==16878== { 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 ==16879== Invalid read of size 2 ==16879== at 0x4B19976: wine_dbgstr_wn (test.h:489) ==16879== by 0x4A255C5: test_string_data_process (clipboard.c:2376) ==16879== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16879== by 0x4B19E50: run_test (test.h:589) ==16879== by 0x4B1A27C: main (test.h:671) ==16879== Address 0x488d390 is 0 bytes inside a block of size 1 alloc'd ==16879== at 0x7BC50754: notify_alloc (heap.c:254) ==16879== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16879== by 0x7B44973A: HeapAlloc (heap.c:271) ==16879== by 0x7B449907: GlobalAlloc (heap.c:365) ==16879== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16879== by 0x4A2546E: test_string_data_process (clipboard.c:2370) ==16879== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16879== by 0x4B19E50: run_test (test.h:589) ==16879== by 0x4B1A27C: main (test.h:671) ==16879== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==16880== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16880== at 0x7BC50754: notify_alloc (heap.c:254) ==16880== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16880== by 0x7B44973A: HeapAlloc (heap.c:271) ==16880== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16880== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16880== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16880== by 0x4B24E50: run_test (test.h:589) ==16880== by 0x4B2527C: main (test.h:671) ==16880== { 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 } ==16880== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16880== at 0x7BC50754: notify_alloc (heap.c:254) ==16880== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16880== by 0x7B44973A: HeapAlloc (heap.c:271) ==16880== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16880== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16880== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16880== by 0x4B24E50: run_test (test.h:589) ==16880== by 0x4B2527C: main (test.h:671) ==16880== { 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 } ==16880== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16880== at 0x7BC50754: notify_alloc (heap.c:254) ==16880== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16880== by 0x7B44973A: HeapAlloc (heap.c:271) ==16880== by 0x7B449907: GlobalAlloc (heap.c:365) ==16880== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16880== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16880== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16880== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16880== by 0x7BC9970A: start_thread (thread.c:453) ==16880== by 0x4243260: start_thread (pthread_create.c:333) ==16880== by 0x433F31D: clone (clone.S:114) ==16880== { 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 } ==16880== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16880== at 0x7BC50754: notify_alloc (heap.c:254) ==16880== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16880== by 0x7B44973A: HeapAlloc (heap.c:271) ==16880== by 0x7B449907: GlobalAlloc (heap.c:365) ==16880== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16880== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16880== by 0x4B24E50: run_test (test.h:589) ==16880== by 0x4B2527C: main (test.h:671) ==16880== { 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 ==16885== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16885== at 0x7BC50754: notify_alloc (heap.c:254) ==16885== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16885== by 0x7B44973A: HeapAlloc (heap.c:271) ==16885== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16885== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16885== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16885== by 0x4B24E50: run_test (test.h:589) ==16885== by 0x4B2527C: main (test.h:671) ==16885== { 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 } ==16885== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16885== at 0x7BC50754: notify_alloc (heap.c:254) ==16885== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16885== by 0x7B44973A: HeapAlloc (heap.c:271) ==16885== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16885== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16885== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16885== by 0x4B24E50: run_test (test.h:589) ==16885== by 0x4B2527C: main (test.h:671) ==16885== { 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 } ==16885== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16885== at 0x7BC50754: notify_alloc (heap.c:254) ==16885== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16885== by 0x7B44973A: HeapAlloc (heap.c:271) ==16885== by 0x7B449907: GlobalAlloc (heap.c:365) ==16885== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16885== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16885== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16885== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16885== by 0x7BC9970A: start_thread (thread.c:453) ==16885== by 0x4243260: start_thread (pthread_create.c:333) ==16885== by 0x433F31D: clone (clone.S:114) ==16885== { 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 } ==16885== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16885== at 0x7BC50754: notify_alloc (heap.c:254) ==16885== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16885== by 0x7B44973A: HeapAlloc (heap.c:271) ==16885== by 0x7B449907: GlobalAlloc (heap.c:365) ==16885== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16885== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16885== by 0x4B24E50: run_test (test.h:589) ==16885== by 0x4B2527C: main (test.h:671) ==16885== { 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 ==16886== Invalid read of size 2 ==16886== at 0x4B19976: wine_dbgstr_wn (test.h:489) ==16886== by 0x4A255C5: test_string_data_process (clipboard.c:2376) ==16886== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16886== by 0x4B19E50: run_test (test.h:589) ==16886== by 0x4B1A27C: main (test.h:671) ==16886== Address 0x488d39c is 4 bytes inside a block of size 5 alloc'd ==16886== at 0x7BC50754: notify_alloc (heap.c:254) ==16886== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16886== by 0x7B44973A: HeapAlloc (heap.c:271) ==16886== by 0x7B449907: GlobalAlloc (heap.c:365) ==16886== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16886== by 0x4A2546E: test_string_data_process (clipboard.c:2370) ==16886== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16886== by 0x4B19E50: run_test (test.h:589) ==16886== by 0x4B1A27C: main (test.h:671) ==16886== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==16888== 8 bytes in 1 blocks are possibly lost in loss record 60 of 682 ==16888== at 0x7BC50754: notify_alloc (heap.c:254) ==16888== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16888== by 0x7B44973A: HeapAlloc (heap.c:271) ==16888== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16888== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16888== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16888== by 0x4B24E50: run_test (test.h:589) ==16888== by 0x4B2527C: main (test.h:671) ==16888== { 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 } ==16888== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16888== at 0x7BC50754: notify_alloc (heap.c:254) ==16888== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16888== by 0x7B44973A: HeapAlloc (heap.c:271) ==16888== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16888== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16888== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16888== by 0x4B24E50: run_test (test.h:589) ==16888== by 0x4B2527C: main (test.h:671) ==16888== { 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 } ==16888== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16888== at 0x7BC50754: notify_alloc (heap.c:254) ==16888== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16888== by 0x7B44973A: HeapAlloc (heap.c:271) ==16888== by 0x7B449907: GlobalAlloc (heap.c:365) ==16888== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16888== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16888== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16888== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16888== by 0x7BC9970A: start_thread (thread.c:453) ==16888== by 0x4243260: start_thread (pthread_create.c:333) ==16888== by 0x433F31D: clone (clone.S:114) ==16888== { 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 } ==16888== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16888== at 0x7BC50754: notify_alloc (heap.c:254) ==16888== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16888== by 0x7B44973A: HeapAlloc (heap.c:271) ==16888== by 0x7B449907: GlobalAlloc (heap.c:365) ==16888== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16888== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16888== by 0x4B24E50: run_test (test.h:589) ==16888== by 0x4B2527C: main (test.h:671) ==16888== { 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 ==16889== Invalid read of size 2 ==16889== at 0x4B19976: wine_dbgstr_wn (test.h:489) ==16889== by 0x4A255C5: test_string_data_process (clipboard.c:2376) ==16889== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16889== by 0x4B19E50: run_test (test.h:589) ==16889== by 0x4B1A27C: main (test.h:671) ==16889== Address 0x488d39e is 6 bytes inside a block of size 7 alloc'd ==16889== at 0x7BC50754: notify_alloc (heap.c:254) ==16889== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16889== by 0x7B44973A: HeapAlloc (heap.c:271) ==16889== by 0x7B449907: GlobalAlloc (heap.c:365) ==16889== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16889== by 0x4A2546E: test_string_data_process (clipboard.c:2370) ==16889== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16889== by 0x4B19E50: run_test (test.h:589) ==16889== by 0x4B1A27C: main (test.h:671) ==16889== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==16892== 8 bytes in 1 blocks are possibly lost in loss record 59 of 682 ==16892== at 0x7BC50754: notify_alloc (heap.c:254) ==16892== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16892== by 0x7B44973A: HeapAlloc (heap.c:271) ==16892== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16892== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16892== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16892== by 0x4B24E50: run_test (test.h:589) ==16892== by 0x4B2527C: main (test.h:671) ==16892== { 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 } ==16892== 9 bytes in 1 blocks are definitely lost in loss record 62 of 682 ==16892== at 0x7BC50754: notify_alloc (heap.c:254) ==16892== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16892== by 0x7B44973A: HeapAlloc (heap.c:271) ==16892== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16892== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16892== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16892== by 0x4B24E50: run_test (test.h:589) ==16892== by 0x4B2527C: main (test.h:671) ==16892== { 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 } ==16892== 100 bytes in 1 blocks are definitely lost in loss record 421 of 682 ==16892== at 0x7BC50754: notify_alloc (heap.c:254) ==16892== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16892== by 0x7B44973A: HeapAlloc (heap.c:271) ==16892== by 0x7B449907: GlobalAlloc (heap.c:365) ==16892== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16892== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16892== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16892== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16892== by 0x7BC9970A: start_thread (thread.c:453) ==16892== by 0x4243260: start_thread (pthread_create.c:333) ==16892== by 0x433F31D: clone (clone.S:114) ==16892== { 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 } ==16892== 100 bytes in 1 blocks are definitely lost in loss record 422 of 682 ==16892== at 0x7BC50754: notify_alloc (heap.c:254) ==16892== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16892== by 0x7B44973A: HeapAlloc (heap.c:271) ==16892== by 0x7B449907: GlobalAlloc (heap.c:365) ==16892== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16892== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16892== by 0x4B24E50: run_test (test.h:589) ==16892== by 0x4B2527C: main (test.h:671) ==16892== { 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 ==16893== Invalid read of size 2 ==16893== at 0x4B19976: wine_dbgstr_wn (test.h:489) ==16893== by 0x4A255C5: test_string_data_process (clipboard.c:2376) ==16893== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16893== by 0x4B19E50: run_test (test.h:589) ==16893== by 0x4B1A27C: main (test.h:671) ==16893== Address 0x488d3a0 is 8 bytes inside a block of size 9 alloc'd ==16893== at 0x7BC50754: notify_alloc (heap.c:254) ==16893== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16893== by 0x7B44973A: HeapAlloc (heap.c:271) ==16893== by 0x7B449907: GlobalAlloc (heap.c:365) ==16893== by 0x4CFDCF1: GetClipboardData (clipboard.c:1042) ==16893== by 0x4A2546E: test_string_data_process (clipboard.c:2370) ==16893== by 0x4A25A61: func_clipboard (clipboard.c:2438) ==16893== by 0x4B19E50: run_test (test.h:589) ==16893== by 0x4B1A27C: main (test.h:671) ==16893== { Memcheck:Addr2 fun:wine_dbgstr_wn fun:test_string_data_process fun:func_clipboard fun:run_test fun:main } ==16772== 8 bytes in 1 blocks are possibly lost in loss record 59 of 677 ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B44999B: GlobalAlloc (heap.c:377) ==16772== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { 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 } ==16772== 9 bytes in 1 blocks are definitely lost in loss record 62 of 677 ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B4499F5: GlobalAlloc (heap.c:389) ==16772== by 0x4A22DC1: test_RegisterClipboardFormatA (clipboard.c:434) ==16772== by 0x4A30A6B: func_clipboard (clipboard.c:2442) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { 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 } ==16772== 100 bytes in 1 blocks are definitely lost in loss record 420 of 677 ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4A2096E: set_clipboard_data_thread (clipboard.c:93) ==16772== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==16772== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==16772== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==16772== by 0x7BC9970A: start_thread (thread.c:453) ==16772== by 0x4243260: start_thread (pthread_create.c:333) ==16772== by 0x433F31D: clone (clone.S:114) ==16772== { 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 } ==16772== 100 bytes in 1 blocks are definitely lost in loss record 421 of 677 ==16772== at 0x7BC50754: notify_alloc (heap.c:254) ==16772== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==16772== by 0x7B44973A: HeapAlloc (heap.c:271) ==16772== by 0x7B449907: GlobalAlloc (heap.c:365) ==16772== by 0x4A225B0: test_ClipboardOwner (clipboard.c:355) ==16772== by 0x4A30A70: func_clipboard (clipboard.c:2443) ==16772== by 0x4B24E50: run_test (test.h:589) ==16772== by 0x4B2527C: main (test.h:671) ==16772== { 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 dde && touch dde.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 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 ==17070== Invalid free() / delete / delete[] / realloc() ==17070== at 0x7BC5084A: notify_realloc (heap.c:270) ==17070== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==17070== by 0x4D40CC4: MDIClientWndProc_common (mdi.c:1202) ==17070== by 0x4D9A105: MDIClientWndProcA (winproc.c:1106) ==17070== by 0x4D973D9: ??? (winproc.c:174) ==17070== by 0x4D97528: call_window_proc (winproc.c:245) ==17070== by 0x4D99A7B: CallWindowProcA (winproc.c:964) ==17070== by 0x4A95832: mdi_client_hook_proc (msg.c:3317) ==17070== by 0x4D973D9: ??? (winproc.c:174) ==17070== by 0x4D97528: call_window_proc (winproc.c:245) ==17070== by 0x4D9971A: WINPROC_CallProcWtoA (winproc.c:859) ==17070== by 0x4D998BD: WINPROC_call_window (winproc.c:903) ==17070== by 0x4D56109: call_window_proc (message.c:2224) ==17070== by 0x4D590C9: send_message (message.c:3266) ==17070== by 0x4D5983A: SendMessageW (message.c:3466) ==17070== by 0x4D846CC: send_parent_notify (win.c:428) ==17070== by 0x4D88998: WIN_CreateWindowEx (win.c:1680) ==17070== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==17070== by 0x4A965D8: test_mdi_messages (msg.c:3522) ==17070== by 0x4AC64AF: func_msg (msg.c:16095) ==17070== Address 0x4938588 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==17070== at 0x7BC50754: notify_alloc (heap.c:254) ==17070== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17070== by 0x4D3F075: MDIDestroyChild (mdi.c:567) ==17070== by 0x4D40E0F: MDIClientWndProc_common (mdi.c:1227) ==17070== by 0x4D9A105: MDIClientWndProcA (winproc.c:1106) ==17070== by 0x4D973D9: ??? (winproc.c:174) ==17070== by 0x4D97528: call_window_proc (winproc.c:245) ==17070== by 0x4D99A7B: CallWindowProcA (winproc.c:964) ==17070== by 0x4A95832: mdi_client_hook_proc (msg.c:3317) ==17070== by 0x4D973D9: ??? (winproc.c:174) ==17070== by 0x4D97528: call_window_proc (winproc.c:245) ==17070== by 0x4D9971A: WINPROC_CallProcWtoA (winproc.c:859) ==17070== by 0x4D998BD: WINPROC_call_window (winproc.c:903) ==17070== by 0x4D56109: call_window_proc (message.c:2224) ==17070== by 0x4D590C9: send_message (message.c:3266) ==17070== by 0x4D5983A: SendMessageW (message.c:3466) ==17070== by 0x4D846CC: send_parent_notify (win.c:428) ==17070== by 0x4D89095: DestroyWindow (win.c:1851) ==17070== by 0x4A96564: test_mdi_messages (msg.c:3518) ==17070== by 0x4AC64AF: func_msg (msg.c:16095) ==17070== { 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 } ==17070== Invalid read of size 2 ==17070== at 0x4D158E3: strlenW (unicode.h:200) ==17070== by 0x4D15DAD: DEFWND_SetTextW (defwnd.c:128) ==17070== by 0x4D17FEB: DefWindowProcW (defwnd.c:930) ==17070== by 0x4AB67F2: test_dlg_proc4 (msg.c:12245) ==17070== by 0x4D973D9: ??? (winproc.c:174) ==17070== by 0x4D97528: call_window_proc (winproc.c:245) ==17070== by 0x4D9996D: WINPROC_call_window (winproc.c:914) ==17070== by 0x4D56109: call_window_proc (message.c:2224) ==17070== by 0x4D590C9: send_message (message.c:3266) ==17070== by 0x4D598CC: SendMessageA (message.c:3488) ==17070== by 0x4D88559: WIN_CreateWindowEx (win.c:1607) ==17070== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==17070== by 0x4D1A6E9: DIALOG_CreateIndirect (dialog.c:635) ==17070== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==17070== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==17070== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==17070== by 0x4AB71A1: test_dialog_messages (msg.c:12477) ==17070== by 0x4AC656B: func_msg (msg.c:16128) ==17070== by 0x4B24E50: run_test (test.h:589) ==17070== by 0x4B2527C: main (test.h:671) ==17070== Address 0x495ab9c is 0 bytes after a recently re-allocated block of size 12 alloc'd ==17070== at 0x7BC50754: notify_alloc (heap.c:254) ==17070== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17070== by 0x4D1A652: DIALOG_CreateIndirect (dialog.c:631) ==17070== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==17070== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==17070== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==17070== by 0x4AB71A1: test_dialog_messages (msg.c:12477) ==17070== by 0x4AC656B: func_msg (msg.c:16128) ==17070== by 0x4B24E50: run_test (test.h:589) ==17070== by 0x4B2527C: main (test.h:671) ==17070== { 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 } ==17070== Invalid read of size 2 ==17070== at 0x4D15918: strcpyW (unicode.h:207) ==17070== by 0x4D15E66: DEFWND_SetTextW (defwnd.c:134) ==17070== by 0x4D17FEB: DefWindowProcW (defwnd.c:930) ==17070== by 0x4AB67F2: test_dlg_proc4 (msg.c:12245) ==17070== by 0x4D973D9: ??? (winproc.c:174) ==17070== by 0x4D97528: call_window_proc (winproc.c:245) ==17070== by 0x4D9996D: WINPROC_call_window (winproc.c:914) ==17070== by 0x4D56109: call_window_proc (message.c:2224) ==17070== by 0x4D590C9: send_message (message.c:3266) ==17070== by 0x4D598CC: SendMessageA (message.c:3488) ==17070== by 0x4D88559: WIN_CreateWindowEx (win.c:1607) ==17070== by 0x4D88CB5: CreateWindowExA (win.c:1745) ==17070== by 0x4D1A6E9: DIALOG_CreateIndirect (dialog.c:635) ==17070== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==17070== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==17070== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==17070== by 0x4AB71A1: test_dialog_messages (msg.c:12477) ==17070== by 0x4AC656B: func_msg (msg.c:16128) ==17070== by 0x4B24E50: run_test (test.h:589) ==17070== by 0x4B2527C: main (test.h:671) ==17070== Address 0x495ab9c is 0 bytes after a recently re-allocated block of size 12 alloc'd ==17070== at 0x7BC50754: notify_alloc (heap.c:254) ==17070== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17070== by 0x4D1A652: DIALOG_CreateIndirect (dialog.c:631) ==17070== by 0x4D1ABF0: CreateDialogIndirectParamAorW (dialog.c:745) ==17070== by 0x4D1AC31: CreateDialogIndirectParamA (dialog.c:754) ==17070== by 0x4D1AB22: CreateDialogParamA (dialog.c:719) ==17070== by 0x4AB71A1: test_dialog_messages (msg.c:12477) ==17070== by 0x4AC656B: func_msg (msg.c:16128) ==17070== by 0x4B24E50: run_test (test.h:589) ==17070== by 0x4B2527C: main (test.h:671) ==17070== { 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:12924: Tests skipped: Skipping DBCS WM_CHAR test in SBCS codepage 'ANSI Latin 1' msg.c:13240: Tests skipped: Unable to load Greek keyboard layout ../../../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:959: Test succeeded inside todo block: unexpected foreground window (nil) winstation.c:959: Test succeeded inside todo block: unexpected foreground window (nil) make[1]: *** [Makefile:595: 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' make: *** [Makefile:17142: 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:210: Tests skipped: No active theme, skipping rest of OpenThemeData tests system.c:367: 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 0x73ecb2c (thread 01b8), 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 (0x073ecb2c). 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:073ecb2c ESP:04b0e200 EBP:00028350 EFLAGS:00200004( - -- - -P- ) EAX:00000003 EBX:0780c000 ECX:047bf258 EDX:00200000 ESI:047485d0 EDI:047bf258 Stack dump: 0x04b0e200: 04b0e23c 047b8ba4 00000003 00000002 0x04b0e210: 00007a50 00007a64 00000082 00007a6c 0x04b0e220: 00800000 00000000 00007a44 00007a48 0x04b0e230: 00007a4c 00000000 04747db0 00007a74 0x04b0e240: 00000000 00000000 00000000 00000000 0x04b0e250: 00000000 00000000 00000000 ead3b100 Backtrace: =>0 0x073ecb2c in radeonsi_dri.so (+0x64db2c) (0x00028350) 1 0x073d335b in radeonsi_dri.so (+0x63435a) (0x04747148) 2 0x073d36e2 in radeonsi_dri.so (+0x6346e1) (0x04b0e398) 3 0x07453a6f radeon_drm_winsys_create+0x89e() in radeonsi_dri.so (0x04b0e398) 4 0x06dce79c in radeonsi_dri.so (+0x2f79b) (0x0473da68) 5 0x07206000 in radeonsi_dri.so (+0x466fff) (0x0473da68) 6 0x07205a3d in radeonsi_dri.so (+0x466a3c) (0x0473da68) 7 0x070c694b in radeonsi_dri.so (+0x32794a) (0x0473da68) 8 0x070c2976 in radeonsi_dri.so (+0x323975) (0x0473d9e0) 9 0x06bd6722 in libgl.so.1 (+0x43721) (0x0468b1f0) 10 0x06baba42 in libgl.so.1 (+0x18a41) (0x04688cc8) 11 0x06ba760b in libgl.so.1 (+0x1460a) (0x04b0ee54) 12 0x06ba7784 glXChooseVisual+0x63() in libgl.so.1 (0x04b0ee54) 13 0x059855cb X11DRV_WineGL_InitOpenglInfo+0xb6() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:469] in winex11 (0x04b0ef28) 14 0x05987023 init_opengl+0xfbe(once=0x59e3e38, param=0x0(nil), context=(nil)) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:674] in winex11 (0x04b0f138) 15 0x7bc96b79 RtlRunOnceExecuteOnce+0x52(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/ntdll/sync.c:1517] in ntdll (0x04b0f188) 16 0x7b4827f7 InitOnceExecuteOnce+0x22(once=, func=, param=, context=) [/home/austin/wine-valgrind/dlls/kernel32/sync.c:2361] in kernel32 (0x04b0f1b8) 17 0x0598749e has_opengl+0x28() [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:767] in winex11 (0x04b0f1e8) 18 0x0598f533 get_glx_driver+0x6a(version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/opengl.c:3374] in winex11 (0x04b0f208) 19 0x0597a293 X11DRV_wine_get_wgl_driver+0x10(dev=0x490b020, version=0xf) [/home/austin/wine-valgrind/dlls/winex11.drv/init.c:459] in winex11 (0x04b0f238) 20 0x053a65c4 __wine_get_wgl_driver+0x60(hdc=, version=) [/home/austin/wine-valgrind/dlls/gdi32/opengl.c:58] in gdi32 (0x04b0f268) 21 0x05f52c4f wined3d_adapter_init+0xe0(adapter=0x4907a70, ordinal=0, wined3d_creation_flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6301] in wined3d (0x04b0f698) 22 0x05f53681 wined3d_init+0xa5(wined3d=0x4907a60, flags=0) [/home/austin/wine-valgrind/dlls/wined3d/directx.c:6443] in wined3d (0x04b0f6c8) 23 0x05fd9c71 wined3d_create+0xad(flags=) [/home/austin/wine-valgrind/dlls/wined3d/wined3d_main.c:110] in wined3d (0x04b0f728) 24 0x05ec558a dxgi_factory_init+0x44(factory=0x4907a30, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:309] in dxgi (0x04b0f758) 25 0x05ec5622 dxgi_factory_create+0x51(riid=0x5e289d0, factory=0x4b0f824, extended=0) [/home/austin/wine-valgrind/dlls/dxgi/factory.c:330] in dxgi (0x04b0f7a8) 26 0x05ec3c11 CreateDXGIFactory+0x81(riid=, factory=) [/home/austin/wine-valgrind/dlls/dxgi/dxgi_main.c:70] in dxgi (0x04b0f7e8) 27 0x05e15a4e fill_videocontroller+0xd6(table=0x5e3a768, cond=0x4907998) [/home/austin/wine-valgrind/dlls/wbemprox/builtin.c:3191] in wbemprox (0x04b0f9f8) 28 0x05e1c387 execute_view+0x6c(view=0x49079b8) [/home/austin/wine-valgrind/dlls/wbemprox/query.c:413] in wbemprox (0x04b0fa58) 29 0x05e1c645 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 0x05e229e2 wbem_services_ExecQuery+0xd9(iface=, strQueryLanguage=, strQuery=, lFlags=, pCtx=, ppEnum=) [/home/austin/wine-valgrind/dlls/wbemprox/services.c:626] in wbemprox (0x04b0fac8) 31 0x04822178 exec_query+0xc6(services=0x48fdb88, 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 0x048227ef test_select+0x441(services=0x48fdb88) [/home/austin/wine-valgrind/dlls/wbemprox/tests/query.c:140] in wbemprox_test (0x04b0fc78) 33 0x0482b8eb func_query+0x191() [/home/austin/wine-valgrind/dlls/wbemprox/tests/query.c:1391] in wbemprox_test (0x04b0fcc8) 34 0x0482d11c run_test+0x96(name="query") [/home/austin/wine-valgrind/dlls/wbemprox/tests/../../../include/wine/test.h:589] in wbemprox_test (0x04b0fd08) 35 0x0482d548 main+0x245(argc=, argv=0x48d1e00) [/home/austin/wine-valgrind/dlls/wbemprox/tests/../../../include/wine/test.h:671] in wbemprox_test (0x04b0fdd8) 36 0x0482d5d5 __wine_spec_exe_entry+0x6d(peb=) [/home/austin/wine-valgrind/dlls/winecrt0/exe_entry.c:36] in wbemprox_test (0x04b0fe18) 37 0x7b46ad20 call_process_entry+0xb() in kernel32 (0x04b0fe38) 38 0x7b46ae62 start_process+0x13f(peb=) [/home/austin/wine-valgrind/dlls/kernel32/process.c:1108] in kernel32 (0x04b0fe88) 39 0x7bc8fa58 call_thread_func_wrapper+0xb() in ntdll (0x04b0fea8) 40 0x7bc8fad4 call_thread_func+0x71(entry=0x7b46ad22, arg=0x4201000, frame=0x4b0ffb8) [/home/austin/wine-valgrind/dlls/ntdll/signal_i386.c:2759] in ntdll (0x04b0ff98) 41 0x7bc8fa36 call_thread_entry_point+0x11() in ntdll (0x04b0ffb8) 42 0x7bc5f054 start_process+0x21(kernel_start=0x7b46ad22) [/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=0x7bc5f032, arg=0x7b46ad22, stack=0x4b10000) [/home/austin/wine-valgrind/libs/wine/port.c:77] in libwine.so.1 (0xfef9f2b8) 45 0x7bc5f3a4 LdrInitializeThunk+0x34f(kernel_start=, unknown2=, unknown3=, unknown4=) [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3103] in ntdll (0xfef9f338) 46 0x7b46b71c __wine_kernel_init+0x6af() [/home/austin/wine-valgrind/dlls/kernel32/process.c:1302] in kernel32 (0xfefa01e8) 47 0x7bc5fb3c __wine_process_init+0x132() [/home/austin/wine-valgrind/dlls/ntdll/loader.c:3312] in ntdll (0xfefa0228) 48 0x0403f59b wine_init+0x14b(argc=0x3, argv=0xfefa0764, error="", error_size=0x400) [/home/austin/wine-valgrind/libs/wine/loader.c:956] in libwine.so.1 (0xfefa0278) 49 0x7c000f80 main+0x145(argc=, argv=0xfefa0764) [/home/austin/wine-valgrind/loader/main.c:254] in (0xfefa06b8) 50 0x042725ce __libc_start_main+0xdd() in libc.so.6 (0x00000000) 0x073ecb2c: 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- 440a000 Dwarf libc.so.6 ELF 440a000- 440f000 Deferred libdl.so.2 ELF 4810000- 4838000 Dwarf wbemprox_test \-PE 4820000- 4838000 \ wbemprox_test ELF 485c000- 48af000 Deferred libm.so.6 ELF 48af000- 48bc000 Deferred libnss_nis.so.2 ELF 48bc000- 48cf000 Deferred libnss_files.so.2 ELF 4b10000- 4c82000 Deferred oleaut32 \-PE 4b30000- 4c82000 \ oleaut32 ELF 4d82000- 4f04000 Deferred ole32 \-PE 4da0000- 4f04000 \ ole32 ELF 5004000- 5085000 Deferred advapi32 \-PE 5010000- 5085000 \ advapi32 ELF 5085000- 51fa000 Deferred user32 \-PE 50a0000- 51fa000 \ user32 ELF 52fa000- 543f000 Dwarf gdi32 \-PE 5310000- 543f000 \ gdi32 ELF 543f000- 545a000 Deferred version \-PE 5440000- 545a000 \ version ELF 545a000- 54e7000 Deferred rpcrt4 \-PE 5470000- 54e7000 \ rpcrt4 ELF 5533000- 55eb000 Deferred libfreetype.so.6 ELF 57eb000- 5804000 Deferred libz.so.1 ELF 5804000- 5816000 Deferred libbz2.so.1 ELF 581a000- 5858000 Deferred libpng16.so.16 ELF 585c000- 5899000 Deferred libfontconfig.so.1 ELF 589d000- 58c7000 Deferred libexpat.so.1 ELF 58d3000- 58df000 Deferred libxcursor.so.1 ELF 58e3000- 58ea000 Deferred libxfixes.so.3 ELF 58fe000- 5901000 Deferred libxshmfence.so.1 ELF 591e000- 5943000 Deferred imm32 \-PE 5920000- 5943000 \ 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 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 5bea000- 5c06000 Deferred libbsd.so.0 ELF 5c56000- 5c69000 Deferred libxi.so.6 ELF 5c89000- 5ca1000 Deferred libresolv.so.2 ELF 5dc9000- 5dcc000 Deferred libx11-xcb.so.1 ELF 5ded000- 5df1000 Deferred libxcb-dri3.so.0 ELF 5df1000- 5df5000 Deferred libxcb-present.so.0 ELF 5df9000- 5dfc000 Deferred libllvmamdgpuutils.so.3.7 ELF 5dfc000- 5e3b000 Dwarf wbemprox \-PE 5e00000- 5e3b000 \ wbemprox ELF 5e3b000- 5e7f000 Deferred winspool \-PE 5e40000- 5e7f000 \ winspool ELF 5e7f000- 5eab000 Deferred iphlpapi \-PE 5e90000- 5eab000 \ iphlpapi ELF 5eaf000- 5eda000 Dwarf dxgi \-PE 5eb0000- 5eda000 \ dxgi ELF 5ee2000- 6041000 Dwarf wined3d \-PE 5ef0000- 6041000 \ wined3d ELF 6051000- 608a000 Deferred ws2_32 \-PE 6060000- 608a000 \ ws2_32 ELF 64af000- 64b7000 Deferred libxcb-sync.so.1 ELF 64b7000- 64ee000 Deferred libglapi.so.0 ELF 64f2000- 64f6000 Deferred libxdamage.so.1 ELF 64f7000- 657c000 Deferred libcups.so.2 ELF 657c000- 66b3000 Deferred libgnutls.so.28 ELF 69b3000- 69c8000 Deferred libtasn1.so.6 ELF 69c8000- 6a08000 Deferred libnettle.so.6 ELF 6a0c000- 6a43000 Deferred libhogweed.so.4 ELF 6a47000- 6abe000 Deferred libgmp.so.10 ELF 6b67000- 6b8f000 Deferred libudev.so.1 ELF 6b93000- 6c0a000 Dwarf libgl.so.1 ELF 6d0a000- 6d27000 Deferred libxcb-glx.so.0 ELF 6d2f000- 6d35000 Deferred libxcb-dri2.so.0 ELF 6d39000- 6d4b000 Deferred libdrm.so.2 ELF 6d5b000- 6d80000 Deferred libdrm_intel.so.1 ELF 6d84000- 6d8e000 Deferred libdrm_nouveau.so.2 ELF 6d9f000- 7a0a000 Dwarf radeonsi_dri.so ELF 7c03000- 7c09000 Deferred libtxc_dxtn.so ELF 7c3b000- 7c49000 Deferred libdrm_radeon.so.1 ELF 7c49000- 7c54000 Deferred libdrm_amdgpu.so.1 ELF 7c54000- 7c71000 Deferred libelf.so.1 ELF 7c75000- 7de4000 Deferred libllvmamdgpucodegen.so.3.7 ELF 7e04000- 7e07000 Deferred libllvmamdgpuinfo.so.3.7 ELF 7e07000- 7e0a000 Deferred libllvmx86info.so.3.7 ELF 820a000- 82d8000 Deferred libllvmasmprinter.so.3.7 ELF 8915000- 89dc000 Deferred libllvmipo.so.3.7 ELF 89e0000- 8a0a000 Deferred libllvmamdgpuasmprinter.so.3.7 ELF 8c27000- 8ccf000 Deferred libllvmvectorize.so.3.7 ELF 8ccf000- 8d0b000 Deferred libllvmbitwriter.so.3.7 ELF 8de5000- 8e3f000 Deferred libllvmamdgpuasmparser.so.3.7 ELF 8e3f000- 8f0b000 Deferred libllvmamdgpudesc.so.3.7 ELF 8f0b000- 9073000 Deferred libllvmx86disassembler.so.3.7 ELF 9073000- 9116000 Deferred libllvmx86asmparser.so.3.7 ELF 973f000- 99c5000 Deferred libllvmx86codegen.so.3.7 ELF 9acd000- 9ad6000 Deferred libllvmmcdisassembler.so.3.7 ELF a21c000- a253000 Deferred libllvmipa.so.3.7 ELF a418000- a721000 Deferred libllvmselectiondag.so.3.7 ELF ab3c000- ab48000 Deferred libllvmx86utils.so.3.7 ELF adbd000- b2ab000 Deferred libllvmcodegen.so.3.7 ELF b3ab000- b66d000 Deferred libllvmscalaropts.so.3.7 ELF b771000- b781000 Deferred libllvmmcjit.so.3.7 ELF ba67000- baa8000 Deferred libllvmprofiledata.so.3.7 ELF baa8000- bb50000 Deferred libllvminstrumentation.so.3.7 ELF bc74000- bd63000 Deferred libllvminstcombine.so.3.7 ELF be63000- beae000 Deferred libllvmx86asmprinter.so.3.7 ELF beae000- bed8000 Deferred libllvmexecutionengine.so.3.7 ELF bed8000- beec000 Deferred libllvmtarget.so.3.7 ELF c5b3000- c631000 Deferred libllvmruntimedyld.so.3.7 ELF c9fa000- cb60000 Deferred libllvmtransformutils.so.3.7 ELF cc60000- cdbd000 Deferred libllvmx86desc.so.3.7 ELF cdbd000- ce64000 Deferred libllvmobject.so.3.7 ELF ce6c000- ce88000 Deferred libgcc_s.so.1 ELF ce8c000- ce97000 Deferred libpciaccess.so.0 ELF d02f000- d31c000 Deferred libllvmanalysis.so.3.7 ELF d82a000- d867000 Deferred libllvmmcparser.so.3.7 ELF d867000- d8b8000 Deferred libllvmbitreader.so.3.7 ELF d8b8000- d977000 Deferred libllvmmc.so.3.7 ELF dff9000- e35f000 Deferred libllvmcore.so.3.7 ELF e45f000- e57c000 Deferred libllvmsupport.so.3.7 ELF e67c000- e6da000 Deferred libncurses.so.6 ELF 7a800000-7a937000 Deferred opengl32 \-PE 7a820000-7a937000 \ opengl32 ELF 7b400000-7b7f1000 Dwarf kernel32 \-PE 7b410000-7b7f1000 \ 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 00000141 0 000001b0 0 000001ee 0 000000b0 0 00000025 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 winedevice.exe 0000002d 0 00000028 0 00000027 0 00000024 0 0000002b explorer.exe 000001a9 0 00000031 0 0000002f 0 0000002e 0 0000002c 0 00000032 winemine.exe 00000033 0 000000ae rpcss.exe 000001b1 0 000001d3 0 00000173 0 000000b7 0 000000b4 0 000000b3 0 000000b2 0 000000af 0 000001ed svchost.exe 00000068 0 000001f9 0 00000008 0 000001f6 0 000001f7 0 000001f8 0 000001f3 0 00000162 svchost.exe 00000139 0 0000015b 0 00000182 0 0000017a 0 0000016a 0 000001ae explorer.exe 00000197 0 0000019c 0 000001a4 0 000001a6 0 0000019b 0 000001d0 (D) Z:\home\austin\wine-valgrind\dlls\wbemprox\tests\wbemprox_test.exe 000001b8 0 <== System information: Wine build: wine-2.1-1-g7bc274e Platform: i386 Version: Windows XP Host system: Linux Host version: 4.9.4-vanilla-workstation-2 ==17484== 40 bytes in 1 blocks are possibly lost in loss record 856 of 1,436 ==17484== at 0x7BC50754: notify_alloc (heap.c:254) ==17484== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17484== by 0x5E2120B: heap_alloc (wbemprox_private.h:233) ==17484== by 0x5E2347C: WbemServices_create (services.c:888) ==17484== by 0x5E2512C: wbem_locator_ConnectServer (wbemlocator.c:198) ==17484== by 0x482B850: IWbemLocator_ConnectServer (wbemcli.h:443) ==17484== by 0x482B850: func_query (???:0) ==17484== by 0x482D11B: run_test (test.h:589) ==17484== by 0x482D547: main (test.h:671) ==17484== { 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 } make[1]: *** [Makefile:172: 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' make: *** [Makefile:17822: 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 make[1]: *** [Makefile:270: 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 writer.c:387: Test failed: 2135: got 39 expected 22 writer.c:387: Test failed: 2135: got 29 expected 12 writer.c:387: Test failed: 2135: got 28 expected 10 writer.c:387: Test failed: 2135: got 28 expected 11 writer.c:387: Test failed: 2135: got 29 expected 11 writer.c:387: Test failed: 2135: got 29 expected 12 writer.c:389: Test failed: 2135: got 1.7976931348623316E+308 expected 1.7976931348623157E+308 writer.c:389: Test failed: 2135: got -1.7976931348623316E+308 expected -1.7976931348623157E+308 writer.c:2183: Test failed: got 037f writer.c:2186: Test failed: got 0f7f writer.c:387: Test failed: 2199: got 39 expected 22 writer.c:2202: Test failed: got 0f7f make[1]: *** [Makefile:332: writer.ok] Error 12 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/webservices/tests' make: *** [Makefile:17869: 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 ==17878== 16 bytes in 2 blocks are definitely lost in loss record 93 of 799 ==17878== at 0x7BC50754: notify_alloc (heap.c:254) ==17878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17878== by 0x642C0C8: SECUR32_makeSecHandle (wrapper.c:44) ==17878== by 0x642CB46: InitializeSecurityContextW (wrapper.c:354) ==17878== by 0x4BC38A7: netcon_secure_connect_setup (netconnection.c:467) ==17878== by 0x4BC41E4: NETCON_secure_connect (netconnection.c:617) ==17878== by 0x4BB32A8: HTTP_HttpSendRequestW (http.c:5001) ==17878== by 0x4BB410C: AsyncHttpSendRequestProc (http.c:5261) ==17878== by 0x4BC0094: INTERNET_WorkerThreadFunc (internet.c:3724) ==17878== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==17878== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==17878== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==17878== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==17878== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==17878== by 0x7BC9970A: start_thread (thread.c:453) ==17878== by 0x4243260: start_thread (pthread_create.c:333) ==17878== by 0x433F31D: clone (clone.S:114) ==17878== { 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 } ==17878== 192 bytes in 2 blocks are definitely lost in loss record 624 of 799 ==17878== at 0x7BC50754: notify_alloc (heap.c:254) ==17878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17878== by 0x4BC2165: heap_alloc_zero (internet.h:99) ==17878== by 0x4BC3458: create_netconn (netconnection.c:348) ==17878== by 0x4BB2AF6: open_http_connection (http.c:4851) ==17878== by 0x4BB3235: HTTP_HttpSendRequestW (http.c:4992) ==17878== by 0x4BB410C: AsyncHttpSendRequestProc (http.c:5261) ==17878== by 0x4BC0094: INTERNET_WorkerThreadFunc (internet.c:3724) ==17878== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==17878== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==17878== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==17878== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==17878== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==17878== by 0x7BC9970A: start_thread (thread.c:453) ==17878== by 0x4243260: start_thread (pthread_create.c:333) ==17878== by 0x433F31D: clone (clone.S:114) ==17878== { 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 } ==17878== 576 bytes in 6 blocks are possibly lost in loss record 695 of 799 ==17878== at 0x7BC50754: notify_alloc (heap.c:254) ==17878== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17878== by 0x4BC2165: heap_alloc_zero (internet.h:99) ==17878== by 0x4BC3458: create_netconn (netconnection.c:348) ==17878== by 0x4BB2AF6: open_http_connection (http.c:4851) ==17878== by 0x4BB3235: HTTP_HttpSendRequestW (http.c:4992) ==17878== by 0x4BB410C: AsyncHttpSendRequestProc (http.c:5261) ==17878== by 0x4BC0094: INTERNET_WorkerThreadFunc (internet.c:3724) ==17878== by 0x7BC9C4B2: process_rtl_work_item (threadpool.c:349) ==17878== by 0x7BCA0395: threadpool_worker_proc (threadpool.c:2112) ==17878== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==17878== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==17878== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==17878== by 0x7BC9970A: start_thread (thread.c:453) ==17878== by 0x4243260: start_thread (pthread_create.c:333) ==17878== by 0x433F31D: clone (clone.S:114) ==17878== { 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 ==17928== 512 bytes in 1 blocks are definitely lost in loss record 590 of 702 ==17928== at 0x7BC50754: notify_alloc (heap.c:254) ==17928== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==17928== by 0x4CD2043: list_window_children (win.c:319) ==17928== by 0x4CDABA9: WIN_ListChildren (win.c:3322) ==17928== by 0x4CD7163: DestroyWindow (win.c:1882) ==17928== by 0x4B8E087: WINMM_DevicesThreadDone (waveform.c:2446) ==17928== by 0x4B8E44A: WINMM_DevicesThreadProc (waveform.c:2517) ==17928== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==17928== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==17928== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==17928== by 0x7BC9970A: start_thread (thread.c:453) ==17928== by 0x4243260: start_thread (pthread_create.c:333) ==17928== by 0x433F31D: clone (clone.S:114) ==17928== { 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 ==18132== 0 bytes in 2 blocks are definitely lost in loss record 10 of 1,015 ==18132== at 0x7BC50754: notify_alloc (heap.c:254) ==18132== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==18132== by 0x50B291A: IMalloc_fnAlloc (ifs.c:187) ==18132== by 0x50B31B9: IMalloc_Alloc (objidl.h:1508) ==18132== by 0x50B31B9: CoTaskMemAlloc (???:0) ==18132== by 0x9DD80D8: ??? ==18132== by 0x9DDCE3E: ??? ==18132== by 0x9DDCF22: ??? ==18132== by 0x9DDD3EB: ??? ==18132== by 0x9DDD8F2: ??? ==18132== by 0x947FF90: ??? ==18132== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==18132== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==18132== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==18132== by 0x7BC9970A: start_thread (thread.c:453) ==18132== by 0x4243260: start_thread (pthread_create.c:333) ==18132== by 0x433F31D: clone (clone.S:114) ==18132== { 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 } ==18132== 0 bytes in 3 blocks are definitely lost in loss record 11 of 1,015 ==18132== at 0x7BC50754: notify_alloc (heap.c:254) ==18132== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==18132== by 0x50B291A: IMalloc_fnAlloc (ifs.c:187) ==18132== by 0x50B31B9: IMalloc_Alloc (objidl.h:1508) ==18132== by 0x50B31B9: CoTaskMemAlloc (???:0) ==18132== by 0x9DD80D8: ??? ==18132== by 0x9DDCE3E: ??? ==18132== by 0x9DDCF22: ??? ==18132== by 0x9DDD3EB: ??? ==18132== by 0x9DDD909: ??? ==18132== by 0x947FF90: ??? ==18132== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==18132== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==18132== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==18132== by 0x7BC9970A: start_thread (thread.c:453) ==18132== by 0x4243260: start_thread (pthread_create.c:333) ==18132== by 0x433F31D: clone (clone.S:114) ==18132== { 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 ==18490== 512 bytes in 1 blocks are definitely lost in loss record 604 of 719 ==18490== at 0x7BC50754: notify_alloc (heap.c:254) ==18490== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==18490== by 0x4CD2043: list_window_children (win.c:319) ==18490== by 0x4CDABA9: WIN_ListChildren (win.c:3322) ==18490== by 0x4CD3A69: WIN_DestroyWindow (win.c:969) ==18490== by 0x4CD7283: DestroyWindow (win.c:1909) ==18490== by 0x4B8E087: WINMM_DevicesThreadDone (waveform.c:2446) ==18490== by 0x4B8E44A: WINMM_DevicesThreadProc (waveform.c:2517) ==18490== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==18490== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==18490== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==18490== by 0x7BC9970A: start_thread (thread.c:453) ==18490== by 0x4243260: start_thread (pthread_create.c:333) ==18490== by 0x433F31D: clone (clone.S:114) ==18490== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap fun:list_window_children fun:WIN_ListChildren fun:WIN_DestroyWindow 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/wlanapi/tests' ../../../tools/runtest -q -P wine -T ../../.. -M wlanapi.dll -p wlanapi_test.exe.so wlanapi && touch wlanapi.ok preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 wlanapi.c:158: Tests skipped: No wireless interfaces make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/wlanapi/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 ==19002== Invalid free() / delete / delete[] / realloc() ==19002== at 0x7BC5084A: notify_realloc (heap.c:270) ==19002== by 0x7BC551A0: RtlReAllocateHeap (heap.c:1860) ==19002== by 0x4B84CDD: WS_get_local_ips (socket.c:6306) ==19002== by 0x4B84FFC: WS_gethostbyname (socket.c:6389) ==19002== by 0x4A30192: test_getsockname (sock.c:4455) ==19002== by 0x4A4E468: func_sock (sock.c:10120) ==19002== by 0x4A4F2C1: run_test (test.h:589) ==19002== by 0x4A4F6ED: main (test.h:671) ==19002== Address 0x5e32a98 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==19002== at 0x7BC50754: notify_alloc (heap.c:254) ==19002== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19002== by 0x4B84B3E: WS_get_local_ips (socket.c:6272) ==19002== by 0x4B84FFC: WS_gethostbyname (socket.c:6389) ==19002== by 0x4A30192: test_getsockname (sock.c:4455) ==19002== by 0x4A4E468: func_sock (sock.c:10120) ==19002== by 0x4A4F2C1: run_test (test.h:589) ==19002== by 0x4A4F6ED: main (test.h:671) ==19002== { 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 } ==19002== Invalid free() / delete / delete[] / realloc() ==19002== at 0x7BC5084A: notify_realloc (heap.c:270) ==19002== by 0x7BC552CE: RtlReAllocateHeap (heap.c:1896) ==19002== by 0x4B84CDD: WS_get_local_ips (socket.c:6306) ==19002== by 0x4B84FFC: WS_gethostbyname (socket.c:6389) ==19002== by 0x4A3046E: test_dns (sock.c:4500) ==19002== by 0x4A4E47C: func_sock (sock.c:10124) ==19002== by 0x4A4F2C1: run_test (test.h:589) ==19002== by 0x4A4F6ED: main (test.h:671) ==19002== Address 0x5e32ba0 is 0 bytes after a recently re-allocated block of size 0 alloc'd ==19002== at 0x7BC50754: notify_alloc (heap.c:254) ==19002== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19002== by 0x4B84B3E: WS_get_local_ips (socket.c:6272) ==19002== by 0x4B84FFC: WS_gethostbyname (socket.c:6389) ==19002== by 0x4A3046E: test_dns (sock.c:4500) ==19002== by 0x4A4E47C: func_sock (sock.c:10124) ==19002== by 0x4A4F2C1: run_test (test.h:589) ==19002== by 0x4A4F6ED: main (test.h:671) ==19002== { Memcheck:Free fun:notify_realloc fun:RtlReAllocateHeap fun:WS_get_local_ips fun:WS_gethostbyname fun:test_dns fun:func_sock fun:run_test fun:main } sock.c:8747: Tests skipped: Cannot test SIO_ADDRESS_LIST_CHANGE, interactive tests must be enabled make[1]: *** [Makefile:203: sock.ok] Error 1 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/dlls/ws2_32/tests' make: *** [Makefile:19278: 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 ==19106== 8 bytes in 1 blocks are definitely lost in loss record 63 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5A0EC9C: make_xaudio2_factory (xaudio_dll.c:2086) ==19106== by 0x5A0F148: XAudio2Create (xaudio_dll.c:2150) ==19106== by 0x482771D: func_xaudio2 (xaudio2.c:1150) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 12 bytes in 1 blocks are definitely lost in loss record 94 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5A079B9: make_xapo_factory (xapofx.c:782) ==19106== by 0x5A07A14: CreateAudioVolumeMeter (xapofx.c:795) ==19106== by 0x482718E: test_xapo_creation_modern (xaudio2.c:1053) ==19106== by 0x482744A: test_xapo_creation (xaudio2.c:1089) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 12 bytes in 1 blocks are definitely lost in loss record 95 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5A079B9: make_xapo_factory (xapofx.c:782) ==19106== by 0x5A07AA1: CreateAudioReverb (xapofx.c:809) ==19106== by 0x48272BB: test_xapo_creation_modern (xaudio2.c:1067) ==19106== by 0x482744A: test_xapo_creation (xaudio2.c:1089) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 12 bytes in 1 blocks are definitely lost in loss record 96 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5A079B9: make_xapo_factory (xapofx.c:782) ==19106== by 0x5A07A14: CreateAudioVolumeMeter (xapofx.c:795) ==19106== by 0x48236F0: test_simple_streaming (xaudio2.c:293) ==19106== by 0x48277E3: func_xaudio2 (xaudio2.c:1158) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 339 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5B8DE8F: ??? ==19106== by 0x5B8DFE5: ??? ==19106== by 0x4826963: test_xapo_creation_legacy (xaudio2.c:932) ==19106== by 0x48273D4: test_xapo_creation (xaudio2.c:1083) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 340 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5C41E8F: ??? ==19106== by 0x5C41FE5: ??? ==19106== by 0x4826963: test_xapo_creation_legacy (xaudio2.c:932) ==19106== by 0x48273E8: test_xapo_creation (xaudio2.c:1084) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 341 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5C41E8F: ??? ==19106== by 0x5C41FE5: ??? ==19106== by 0x4826963: test_xapo_creation_legacy (xaudio2.c:932) ==19106== by 0x48273FC: test_xapo_creation (xaudio2.c:1085) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 342 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5B6EE8F: ??? ==19106== by 0x5B6EFE5: ??? ==19106== by 0x4826963: test_xapo_creation_legacy (xaudio2.c:932) ==19106== by 0x4827410: test_xapo_creation (xaudio2.c:1086) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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 } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 343 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5D28E8F: ??? (in /usr/lib32/libjson-c.so.2.0.1) ==19106== by 0x5D28FE5: ??? (in /usr/lib32/libjson-c.so.2.0.1) ==19106== by 0x4826963: test_xapo_creation_legacy (xaudio2.c:932) ==19106== by 0x4827424: test_xapo_creation (xaudio2.c:1087) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:/usr/lib32/libjson-c.so.2.0.1 obj:/usr/lib32/libjson-c.so.2.0.1 fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 344 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5D28E8F: ??? (in /usr/lib32/libjson-c.so.2.0.1) ==19106== by 0x5D28FE5: ??? (in /usr/lib32/libjson-c.so.2.0.1) ==19106== by 0x4826963: test_xapo_creation_legacy (xaudio2.c:932) ==19106== by 0x4827438: test_xapo_creation (xaudio2.c:1088) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { Memcheck:Leak match-leak-kinds: definite fun:notify_alloc fun:RtlAllocateHeap obj:/usr/lib32/libjson-c.so.2.0.1 obj:/usr/lib32/libjson-c.so.2.0.1 fun:test_xapo_creation_legacy fun:test_xapo_creation fun:func_xaudio2 fun:run_test fun:main } ==19106== 48 bytes in 4 blocks are definitely lost in loss record 345 of 747 ==19106== at 0x7BC50754: notify_alloc (heap.c:254) ==19106== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19106== by 0x5A079B9: make_xapo_factory (xapofx.c:782) ==19106== by 0x5A07BDC: CreateFX (xapofx.c:835) ==19106== by 0x4826E80: test_xapo_creation_modern (xaudio2.c:1018) ==19106== by 0x482744A: test_xapo_creation (xaudio2.c:1089) ==19106== by 0x4827590: func_xaudio2 (xaudio2.c:1122) ==19106== by 0x4828645: run_test (test.h:589) ==19106== by 0x4828A70: main (test.h:671) ==19106== { 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:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:210: Tests skipped: Controller 0 is not connected xinput.c:210: Tests skipped: Controller 1 is not connected xinput.c:210: Tests skipped: Controller 2 is not connected xinput.c:210: Tests skipped: Controller 3 is not connected xinput.c:239: Tests skipped: Controller 0 is not connected xinput.c:239: Tests skipped: Controller 1 is not connected xinput.c:239: Tests skipped: Controller 2 is not connected xinput.c:239: Tests skipped: Controller 3 is not connected xinput.c:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:210: Tests skipped: Controller 0 is not connected xinput.c:210: Tests skipped: Controller 1 is not connected xinput.c:210: Tests skipped: Controller 2 is not connected xinput.c:210: Tests skipped: Controller 3 is not connected xinput.c:239: Tests skipped: Controller 0 is not connected xinput.c:239: Tests skipped: Controller 1 is not connected xinput.c:239: Tests skipped: Controller 2 is not connected xinput.c:239: Tests skipped: Controller 3 is not connected xinput.c:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:210: Tests skipped: Controller 0 is not connected xinput.c:210: Tests skipped: Controller 1 is not connected xinput.c:210: Tests skipped: Controller 2 is not connected xinput.c:210: Tests skipped: Controller 3 is not connected xinput.c:239: Tests skipped: Controller 0 is not connected xinput.c:239: Tests skipped: Controller 1 is not connected xinput.c:239: Tests skipped: Controller 2 is not connected xinput.c:239: Tests skipped: Controller 3 is not connected xinput.c:186: Tests skipped: Controller 0 is not connected xinput.c:186: Tests skipped: Controller 1 is not connected xinput.c:186: Tests skipped: Controller 2 is not connected xinput.c:186: Tests skipped: Controller 3 is not connected xinput.c:274: Tests skipped: Controller 0 is not connected xinput.c:274: Tests skipped: Controller 1 is not connected xinput.c:274: Tests skipped: Controller 2 is not connected xinput.c:274: Tests skipped: Controller 3 is not connected xinput.c:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:210: Tests skipped: Controller 0 is not connected xinput.c:210: Tests skipped: Controller 1 is not connected xinput.c:210: Tests skipped: Controller 2 is not connected xinput.c:210: Tests skipped: Controller 3 is not connected xinput.c:186: Tests skipped: Controller 0 is not connected xinput.c:186: Tests skipped: Controller 1 is not connected xinput.c:186: Tests skipped: Controller 2 is not connected xinput.c:186: Tests skipped: Controller 3 is not connected xinput.c:274: Tests skipped: Controller 0 is not connected xinput.c:274: Tests skipped: Controller 1 is not connected xinput.c:274: Tests skipped: Controller 2 is not connected xinput.c:274: Tests skipped: Controller 3 is not connected xinput.c:116: Tests skipped: Controller 0 is not connected xinput.c:116: Tests skipped: Controller 1 is not connected xinput.c:116: Tests skipped: Controller 2 is not connected xinput.c:116: Tests skipped: Controller 3 is not connected xinput.c:210: Tests skipped: Controller 0 is not connected xinput.c:210: Tests skipped: Controller 1 is not connected xinput.c:210: Tests skipped: Controller 2 is not connected xinput.c:210: Tests skipped: Controller 3 is not connected xinput.c:239: Tests skipped: Controller 0 is not connected xinput.c:239: Tests skipped: Controller 1 is not connected xinput.c:239: Tests skipped: Controller 2 is not connected xinput.c:239: 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 ==19146== 40 bytes in 1 blocks are definitely lost in loss record 118 of 283 ==19146== at 0x7BC50754: notify_alloc (heap.c:254) ==19146== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19146== by 0x4B2A08E: heap_alloc (xmllite_private.h:27) ==19146== by 0x4B2D7FB: create_writer (writer.c:1400) ==19146== by 0x4B2D9C5: CreateXmlWriterOutputWithEncodingName (writer.c:1437) ==19146== by 0x482DDBF: test_writeroutput (writer.c:278) ==19146== by 0x4833C32: func_writer (writer.c:1265) ==19146== by 0x4834A1E: run_test (test.h:589) ==19146== by 0x4834E4A: main (test.h:671) ==19146== { 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 } ==19146== 40 bytes in 1 blocks are definitely lost in loss record 119 of 283 ==19146== at 0x7BC50754: notify_alloc (heap.c:254) ==19146== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==19146== by 0x4B2A08E: heap_alloc (xmllite_private.h:27) ==19146== by 0x4B2D7FB: create_writer (writer.c:1400) ==19146== by 0x4B2DA72: CreateXmlWriterOutputWithEncodingCodePage (writer.c:1452) ==19146== by 0x482DF25: test_writeroutput (writer.c:292) ==19146== by 0x4833C32: func_writer (writer.c:1265) ==19146== by 0x4834A1E: run_test (test.h:589) ==19146== by 0x4834E4A: main (test.h:671) ==19146== { 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 ==22661== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==22661== at 0x7BC50754: notify_alloc (heap.c:254) ==22661== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22661== by 0x49D3DAE: get_long_key (reg.c:858) ==22661== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22661== by 0x49D4147: wmain (reg.c:975) ==22661== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22661== by 0x7B46AD1F: ??? (process.c:1056) ==22661== by 0x7B46AE61: start_process (process.c:1108) ==22661== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22661== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22661== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22661== by 0x7BC5F053: start_process (loader.c:3047) ==22661== by 0x404019C: ??? (port.c:78) ==22661== { 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 ==22682== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22682== at 0x7BC50754: notify_alloc (heap.c:254) ==22682== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22682== by 0x49D3DAE: get_long_key (reg.c:858) ==22682== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22682== by 0x49D4147: wmain (reg.c:975) ==22682== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22682== by 0x7B46AD1F: ??? (process.c:1056) ==22682== by 0x7B46AE61: start_process (process.c:1108) ==22682== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22682== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22682== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22682== by 0x7BC5F053: start_process (loader.c:3047) ==22682== by 0x404019C: ??? (port.c:78) ==22682== { 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 ==22761== 102 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==22761== at 0x7BC50754: notify_alloc (heap.c:254) ==22761== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22761== by 0x49D3DAE: get_long_key (reg.c:858) ==22761== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22761== by 0x49D4147: wmain (reg.c:975) ==22761== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22761== by 0x7B46AD1F: ??? (process.c:1056) ==22761== by 0x7B46AE61: start_process (process.c:1108) ==22761== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22761== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22761== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22761== by 0x7BC5F053: start_process (loader.c:3047) ==22761== by 0x404019C: ??? (port.c:78) ==22761== { 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 ==22785== 100 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==22785== at 0x7BC50754: notify_alloc (heap.c:254) ==22785== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22785== by 0x49D3DAE: get_long_key (reg.c:858) ==22785== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22785== by 0x49D4147: wmain (reg.c:975) ==22785== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22785== by 0x7B46AD1F: ??? (process.c:1056) ==22785== by 0x7B46AE61: start_process (process.c:1108) ==22785== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22785== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22785== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22785== by 0x7BC5F053: start_process (loader.c:3047) ==22785== by 0x404019C: ??? (port.c:78) ==22785== { 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 ==22788== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22788== at 0x7BC50754: notify_alloc (heap.c:254) ==22788== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22788== by 0x49D3DAE: get_long_key (reg.c:858) ==22788== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22788== by 0x49D4147: wmain (reg.c:975) ==22788== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22788== by 0x7B46AD1F: ??? (process.c:1056) ==22788== by 0x7B46AE61: start_process (process.c:1108) ==22788== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22788== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22788== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22788== by 0x7BC5F053: start_process (loader.c:3047) ==22788== by 0x404019C: ??? (port.c:78) ==22788== { 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 ==22794== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22794== at 0x7BC50754: notify_alloc (heap.c:254) ==22794== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22794== by 0x49D3DAE: get_long_key (reg.c:858) ==22794== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22794== by 0x49D4147: wmain (reg.c:975) ==22794== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22794== by 0x7B46AD1F: ??? (process.c:1056) ==22794== by 0x7B46AE61: start_process (process.c:1108) ==22794== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22794== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22794== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22794== by 0x7BC5F053: start_process (loader.c:3047) ==22794== by 0x404019C: ??? (port.c:78) ==22794== { 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 ==22814== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22814== at 0x7BC50754: notify_alloc (heap.c:254) ==22814== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22814== by 0x49D3DAE: get_long_key (reg.c:858) ==22814== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22814== by 0x49D4147: wmain (reg.c:975) ==22814== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22814== by 0x7B46AD1F: ??? (process.c:1056) ==22814== by 0x7B46AE61: start_process (process.c:1108) ==22814== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22814== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22814== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22814== by 0x7BC5F053: start_process (loader.c:3047) ==22814== by 0x404019C: ??? (port.c:78) ==22814== { 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 ==22819== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==22819== at 0x7BC50754: notify_alloc (heap.c:254) ==22819== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22819== by 0x49D3DAE: get_long_key (reg.c:858) ==22819== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22819== by 0x49D4147: wmain (reg.c:975) ==22819== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22819== by 0x7B46AD1F: ??? (process.c:1056) ==22819== by 0x7B46AE61: start_process (process.c:1108) ==22819== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22819== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22819== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22819== by 0x7BC5F053: start_process (loader.c:3047) ==22819== by 0x404019C: ??? (port.c:78) ==22819== { 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 ==22859== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22859== at 0x7BC50754: notify_alloc (heap.c:254) ==22859== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22859== by 0x49D3DAE: get_long_key (reg.c:858) ==22859== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22859== by 0x49D4147: wmain (reg.c:975) ==22859== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22859== by 0x7B46AD1F: ??? (process.c:1056) ==22859== by 0x7B46AE61: start_process (process.c:1108) ==22859== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22859== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22859== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22859== by 0x7BC5F053: start_process (loader.c:3047) ==22859== by 0x404019C: ??? (port.c:78) ==22859== { 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 ==22885== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==22885== at 0x7BC50754: notify_alloc (heap.c:254) ==22885== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22885== by 0x49D3DAE: get_long_key (reg.c:858) ==22885== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22885== by 0x49D4147: wmain (reg.c:975) ==22885== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22885== by 0x7B46AD1F: ??? (process.c:1056) ==22885== by 0x7B46AE61: start_process (process.c:1108) ==22885== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22885== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22885== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22885== by 0x7BC5F053: start_process (loader.c:3047) ==22885== by 0x404019C: ??? (port.c:78) ==22885== { 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 ==22887== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22887== at 0x7BC50754: notify_alloc (heap.c:254) ==22887== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22887== by 0x49D3DAE: get_long_key (reg.c:858) ==22887== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22887== by 0x49D4147: wmain (reg.c:975) ==22887== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22887== by 0x7B46AD1F: ??? (process.c:1056) ==22887== by 0x7B46AE61: start_process (process.c:1108) ==22887== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22887== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22887== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22887== by 0x7BC5F053: start_process (loader.c:3047) ==22887== by 0x404019C: ??? (port.c:78) ==22887== { 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 ==22924== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22924== at 0x7BC50754: notify_alloc (heap.c:254) ==22924== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22924== by 0x49D3DAE: get_long_key (reg.c:858) ==22924== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22924== by 0x49D4147: wmain (reg.c:975) ==22924== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22924== by 0x7B46AD1F: ??? (process.c:1056) ==22924== by 0x7B46AE61: start_process (process.c:1108) ==22924== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22924== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22924== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22924== by 0x7BC5F053: start_process (loader.c:3047) ==22924== by 0x404019C: ??? (port.c:78) ==22924== { 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 ==22954== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22954== at 0x7BC50754: notify_alloc (heap.c:254) ==22954== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22954== by 0x49D3DAE: get_long_key (reg.c:858) ==22954== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22954== by 0x49D4147: wmain (reg.c:975) ==22954== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22954== by 0x7B46AD1F: ??? (process.c:1056) ==22954== by 0x7B46AE61: start_process (process.c:1108) ==22954== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22954== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22954== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22954== by 0x7BC5F053: start_process (loader.c:3047) ==22954== by 0x404019C: ??? (port.c:78) ==22954== { 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 ==22962== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22962== at 0x7BC50754: notify_alloc (heap.c:254) ==22962== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22962== by 0x49D3DAE: get_long_key (reg.c:858) ==22962== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22962== by 0x49D4147: wmain (reg.c:975) ==22962== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22962== by 0x7B46AD1F: ??? (process.c:1056) ==22962== by 0x7B46AE61: start_process (process.c:1108) ==22962== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22962== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22962== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22962== by 0x7BC5F053: start_process (loader.c:3047) ==22962== by 0x404019C: ??? (port.c:78) ==22962== { 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 ==22981== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==22981== at 0x7BC50754: notify_alloc (heap.c:254) ==22981== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22981== by 0x49D3DAE: get_long_key (reg.c:858) ==22981== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22981== by 0x49D4147: wmain (reg.c:975) ==22981== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22981== by 0x7B46AD1F: ??? (process.c:1056) ==22981== by 0x7B46AE61: start_process (process.c:1108) ==22981== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22981== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22981== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22981== by 0x7BC5F053: start_process (loader.c:3047) ==22981== by 0x404019C: ??? (port.c:78) ==22981== { 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 ==22983== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22983== at 0x7BC50754: notify_alloc (heap.c:254) ==22983== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22983== by 0x49D3DAE: get_long_key (reg.c:858) ==22983== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22983== by 0x49D4147: wmain (reg.c:975) ==22983== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22983== by 0x7B46AD1F: ??? (process.c:1056) ==22983== by 0x7B46AE61: start_process (process.c:1108) ==22983== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22983== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22983== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22983== by 0x7BC5F053: start_process (loader.c:3047) ==22983== by 0x404019C: ??? (port.c:78) ==22983== { 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 ==22987== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22987== at 0x7BC50754: notify_alloc (heap.c:254) ==22987== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22987== by 0x49D3DAE: get_long_key (reg.c:858) ==22987== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22987== by 0x49D4147: wmain (reg.c:975) ==22987== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22987== by 0x7B46AD1F: ??? (process.c:1056) ==22987== by 0x7B46AE61: start_process (process.c:1108) ==22987== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22987== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22987== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22987== by 0x7BC5F053: start_process (loader.c:3047) ==22987== by 0x404019C: ??? (port.c:78) ==22987== { 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 ==22990== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22990== at 0x7BC50754: notify_alloc (heap.c:254) ==22990== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22990== by 0x49D3DAE: get_long_key (reg.c:858) ==22990== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22990== by 0x49D4147: wmain (reg.c:975) ==22990== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22990== by 0x7B46AD1F: ??? (process.c:1056) ==22990== by 0x7B46AE61: start_process (process.c:1108) ==22990== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22990== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22990== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22990== by 0x7BC5F053: start_process (loader.c:3047) ==22990== by 0x404019C: ??? (port.c:78) ==22990== { 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 ==22992== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22992== at 0x7BC50754: notify_alloc (heap.c:254) ==22992== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22992== by 0x49D3DAE: get_long_key (reg.c:858) ==22992== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22992== by 0x49D4147: wmain (reg.c:975) ==22992== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22992== by 0x7B46AD1F: ??? (process.c:1056) ==22992== by 0x7B46AE61: start_process (process.c:1108) ==22992== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22992== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22992== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22992== by 0x7BC5F053: start_process (loader.c:3047) ==22992== by 0x404019C: ??? (port.c:78) ==22992== { 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 ==22996== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22996== at 0x7BC50754: notify_alloc (heap.c:254) ==22996== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22996== by 0x49D3DAE: get_long_key (reg.c:858) ==22996== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22996== by 0x49D4147: wmain (reg.c:975) ==22996== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22996== by 0x7B46AD1F: ??? (process.c:1056) ==22996== by 0x7B46AE61: start_process (process.c:1108) ==22996== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22996== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22996== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22996== by 0x7BC5F053: start_process (loader.c:3047) ==22996== by 0x404019C: ??? (port.c:78) ==22996== { 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 ==22998== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==22998== at 0x7BC50754: notify_alloc (heap.c:254) ==22998== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==22998== by 0x49D3DAE: get_long_key (reg.c:858) ==22998== by 0x49D3E8C: parse_registry_key (reg.c:878) ==22998== by 0x49D4147: wmain (reg.c:975) ==22998== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==22998== by 0x7B46AD1F: ??? (process.c:1056) ==22998== by 0x7B46AE61: start_process (process.c:1108) ==22998== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==22998== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==22998== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==22998== by 0x7BC5F053: start_process (loader.c:3047) ==22998== by 0x404019C: ??? (port.c:78) ==22998== { 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 ==23002== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23002== at 0x7BC50754: notify_alloc (heap.c:254) ==23002== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23002== by 0x49D3DAE: get_long_key (reg.c:858) ==23002== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23002== by 0x49D4147: wmain (reg.c:975) ==23002== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23002== by 0x7B46AD1F: ??? (process.c:1056) ==23002== by 0x7B46AE61: start_process (process.c:1108) ==23002== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23002== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23002== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23002== by 0x7BC5F053: start_process (loader.c:3047) ==23002== by 0x404019C: ??? (port.c:78) ==23002== { 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 ==23005== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23005== at 0x7BC50754: notify_alloc (heap.c:254) ==23005== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23005== by 0x49D3DAE: get_long_key (reg.c:858) ==23005== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23005== by 0x49D4147: wmain (reg.c:975) ==23005== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23005== by 0x7B46AD1F: ??? (process.c:1056) ==23005== by 0x7B46AE61: start_process (process.c:1108) ==23005== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23005== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23005== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23005== by 0x7BC5F053: start_process (loader.c:3047) ==23005== by 0x404019C: ??? (port.c:78) ==23005== { 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 ==23008== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23008== at 0x7BC50754: notify_alloc (heap.c:254) ==23008== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23008== by 0x49D3DAE: get_long_key (reg.c:858) ==23008== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23008== by 0x49D4147: wmain (reg.c:975) ==23008== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23008== by 0x7B46AD1F: ??? (process.c:1056) ==23008== by 0x7B46AE61: start_process (process.c:1108) ==23008== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23008== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23008== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23008== by 0x7BC5F053: start_process (loader.c:3047) ==23008== by 0x404019C: ??? (port.c:78) ==23008== { 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 ==23013== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23013== at 0x7BC50754: notify_alloc (heap.c:254) ==23013== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23013== by 0x49D3DAE: get_long_key (reg.c:858) ==23013== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23013== by 0x49D4147: wmain (reg.c:975) ==23013== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23013== by 0x7B46AD1F: ??? (process.c:1056) ==23013== by 0x7B46AE61: start_process (process.c:1108) ==23013== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23013== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23013== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23013== by 0x7BC5F053: start_process (loader.c:3047) ==23013== by 0x404019C: ??? (port.c:78) ==23013== { 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 ==23015== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23015== at 0x7BC50754: notify_alloc (heap.c:254) ==23015== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23015== by 0x49D3DAE: get_long_key (reg.c:858) ==23015== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23015== by 0x49D4147: wmain (reg.c:975) ==23015== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23015== by 0x7B46AD1F: ??? (process.c:1056) ==23015== by 0x7B46AE61: start_process (process.c:1108) ==23015== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23015== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23015== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23015== by 0x7BC5F053: start_process (loader.c:3047) ==23015== by 0x404019C: ??? (port.c:78) ==23015== { 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 ==23018== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23018== at 0x7BC50754: notify_alloc (heap.c:254) ==23018== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23018== by 0x49D3DAE: get_long_key (reg.c:858) ==23018== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23018== by 0x49D4147: wmain (reg.c:975) ==23018== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23018== by 0x7B46AD1F: ??? (process.c:1056) ==23018== by 0x7B46AE61: start_process (process.c:1108) ==23018== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23018== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23018== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23018== by 0x7BC5F053: start_process (loader.c:3047) ==23018== by 0x404019C: ??? (port.c:78) ==23018== { 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 ==23023== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23023== at 0x7BC50754: notify_alloc (heap.c:254) ==23023== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23023== by 0x49D3DAE: get_long_key (reg.c:858) ==23023== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23023== by 0x49D4147: wmain (reg.c:975) ==23023== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23023== by 0x7B46AD1F: ??? (process.c:1056) ==23023== by 0x7B46AE61: start_process (process.c:1108) ==23023== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23023== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23023== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23023== by 0x7BC5F053: start_process (loader.c:3047) ==23023== by 0x404019C: ??? (port.c:78) ==23023== { 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 ==23026== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23026== at 0x7BC50754: notify_alloc (heap.c:254) ==23026== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23026== by 0x49D3DAE: get_long_key (reg.c:858) ==23026== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23026== by 0x49D4147: wmain (reg.c:975) ==23026== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23026== by 0x7B46AD1F: ??? (process.c:1056) ==23026== by 0x7B46AE61: start_process (process.c:1108) ==23026== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23026== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23026== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23026== by 0x7BC5F053: start_process (loader.c:3047) ==23026== by 0x404019C: ??? (port.c:78) ==23026== { 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 ==23034== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23034== at 0x7BC50754: notify_alloc (heap.c:254) ==23034== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23034== by 0x49D3DAE: get_long_key (reg.c:858) ==23034== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23034== by 0x49D4147: wmain (reg.c:975) ==23034== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23034== by 0x7B46AD1F: ??? (process.c:1056) ==23034== by 0x7B46AE61: start_process (process.c:1108) ==23034== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23034== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23034== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23034== by 0x7BC5F053: start_process (loader.c:3047) ==23034== by 0x404019C: ??? (port.c:78) ==23034== { 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 ==23037== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23037== at 0x7BC50754: notify_alloc (heap.c:254) ==23037== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23037== by 0x49D3DAE: get_long_key (reg.c:858) ==23037== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23037== by 0x49D4147: wmain (reg.c:975) ==23037== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23037== by 0x7B46AD1F: ??? (process.c:1056) ==23037== by 0x7B46AE61: start_process (process.c:1108) ==23037== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23037== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23037== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23037== by 0x7BC5F053: start_process (loader.c:3047) ==23037== by 0x404019C: ??? (port.c:78) ==23037== { 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 ==23039== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23039== at 0x7BC50754: notify_alloc (heap.c:254) ==23039== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23039== by 0x49D3DAE: get_long_key (reg.c:858) ==23039== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23039== by 0x49D4147: wmain (reg.c:975) ==23039== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23039== by 0x7B46AD1F: ??? (process.c:1056) ==23039== by 0x7B46AE61: start_process (process.c:1108) ==23039== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23039== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23039== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23039== by 0x7BC5F053: start_process (loader.c:3047) ==23039== by 0x404019C: ??? (port.c:78) ==23039== { 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 ==23043== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23043== at 0x7BC50754: notify_alloc (heap.c:254) ==23043== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23043== by 0x49D3DAE: get_long_key (reg.c:858) ==23043== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23043== by 0x49D4147: wmain (reg.c:975) ==23043== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23043== by 0x7B46AD1F: ??? (process.c:1056) ==23043== by 0x7B46AE61: start_process (process.c:1108) ==23043== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23043== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23043== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23043== by 0x7BC5F053: start_process (loader.c:3047) ==23043== by 0x404019C: ??? (port.c:78) ==23043== { 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 ==23045== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23045== at 0x7BC50754: notify_alloc (heap.c:254) ==23045== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23045== by 0x49D3DAE: get_long_key (reg.c:858) ==23045== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23045== by 0x49D4147: wmain (reg.c:975) ==23045== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23045== by 0x7B46AD1F: ??? (process.c:1056) ==23045== by 0x7B46AE61: start_process (process.c:1108) ==23045== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23045== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23045== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23045== by 0x7BC5F053: start_process (loader.c:3047) ==23045== by 0x404019C: ??? (port.c:78) ==23045== { 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 ==23047== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23047== at 0x7BC50754: notify_alloc (heap.c:254) ==23047== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23047== by 0x49D3DAE: get_long_key (reg.c:858) ==23047== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23047== by 0x49D4147: wmain (reg.c:975) ==23047== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23047== by 0x7B46AD1F: ??? (process.c:1056) ==23047== by 0x7B46AE61: start_process (process.c:1108) ==23047== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23047== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23047== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23047== by 0x7BC5F053: start_process (loader.c:3047) ==23047== by 0x404019C: ??? (port.c:78) ==23047== { 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 ==23052== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23052== at 0x7BC50754: notify_alloc (heap.c:254) ==23052== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23052== by 0x49D3DAE: get_long_key (reg.c:858) ==23052== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23052== by 0x49D4147: wmain (reg.c:975) ==23052== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23052== by 0x7B46AD1F: ??? (process.c:1056) ==23052== by 0x7B46AE61: start_process (process.c:1108) ==23052== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23052== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23052== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23052== by 0x7BC5F053: start_process (loader.c:3047) ==23052== by 0x404019C: ??? (port.c:78) ==23052== { 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 ==23055== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23055== at 0x7BC50754: notify_alloc (heap.c:254) ==23055== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23055== by 0x49D3DAE: get_long_key (reg.c:858) ==23055== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23055== by 0x49D4147: wmain (reg.c:975) ==23055== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23055== by 0x7B46AD1F: ??? (process.c:1056) ==23055== by 0x7B46AE61: start_process (process.c:1108) ==23055== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23055== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23055== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23055== by 0x7BC5F053: start_process (loader.c:3047) ==23055== by 0x404019C: ??? (port.c:78) ==23055== { 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 ==23059== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23059== at 0x7BC50754: notify_alloc (heap.c:254) ==23059== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23059== by 0x49D3DAE: get_long_key (reg.c:858) ==23059== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23059== by 0x49D4147: wmain (reg.c:975) ==23059== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23059== by 0x7B46AD1F: ??? (process.c:1056) ==23059== by 0x7B46AE61: start_process (process.c:1108) ==23059== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23059== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23059== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23059== by 0x7BC5F053: start_process (loader.c:3047) ==23059== by 0x404019C: ??? (port.c:78) ==23059== { 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 ==23064== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23064== at 0x7BC50754: notify_alloc (heap.c:254) ==23064== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23064== by 0x49D3DAE: get_long_key (reg.c:858) ==23064== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23064== by 0x49D4147: wmain (reg.c:975) ==23064== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23064== by 0x7B46AD1F: ??? (process.c:1056) ==23064== by 0x7B46AE61: start_process (process.c:1108) ==23064== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23064== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23064== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23064== by 0x7BC5F053: start_process (loader.c:3047) ==23064== by 0x404019C: ??? (port.c:78) ==23064== { 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 ==23069== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23069== at 0x7BC50754: notify_alloc (heap.c:254) ==23069== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23069== by 0x49D3DAE: get_long_key (reg.c:858) ==23069== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23069== by 0x49D4147: wmain (reg.c:975) ==23069== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23069== by 0x7B46AD1F: ??? (process.c:1056) ==23069== by 0x7B46AE61: start_process (process.c:1108) ==23069== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23069== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23069== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23069== by 0x7BC5F053: start_process (loader.c:3047) ==23069== by 0x404019C: ??? (port.c:78) ==23069== { 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 ==23073== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23073== at 0x7BC50754: notify_alloc (heap.c:254) ==23073== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23073== by 0x49D3DAE: get_long_key (reg.c:858) ==23073== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23073== by 0x49D4147: wmain (reg.c:975) ==23073== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23073== by 0x7B46AD1F: ??? (process.c:1056) ==23073== by 0x7B46AE61: start_process (process.c:1108) ==23073== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23073== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23073== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23073== by 0x7BC5F053: start_process (loader.c:3047) ==23073== by 0x404019C: ??? (port.c:78) ==23073== { 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 ==23086== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23086== at 0x7BC50754: notify_alloc (heap.c:254) ==23086== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23086== by 0x49D3DAE: get_long_key (reg.c:858) ==23086== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23086== by 0x49D4147: wmain (reg.c:975) ==23086== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23086== by 0x7B46AD1F: ??? (process.c:1056) ==23086== by 0x7B46AE61: start_process (process.c:1108) ==23086== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23086== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23086== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23086== by 0x7BC5F053: start_process (loader.c:3047) ==23086== by 0x404019C: ??? (port.c:78) ==23086== { 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 ==23092== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23092== at 0x7BC50754: notify_alloc (heap.c:254) ==23092== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23092== by 0x49D3DAE: get_long_key (reg.c:858) ==23092== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23092== by 0x49D4147: wmain (reg.c:975) ==23092== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23092== by 0x7B46AD1F: ??? (process.c:1056) ==23092== by 0x7B46AE61: start_process (process.c:1108) ==23092== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23092== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23092== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23092== by 0x7BC5F053: start_process (loader.c:3047) ==23092== by 0x404019C: ??? (port.c:78) ==23092== { 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 ==23095== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23095== at 0x7BC50754: notify_alloc (heap.c:254) ==23095== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23095== by 0x49D3DAE: get_long_key (reg.c:858) ==23095== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23095== by 0x49D4147: wmain (reg.c:975) ==23095== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23095== by 0x7B46AD1F: ??? (process.c:1056) ==23095== by 0x7B46AE61: start_process (process.c:1108) ==23095== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23095== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23095== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23095== by 0x7BC5F053: start_process (loader.c:3047) ==23095== by 0x404019C: ??? (port.c:78) ==23095== { 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 ==23097== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23097== at 0x7BC50754: notify_alloc (heap.c:254) ==23097== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23097== by 0x49D3DAE: get_long_key (reg.c:858) ==23097== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23097== by 0x49D4147: wmain (reg.c:975) ==23097== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23097== by 0x7B46AD1F: ??? (process.c:1056) ==23097== by 0x7B46AE61: start_process (process.c:1108) ==23097== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23097== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23097== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23097== by 0x7BC5F053: start_process (loader.c:3047) ==23097== by 0x404019C: ??? (port.c:78) ==23097== { 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 ==23101== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23101== at 0x7BC50754: notify_alloc (heap.c:254) ==23101== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23101== by 0x49D3DAE: get_long_key (reg.c:858) ==23101== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23101== by 0x49D4147: wmain (reg.c:975) ==23101== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23101== by 0x7B46AD1F: ??? (process.c:1056) ==23101== by 0x7B46AE61: start_process (process.c:1108) ==23101== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23101== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23101== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23101== by 0x7BC5F053: start_process (loader.c:3047) ==23101== by 0x404019C: ??? (port.c:78) ==23101== { 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 ==23103== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23103== at 0x7BC50754: notify_alloc (heap.c:254) ==23103== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23103== by 0x49D3DAE: get_long_key (reg.c:858) ==23103== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23103== by 0x49D4147: wmain (reg.c:975) ==23103== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23103== by 0x7B46AD1F: ??? (process.c:1056) ==23103== by 0x7B46AE61: start_process (process.c:1108) ==23103== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23103== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23103== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23103== by 0x7BC5F053: start_process (loader.c:3047) ==23103== by 0x404019C: ??? (port.c:78) ==23103== { 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 ==23427== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23427== at 0x7BC50754: notify_alloc (heap.c:254) ==23427== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23427== by 0x49D3DAE: get_long_key (reg.c:858) ==23427== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23427== by 0x49D4147: wmain (reg.c:975) ==23427== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23427== by 0x7B46AD1F: ??? (process.c:1056) ==23427== by 0x7B46AE61: start_process (process.c:1108) ==23427== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23427== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23427== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23427== by 0x7BC5F053: start_process (loader.c:3047) ==23427== by 0x404019C: ??? (port.c:78) ==23427== { 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 ==23581== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23581== at 0x7BC50754: notify_alloc (heap.c:254) ==23581== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23581== by 0x49D3DAE: get_long_key (reg.c:858) ==23581== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23581== by 0x49D4147: wmain (reg.c:975) ==23581== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23581== by 0x7B46AD1F: ??? (process.c:1056) ==23581== by 0x7B46AE61: start_process (process.c:1108) ==23581== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23581== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23581== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23581== by 0x7BC5F053: start_process (loader.c:3047) ==23581== by 0x404019C: ??? (port.c:78) ==23581== { 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 ==23926== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23926== at 0x7BC50754: notify_alloc (heap.c:254) ==23926== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23926== by 0x49D3DAE: get_long_key (reg.c:858) ==23926== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23926== by 0x49D4147: wmain (reg.c:975) ==23926== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23926== by 0x7B46AD1F: ??? (process.c:1056) ==23926== by 0x7B46AE61: start_process (process.c:1108) ==23926== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23926== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23926== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23926== by 0x7BC5F053: start_process (loader.c:3047) ==23926== by 0x404019C: ??? (port.c:78) ==23926== { 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 ==23930== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23930== at 0x7BC50754: notify_alloc (heap.c:254) ==23930== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23930== by 0x49D3DAE: get_long_key (reg.c:858) ==23930== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23930== by 0x49D4147: wmain (reg.c:975) ==23930== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23930== by 0x7B46AD1F: ??? (process.c:1056) ==23930== by 0x7B46AE61: start_process (process.c:1108) ==23930== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23930== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23930== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23930== by 0x7BC5F053: start_process (loader.c:3047) ==23930== by 0x404019C: ??? (port.c:78) ==23930== { 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 ==23938== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23938== at 0x7BC50754: notify_alloc (heap.c:254) ==23938== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23938== by 0x49D3DAE: get_long_key (reg.c:858) ==23938== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23938== by 0x49D4147: wmain (reg.c:975) ==23938== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23938== by 0x7B46AD1F: ??? (process.c:1056) ==23938== by 0x7B46AE61: start_process (process.c:1108) ==23938== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23938== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23938== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23938== by 0x7BC5F053: start_process (loader.c:3047) ==23938== by 0x404019C: ??? (port.c:78) ==23938== { 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 ==23941== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==23941== at 0x7BC50754: notify_alloc (heap.c:254) ==23941== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==23941== by 0x49D3DAE: get_long_key (reg.c:858) ==23941== by 0x49D3E8C: parse_registry_key (reg.c:878) ==23941== by 0x49D4147: wmain (reg.c:975) ==23941== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==23941== by 0x7B46AD1F: ??? (process.c:1056) ==23941== by 0x7B46AE61: start_process (process.c:1108) ==23941== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==23941== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==23941== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==23941== by 0x7BC5F053: start_process (loader.c:3047) ==23941== by 0x404019C: ??? (port.c:78) ==23941== { 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 ==24007== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24007== at 0x7BC50754: notify_alloc (heap.c:254) ==24007== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24007== by 0x49D3DAE: get_long_key (reg.c:858) ==24007== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24007== by 0x49D4147: wmain (reg.c:975) ==24007== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24007== by 0x7B46AD1F: ??? (process.c:1056) ==24007== by 0x7B46AE61: start_process (process.c:1108) ==24007== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24007== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24007== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24007== by 0x7BC5F053: start_process (loader.c:3047) ==24007== by 0x404019C: ??? (port.c:78) ==24007== { 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 ==24010== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24010== at 0x7BC50754: notify_alloc (heap.c:254) ==24010== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24010== by 0x49D3DAE: get_long_key (reg.c:858) ==24010== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24010== by 0x49D4147: wmain (reg.c:975) ==24010== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24010== by 0x7B46AD1F: ??? (process.c:1056) ==24010== by 0x7B46AE61: start_process (process.c:1108) ==24010== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24010== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24010== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24010== by 0x7BC5F053: start_process (loader.c:3047) ==24010== by 0x404019C: ??? (port.c:78) ==24010== { 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 ==24012== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24012== at 0x7BC50754: notify_alloc (heap.c:254) ==24012== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24012== by 0x49D3DAE: get_long_key (reg.c:858) ==24012== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24012== by 0x49D4147: wmain (reg.c:975) ==24012== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24012== by 0x7B46AD1F: ??? (process.c:1056) ==24012== by 0x7B46AE61: start_process (process.c:1108) ==24012== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24012== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24012== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24012== by 0x7BC5F053: start_process (loader.c:3047) ==24012== by 0x404019C: ??? (port.c:78) ==24012== { 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 ==24016== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24016== at 0x7BC50754: notify_alloc (heap.c:254) ==24016== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24016== by 0x49D3DAE: get_long_key (reg.c:858) ==24016== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24016== by 0x49D4147: wmain (reg.c:975) ==24016== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24016== by 0x7B46AD1F: ??? (process.c:1056) ==24016== by 0x7B46AE61: start_process (process.c:1108) ==24016== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24016== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24016== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24016== by 0x7BC5F053: start_process (loader.c:3047) ==24016== by 0x404019C: ??? (port.c:78) ==24016== { 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 ==24020== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24020== at 0x7BC50754: notify_alloc (heap.c:254) ==24020== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24020== by 0x49D3DAE: get_long_key (reg.c:858) ==24020== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24020== by 0x49D4147: wmain (reg.c:975) ==24020== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24020== by 0x7B46AD1F: ??? (process.c:1056) ==24020== by 0x7B46AE61: start_process (process.c:1108) ==24020== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24020== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24020== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24020== by 0x7BC5F053: start_process (loader.c:3047) ==24020== by 0x404019C: ??? (port.c:78) ==24020== { 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 ==24024== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24024== at 0x7BC50754: notify_alloc (heap.c:254) ==24024== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24024== by 0x49D3DAE: get_long_key (reg.c:858) ==24024== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24024== by 0x49D4147: wmain (reg.c:975) ==24024== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24024== by 0x7B46AD1F: ??? (process.c:1056) ==24024== by 0x7B46AE61: start_process (process.c:1108) ==24024== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24024== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24024== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24024== by 0x7BC5F053: start_process (loader.c:3047) ==24024== by 0x404019C: ??? (port.c:78) ==24024== { 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 ==24028== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24028== at 0x7BC50754: notify_alloc (heap.c:254) ==24028== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24028== by 0x49D3DAE: get_long_key (reg.c:858) ==24028== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24028== by 0x49D4147: wmain (reg.c:975) ==24028== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24028== by 0x7B46AD1F: ??? (process.c:1056) ==24028== by 0x7B46AE61: start_process (process.c:1108) ==24028== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24028== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24028== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24028== by 0x7BC5F053: start_process (loader.c:3047) ==24028== by 0x404019C: ??? (port.c:78) ==24028== { 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 ==24030== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24030== at 0x7BC50754: notify_alloc (heap.c:254) ==24030== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24030== by 0x49D3DAE: get_long_key (reg.c:858) ==24030== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24030== by 0x49D4147: wmain (reg.c:975) ==24030== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24030== by 0x7B46AD1F: ??? (process.c:1056) ==24030== by 0x7B46AE61: start_process (process.c:1108) ==24030== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24030== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24030== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24030== by 0x7BC5F053: start_process (loader.c:3047) ==24030== by 0x404019C: ??? (port.c:78) ==24030== { 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 ==24034== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24034== at 0x7BC50754: notify_alloc (heap.c:254) ==24034== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24034== by 0x49D3DAE: get_long_key (reg.c:858) ==24034== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24034== by 0x49D4147: wmain (reg.c:975) ==24034== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24034== by 0x7B46AD1F: ??? (process.c:1056) ==24034== by 0x7B46AE61: start_process (process.c:1108) ==24034== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24034== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24034== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24034== by 0x7BC5F053: start_process (loader.c:3047) ==24034== by 0x404019C: ??? (port.c:78) ==24034== { 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 ==24037== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24037== at 0x7BC50754: notify_alloc (heap.c:254) ==24037== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24037== by 0x49D3DAE: get_long_key (reg.c:858) ==24037== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24037== by 0x49D4147: wmain (reg.c:975) ==24037== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24037== by 0x7B46AD1F: ??? (process.c:1056) ==24037== by 0x7B46AE61: start_process (process.c:1108) ==24037== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24037== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24037== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24037== by 0x7BC5F053: start_process (loader.c:3047) ==24037== by 0x404019C: ??? (port.c:78) ==24037== { 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 ==24040== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24040== at 0x7BC50754: notify_alloc (heap.c:254) ==24040== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24040== by 0x49D3DAE: get_long_key (reg.c:858) ==24040== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24040== by 0x49D4147: wmain (reg.c:975) ==24040== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24040== by 0x7B46AD1F: ??? (process.c:1056) ==24040== by 0x7B46AE61: start_process (process.c:1108) ==24040== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24040== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24040== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24040== by 0x7BC5F053: start_process (loader.c:3047) ==24040== by 0x404019C: ??? (port.c:78) ==24040== { 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 ==24045== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24045== at 0x7BC50754: notify_alloc (heap.c:254) ==24045== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24045== by 0x49D3DAE: get_long_key (reg.c:858) ==24045== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24045== by 0x49D4147: wmain (reg.c:975) ==24045== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24045== by 0x7B46AD1F: ??? (process.c:1056) ==24045== by 0x7B46AE61: start_process (process.c:1108) ==24045== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24045== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24045== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24045== by 0x7BC5F053: start_process (loader.c:3047) ==24045== by 0x404019C: ??? (port.c:78) ==24045== { 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 ==24052== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24052== at 0x7BC50754: notify_alloc (heap.c:254) ==24052== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24052== by 0x49D3DAE: get_long_key (reg.c:858) ==24052== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24052== by 0x49D4147: wmain (reg.c:975) ==24052== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24052== by 0x7B46AD1F: ??? (process.c:1056) ==24052== by 0x7B46AE61: start_process (process.c:1108) ==24052== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24052== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24052== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24052== by 0x7BC5F053: start_process (loader.c:3047) ==24052== by 0x404019C: ??? (port.c:78) ==24052== { 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 ==24057== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24057== at 0x7BC50754: notify_alloc (heap.c:254) ==24057== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24057== by 0x49D3DAE: get_long_key (reg.c:858) ==24057== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24057== by 0x49D4147: wmain (reg.c:975) ==24057== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24057== by 0x7B46AD1F: ??? (process.c:1056) ==24057== by 0x7B46AE61: start_process (process.c:1108) ==24057== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24057== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24057== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24057== by 0x7BC5F053: start_process (loader.c:3047) ==24057== by 0x404019C: ??? (port.c:78) ==24057== { 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 ==24076== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24076== at 0x7BC50754: notify_alloc (heap.c:254) ==24076== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24076== by 0x49D3DAE: get_long_key (reg.c:858) ==24076== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24076== by 0x49D4147: wmain (reg.c:975) ==24076== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24076== by 0x7B46AD1F: ??? (process.c:1056) ==24076== by 0x7B46AE61: start_process (process.c:1108) ==24076== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24076== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24076== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24076== by 0x7BC5F053: start_process (loader.c:3047) ==24076== by 0x404019C: ??? (port.c:78) ==24076== { 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 ==24078== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24078== at 0x7BC50754: notify_alloc (heap.c:254) ==24078== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24078== by 0x49D3DAE: get_long_key (reg.c:858) ==24078== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24078== by 0x49D4147: wmain (reg.c:975) ==24078== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24078== by 0x7B46AD1F: ??? (process.c:1056) ==24078== by 0x7B46AE61: start_process (process.c:1108) ==24078== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24078== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24078== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24078== by 0x7BC5F053: start_process (loader.c:3047) ==24078== by 0x404019C: ??? (port.c:78) ==24078== { 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 ==24082== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24082== at 0x7BC50754: notify_alloc (heap.c:254) ==24082== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24082== by 0x49D3DAE: get_long_key (reg.c:858) ==24082== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24082== by 0x49D4147: wmain (reg.c:975) ==24082== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24082== by 0x7B46AD1F: ??? (process.c:1056) ==24082== by 0x7B46AE61: start_process (process.c:1108) ==24082== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24082== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24082== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24082== by 0x7BC5F053: start_process (loader.c:3047) ==24082== by 0x404019C: ??? (port.c:78) ==24082== { 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 ==24107== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24107== at 0x7BC50754: notify_alloc (heap.c:254) ==24107== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24107== by 0x49D3DAE: get_long_key (reg.c:858) ==24107== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24107== by 0x49D4147: wmain (reg.c:975) ==24107== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24107== by 0x7B46AD1F: ??? (process.c:1056) ==24107== by 0x7B46AE61: start_process (process.c:1108) ==24107== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24107== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24107== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24107== by 0x7BC5F053: start_process (loader.c:3047) ==24107== by 0x404019C: ??? (port.c:78) ==24107== { 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 ==24114== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24114== at 0x7BC50754: notify_alloc (heap.c:254) ==24114== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24114== by 0x49D3DAE: get_long_key (reg.c:858) ==24114== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24114== by 0x49D4147: wmain (reg.c:975) ==24114== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24114== by 0x7B46AD1F: ??? (process.c:1056) ==24114== by 0x7B46AE61: start_process (process.c:1108) ==24114== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24114== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24114== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24114== by 0x7BC5F053: start_process (loader.c:3047) ==24114== by 0x404019C: ??? (port.c:78) ==24114== { 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 ==24122== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24122== at 0x7BC50754: notify_alloc (heap.c:254) ==24122== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24122== by 0x49D3DAE: get_long_key (reg.c:858) ==24122== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24122== by 0x49D4147: wmain (reg.c:975) ==24122== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24122== by 0x7B46AD1F: ??? (process.c:1056) ==24122== by 0x7B46AE61: start_process (process.c:1108) ==24122== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24122== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24122== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24122== by 0x7BC5F053: start_process (loader.c:3047) ==24122== by 0x404019C: ??? (port.c:78) ==24122== { 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 ==24124== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24124== at 0x7BC50754: notify_alloc (heap.c:254) ==24124== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24124== by 0x49D3DAE: get_long_key (reg.c:858) ==24124== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24124== by 0x49D4147: wmain (reg.c:975) ==24124== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24124== by 0x7B46AD1F: ??? (process.c:1056) ==24124== by 0x7B46AE61: start_process (process.c:1108) ==24124== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24124== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24124== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24124== by 0x7BC5F053: start_process (loader.c:3047) ==24124== by 0x404019C: ??? (port.c:78) ==24124== { 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 ==24129== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24129== at 0x7BC50754: notify_alloc (heap.c:254) ==24129== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24129== by 0x49D3DAE: get_long_key (reg.c:858) ==24129== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24129== by 0x49D4147: wmain (reg.c:975) ==24129== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24129== by 0x7B46AD1F: ??? (process.c:1056) ==24129== by 0x7B46AE61: start_process (process.c:1108) ==24129== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24129== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24129== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24129== by 0x7BC5F053: start_process (loader.c:3047) ==24129== by 0x404019C: ??? (port.c:78) ==24129== { 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 ==24138== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24138== at 0x7BC50754: notify_alloc (heap.c:254) ==24138== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24138== by 0x49D3DAE: get_long_key (reg.c:858) ==24138== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24138== by 0x49D4147: wmain (reg.c:975) ==24138== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24138== by 0x7B46AD1F: ??? (process.c:1056) ==24138== by 0x7B46AE61: start_process (process.c:1108) ==24138== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24138== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24138== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24138== by 0x7BC5F053: start_process (loader.c:3047) ==24138== by 0x404019C: ??? (port.c:78) ==24138== { 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 ==24140== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24140== at 0x7BC50754: notify_alloc (heap.c:254) ==24140== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24140== by 0x49D3DAE: get_long_key (reg.c:858) ==24140== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24140== by 0x49D4147: wmain (reg.c:975) ==24140== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24140== by 0x7B46AD1F: ??? (process.c:1056) ==24140== by 0x7B46AE61: start_process (process.c:1108) ==24140== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24140== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24140== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24140== by 0x7BC5F053: start_process (loader.c:3047) ==24140== by 0x404019C: ??? (port.c:78) ==24140== { 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 ==24145== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24145== at 0x7BC50754: notify_alloc (heap.c:254) ==24145== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24145== by 0x49D3DAE: get_long_key (reg.c:858) ==24145== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24145== by 0x49D4147: wmain (reg.c:975) ==24145== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24145== by 0x7B46AD1F: ??? (process.c:1056) ==24145== by 0x7B46AE61: start_process (process.c:1108) ==24145== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24145== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24145== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24145== by 0x7BC5F053: start_process (loader.c:3047) ==24145== by 0x404019C: ??? (port.c:78) ==24145== { 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 ==24147== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24147== at 0x7BC50754: notify_alloc (heap.c:254) ==24147== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24147== by 0x49D3DAE: get_long_key (reg.c:858) ==24147== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24147== by 0x49D4147: wmain (reg.c:975) ==24147== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24147== by 0x7B46AD1F: ??? (process.c:1056) ==24147== by 0x7B46AE61: start_process (process.c:1108) ==24147== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24147== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24147== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24147== by 0x7BC5F053: start_process (loader.c:3047) ==24147== by 0x404019C: ??? (port.c:78) ==24147== { 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 ==24157== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24157== at 0x7BC50754: notify_alloc (heap.c:254) ==24157== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24157== by 0x49D3DAE: get_long_key (reg.c:858) ==24157== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24157== by 0x49D4147: wmain (reg.c:975) ==24157== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24157== by 0x7B46AD1F: ??? (process.c:1056) ==24157== by 0x7B46AE61: start_process (process.c:1108) ==24157== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24157== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24157== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24157== by 0x7BC5F053: start_process (loader.c:3047) ==24157== by 0x404019C: ??? (port.c:78) ==24157== { 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 ==24164== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24164== at 0x7BC50754: notify_alloc (heap.c:254) ==24164== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24164== by 0x49D3DAE: get_long_key (reg.c:858) ==24164== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24164== by 0x49D4147: wmain (reg.c:975) ==24164== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24164== by 0x7B46AD1F: ??? (process.c:1056) ==24164== by 0x7B46AE61: start_process (process.c:1108) ==24164== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24164== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24164== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24164== by 0x7BC5F053: start_process (loader.c:3047) ==24164== by 0x404019C: ??? (port.c:78) ==24164== { 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 ==24170== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24170== at 0x7BC50754: notify_alloc (heap.c:254) ==24170== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24170== by 0x49D3DAE: get_long_key (reg.c:858) ==24170== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24170== by 0x49D4147: wmain (reg.c:975) ==24170== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24170== by 0x7B46AD1F: ??? (process.c:1056) ==24170== by 0x7B46AE61: start_process (process.c:1108) ==24170== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24170== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24170== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24170== by 0x7BC5F053: start_process (loader.c:3047) ==24170== by 0x404019C: ??? (port.c:78) ==24170== { 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 ==24178== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24178== at 0x7BC50754: notify_alloc (heap.c:254) ==24178== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24178== by 0x49D3DAE: get_long_key (reg.c:858) ==24178== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24178== by 0x49D4147: wmain (reg.c:975) ==24178== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24178== by 0x7B46AD1F: ??? (process.c:1056) ==24178== by 0x7B46AE61: start_process (process.c:1108) ==24178== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24178== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24178== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24178== by 0x7BC5F053: start_process (loader.c:3047) ==24178== by 0x404019C: ??? (port.c:78) ==24178== { 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 ==24194== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24194== at 0x7BC50754: notify_alloc (heap.c:254) ==24194== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24194== by 0x49D3DAE: get_long_key (reg.c:858) ==24194== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24194== by 0x49D4147: wmain (reg.c:975) ==24194== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24194== by 0x7B46AD1F: ??? (process.c:1056) ==24194== by 0x7B46AE61: start_process (process.c:1108) ==24194== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24194== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24194== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24194== by 0x7BC5F053: start_process (loader.c:3047) ==24194== by 0x404019C: ??? (port.c:78) ==24194== { 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 ==24197== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24197== at 0x7BC50754: notify_alloc (heap.c:254) ==24197== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24197== by 0x49D3DAE: get_long_key (reg.c:858) ==24197== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24197== by 0x49D4147: wmain (reg.c:975) ==24197== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24197== by 0x7B46AD1F: ??? (process.c:1056) ==24197== by 0x7B46AE61: start_process (process.c:1108) ==24197== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24197== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24197== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24197== by 0x7BC5F053: start_process (loader.c:3047) ==24197== by 0x404019C: ??? (port.c:78) ==24197== { 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 ==24201== 82 bytes in 1 blocks are definitely lost in loss record 135 of 238 ==24201== at 0x7BC50754: notify_alloc (heap.c:254) ==24201== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24201== by 0x49D3DAE: get_long_key (reg.c:858) ==24201== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24201== by 0x49D4147: wmain (reg.c:975) ==24201== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24201== by 0x7B46AD1F: ??? (process.c:1056) ==24201== by 0x7B46AE61: start_process (process.c:1108) ==24201== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24201== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24201== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24201== by 0x7BC5F053: start_process (loader.c:3047) ==24201== by 0x404019C: ??? (port.c:78) ==24201== { 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 ==24205== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24205== at 0x7BC50754: notify_alloc (heap.c:254) ==24205== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24205== by 0x49D3DAE: get_long_key (reg.c:858) ==24205== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24205== by 0x49D4147: wmain (reg.c:975) ==24205== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24205== by 0x7B46AD1F: ??? (process.c:1056) ==24205== by 0x7B46AE61: start_process (process.c:1108) ==24205== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24205== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24205== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24205== by 0x7BC5F053: start_process (loader.c:3047) ==24205== by 0x404019C: ??? (port.c:78) ==24205== { 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 ==24207== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24207== at 0x7BC50754: notify_alloc (heap.c:254) ==24207== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24207== by 0x49D3DAE: get_long_key (reg.c:858) ==24207== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24207== by 0x49D4147: wmain (reg.c:975) ==24207== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24207== by 0x7B46AD1F: ??? (process.c:1056) ==24207== by 0x7B46AE61: start_process (process.c:1108) ==24207== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24207== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24207== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24207== by 0x7BC5F053: start_process (loader.c:3047) ==24207== by 0x404019C: ??? (port.c:78) ==24207== { 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 ==24221== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24221== at 0x7BC50754: notify_alloc (heap.c:254) ==24221== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24221== by 0x49D3DAE: get_long_key (reg.c:858) ==24221== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24221== by 0x49D4147: wmain (reg.c:975) ==24221== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24221== by 0x7B46AD1F: ??? (process.c:1056) ==24221== by 0x7B46AE61: start_process (process.c:1108) ==24221== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24221== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24221== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24221== by 0x7BC5F053: start_process (loader.c:3047) ==24221== by 0x404019C: ??? (port.c:78) ==24221== { 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 ==24253== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24253== at 0x7BC50754: notify_alloc (heap.c:254) ==24253== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24253== by 0x49D3DAE: get_long_key (reg.c:858) ==24253== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24253== by 0x49D4147: wmain (reg.c:975) ==24253== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24253== by 0x7B46AD1F: ??? (process.c:1056) ==24253== by 0x7B46AE61: start_process (process.c:1108) ==24253== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24253== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24253== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24253== by 0x7BC5F053: start_process (loader.c:3047) ==24253== by 0x404019C: ??? (port.c:78) ==24253== { 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 ==24262== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24262== at 0x7BC50754: notify_alloc (heap.c:254) ==24262== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24262== by 0x49D3DAE: get_long_key (reg.c:858) ==24262== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24262== by 0x49D4147: wmain (reg.c:975) ==24262== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24262== by 0x7B46AD1F: ??? (process.c:1056) ==24262== by 0x7B46AE61: start_process (process.c:1108) ==24262== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24262== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24262== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24262== by 0x7BC5F053: start_process (loader.c:3047) ==24262== by 0x404019C: ??? (port.c:78) ==24262== { 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 ==24268== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24268== at 0x7BC50754: notify_alloc (heap.c:254) ==24268== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24268== by 0x49D3DAE: get_long_key (reg.c:858) ==24268== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24268== by 0x49D4147: wmain (reg.c:975) ==24268== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24268== by 0x7B46AD1F: ??? (process.c:1056) ==24268== by 0x7B46AE61: start_process (process.c:1108) ==24268== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24268== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24268== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24268== by 0x7BC5F053: start_process (loader.c:3047) ==24268== by 0x404019C: ??? (port.c:78) ==24268== { 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 ==24271== 82 bytes in 1 blocks are definitely lost in loss record 50 of 74 ==24271== at 0x7BC50754: notify_alloc (heap.c:254) ==24271== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24271== by 0x49D3DAE: get_long_key (reg.c:858) ==24271== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24271== by 0x49D4147: wmain (reg.c:975) ==24271== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24271== by 0x7B46AD1F: ??? (process.c:1056) ==24271== by 0x7B46AE61: start_process (process.c:1108) ==24271== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24271== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24271== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24271== by 0x7BC5F053: start_process (loader.c:3047) ==24271== by 0x404019C: ??? (port.c:78) ==24271== { 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 ==24273== 82 bytes in 1 blocks are definitely lost in loss record 50 of 74 ==24273== at 0x7BC50754: notify_alloc (heap.c:254) ==24273== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24273== by 0x49D3DAE: get_long_key (reg.c:858) ==24273== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24273== by 0x49D4147: wmain (reg.c:975) ==24273== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24273== by 0x7B46AD1F: ??? (process.c:1056) ==24273== by 0x7B46AE61: start_process (process.c:1108) ==24273== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24273== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24273== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24273== by 0x7BC5F053: start_process (loader.c:3047) ==24273== by 0x404019C: ??? (port.c:78) ==24273== { 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 ==24277== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24277== at 0x7BC50754: notify_alloc (heap.c:254) ==24277== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24277== by 0x49D3DAE: get_long_key (reg.c:858) ==24277== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24277== by 0x49D4147: wmain (reg.c:975) ==24277== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24277== by 0x7B46AD1F: ??? (process.c:1056) ==24277== by 0x7B46AE61: start_process (process.c:1108) ==24277== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24277== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24277== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24277== by 0x7BC5F053: start_process (loader.c:3047) ==24277== by 0x404019C: ??? (port.c:78) ==24277== { 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 ==24281== 96 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==24281== at 0x7BC50754: notify_alloc (heap.c:254) ==24281== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24281== by 0x49D3DAE: get_long_key (reg.c:858) ==24281== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24281== by 0x49D4147: wmain (reg.c:975) ==24281== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24281== by 0x7B46AD1F: ??? (process.c:1056) ==24281== by 0x7B46AE61: start_process (process.c:1108) ==24281== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24281== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24281== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24281== by 0x7BC5F053: start_process (loader.c:3047) ==24281== by 0x404019C: ??? (port.c:78) ==24281== { 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 ==24286== 96 bytes in 1 blocks are definitely lost in loss record 55 of 74 ==24286== at 0x7BC50754: notify_alloc (heap.c:254) ==24286== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24286== by 0x49D3DAE: get_long_key (reg.c:858) ==24286== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24286== by 0x49D4147: wmain (reg.c:975) ==24286== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24286== by 0x7B46AD1F: ??? (process.c:1056) ==24286== by 0x7B46AE61: start_process (process.c:1108) ==24286== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24286== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24286== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24286== by 0x7BC5F053: start_process (loader.c:3047) ==24286== by 0x404019C: ??? (port.c:78) ==24286== { 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 ==24288== 96 bytes in 1 blocks are definitely lost in loss record 55 of 74 ==24288== at 0x7BC50754: notify_alloc (heap.c:254) ==24288== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24288== by 0x49D3DAE: get_long_key (reg.c:858) ==24288== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24288== by 0x49D4147: wmain (reg.c:975) ==24288== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24288== by 0x7B46AD1F: ??? (process.c:1056) ==24288== by 0x7B46AE61: start_process (process.c:1108) ==24288== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24288== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24288== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24288== by 0x7BC5F053: start_process (loader.c:3047) ==24288== by 0x404019C: ??? (port.c:78) ==24288== { 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 ==24291== 96 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==24291== at 0x7BC50754: notify_alloc (heap.c:254) ==24291== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24291== by 0x49D3DAE: get_long_key (reg.c:858) ==24291== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24291== by 0x49D4147: wmain (reg.c:975) ==24291== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24291== by 0x7B46AD1F: ??? (process.c:1056) ==24291== by 0x7B46AE61: start_process (process.c:1108) ==24291== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24291== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24291== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24291== by 0x7BC5F053: start_process (loader.c:3047) ==24291== by 0x404019C: ??? (port.c:78) ==24291== { 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 ==24295== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24295== at 0x7BC50754: notify_alloc (heap.c:254) ==24295== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24295== by 0x49D3DAE: get_long_key (reg.c:858) ==24295== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24295== by 0x49D4147: wmain (reg.c:975) ==24295== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24295== by 0x7B46AD1F: ??? (process.c:1056) ==24295== by 0x7B46AE61: start_process (process.c:1108) ==24295== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24295== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24295== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24295== by 0x7BC5F053: start_process (loader.c:3047) ==24295== by 0x404019C: ??? (port.c:78) ==24295== { 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 ==24300== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24300== at 0x7BC50754: notify_alloc (heap.c:254) ==24300== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24300== by 0x49D3DAE: get_long_key (reg.c:858) ==24300== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24300== by 0x49D4147: wmain (reg.c:975) ==24300== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24300== by 0x7B46AD1F: ??? (process.c:1056) ==24300== by 0x7B46AE61: start_process (process.c:1108) ==24300== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24300== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24300== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24300== by 0x7BC5F053: start_process (loader.c:3047) ==24300== by 0x404019C: ??? (port.c:78) ==24300== { 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 ==24303== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24303== at 0x7BC50754: notify_alloc (heap.c:254) ==24303== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24303== by 0x49D3DAE: get_long_key (reg.c:858) ==24303== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24303== by 0x49D4147: wmain (reg.c:975) ==24303== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24303== by 0x7B46AD1F: ??? (process.c:1056) ==24303== by 0x7B46AE61: start_process (process.c:1108) ==24303== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24303== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24303== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24303== by 0x7BC5F053: start_process (loader.c:3047) ==24303== by 0x404019C: ??? (port.c:78) ==24303== { 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 ==24307== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24307== at 0x7BC50754: notify_alloc (heap.c:254) ==24307== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24307== by 0x49D3DAE: get_long_key (reg.c:858) ==24307== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24307== by 0x49D4147: wmain (reg.c:975) ==24307== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24307== by 0x7B46AD1F: ??? (process.c:1056) ==24307== by 0x7B46AE61: start_process (process.c:1108) ==24307== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24307== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24307== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24307== by 0x7BC5F053: start_process (loader.c:3047) ==24307== by 0x404019C: ??? (port.c:78) ==24307== { 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 ==24310== 96 bytes in 1 blocks are definitely lost in loss record 157 of 239 ==24310== at 0x7BC50754: notify_alloc (heap.c:254) ==24310== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24310== by 0x49D3DAE: get_long_key (reg.c:858) ==24310== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24310== by 0x49D4147: wmain (reg.c:975) ==24310== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24310== by 0x7B46AD1F: ??? (process.c:1056) ==24310== by 0x7B46AE61: start_process (process.c:1108) ==24310== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24310== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24310== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24310== by 0x7BC5F053: start_process (loader.c:3047) ==24310== by 0x404019C: ??? (port.c:78) ==24310== { 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 ==24314== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24314== at 0x7BC50754: notify_alloc (heap.c:254) ==24314== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24314== by 0x49D3DAE: get_long_key (reg.c:858) ==24314== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24314== by 0x49D4147: wmain (reg.c:975) ==24314== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24314== by 0x7B46AD1F: ??? (process.c:1056) ==24314== by 0x7B46AE61: start_process (process.c:1108) ==24314== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24314== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24314== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24314== by 0x7BC5F053: start_process (loader.c:3047) ==24314== by 0x404019C: ??? (port.c:78) ==24314== { 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 ==24317== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24317== at 0x7BC50754: notify_alloc (heap.c:254) ==24317== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24317== by 0x49D3DAE: get_long_key (reg.c:858) ==24317== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24317== by 0x49D4147: wmain (reg.c:975) ==24317== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24317== by 0x7B46AD1F: ??? (process.c:1056) ==24317== by 0x7B46AE61: start_process (process.c:1108) ==24317== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24317== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24317== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24317== by 0x7BC5F053: start_process (loader.c:3047) ==24317== by 0x404019C: ??? (port.c:78) ==24317== { 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 ==24319== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24319== at 0x7BC50754: notify_alloc (heap.c:254) ==24319== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24319== by 0x49D3DAE: get_long_key (reg.c:858) ==24319== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24319== by 0x49D4147: wmain (reg.c:975) ==24319== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24319== by 0x7B46AD1F: ??? (process.c:1056) ==24319== by 0x7B46AE61: start_process (process.c:1108) ==24319== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24319== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24319== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24319== by 0x7BC5F053: start_process (loader.c:3047) ==24319== by 0x404019C: ??? (port.c:78) ==24319== { 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 ==24323== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24323== at 0x7BC50754: notify_alloc (heap.c:254) ==24323== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24323== by 0x49D3DAE: get_long_key (reg.c:858) ==24323== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24323== by 0x49D4147: wmain (reg.c:975) ==24323== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24323== by 0x7B46AD1F: ??? (process.c:1056) ==24323== by 0x7B46AE61: start_process (process.c:1108) ==24323== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24323== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24323== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24323== by 0x7BC5F053: start_process (loader.c:3047) ==24323== by 0x404019C: ??? (port.c:78) ==24323== { 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 ==24325== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24325== at 0x7BC50754: notify_alloc (heap.c:254) ==24325== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24325== by 0x49D3DAE: get_long_key (reg.c:858) ==24325== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24325== by 0x49D4147: wmain (reg.c:975) ==24325== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24325== by 0x7B46AD1F: ??? (process.c:1056) ==24325== by 0x7B46AE61: start_process (process.c:1108) ==24325== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24325== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24325== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24325== by 0x7BC5F053: start_process (loader.c:3047) ==24325== by 0x404019C: ??? (port.c:78) ==24325== { 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 ==24327== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24327== at 0x7BC50754: notify_alloc (heap.c:254) ==24327== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24327== by 0x49D3DAE: get_long_key (reg.c:858) ==24327== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24327== by 0x49D4147: wmain (reg.c:975) ==24327== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24327== by 0x7B46AD1F: ??? (process.c:1056) ==24327== by 0x7B46AE61: start_process (process.c:1108) ==24327== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24327== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24327== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24327== by 0x7BC5F053: start_process (loader.c:3047) ==24327== by 0x404019C: ??? (port.c:78) ==24327== { 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 ==24331== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24331== at 0x7BC50754: notify_alloc (heap.c:254) ==24331== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24331== by 0x49D3DAE: get_long_key (reg.c:858) ==24331== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24331== by 0x49D4147: wmain (reg.c:975) ==24331== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24331== by 0x7B46AD1F: ??? (process.c:1056) ==24331== by 0x7B46AE61: start_process (process.c:1108) ==24331== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24331== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24331== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24331== by 0x7BC5F053: start_process (loader.c:3047) ==24331== by 0x404019C: ??? (port.c:78) ==24331== { 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 ==24335== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24335== at 0x7BC50754: notify_alloc (heap.c:254) ==24335== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24335== by 0x49D3DAE: get_long_key (reg.c:858) ==24335== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24335== by 0x49D4147: wmain (reg.c:975) ==24335== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24335== by 0x7B46AD1F: ??? (process.c:1056) ==24335== by 0x7B46AE61: start_process (process.c:1108) ==24335== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24335== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24335== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24335== by 0x7BC5F053: start_process (loader.c:3047) ==24335== by 0x404019C: ??? (port.c:78) ==24335== { 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 ==24339== 82 bytes in 1 blocks are definitely lost in loss record 136 of 239 ==24339== at 0x7BC50754: notify_alloc (heap.c:254) ==24339== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24339== by 0x49D3DAE: get_long_key (reg.c:858) ==24339== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24339== by 0x49D4147: wmain (reg.c:975) ==24339== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24339== by 0x7B46AD1F: ??? (process.c:1056) ==24339== by 0x7B46AE61: start_process (process.c:1108) ==24339== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24339== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24339== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24339== by 0x7BC5F053: start_process (loader.c:3047) ==24339== by 0x404019C: ??? (port.c:78) ==24339== { 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 ==24343== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24343== at 0x7BC50754: notify_alloc (heap.c:254) ==24343== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24343== by 0x49D3DAE: get_long_key (reg.c:858) ==24343== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24343== by 0x49D4147: wmain (reg.c:975) ==24343== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24343== by 0x7B46AD1F: ??? (process.c:1056) ==24343== by 0x7B46AE61: start_process (process.c:1108) ==24343== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24343== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24343== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24343== by 0x7BC5F053: start_process (loader.c:3047) ==24343== by 0x404019C: ??? (port.c:78) ==24343== { 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 ==24347== 82 bytes in 1 blocks are definitely lost in loss record 135 of 239 ==24347== at 0x7BC50754: notify_alloc (heap.c:254) ==24347== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==24347== by 0x49D3DAE: get_long_key (reg.c:858) ==24347== by 0x49D3E8C: parse_registry_key (reg.c:878) ==24347== by 0x49D4147: wmain (reg.c:975) ==24347== by 0x49D464D: __wine_spec_exe_wentry (exe_wentry.c:36) ==24347== by 0x7B46AD1F: ??? (process.c:1056) ==24347== by 0x7B46AE61: start_process (process.c:1108) ==24347== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==24347== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==24347== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==24347== by 0x7BC5F053: start_process (loader.c:3047) ==24347== by 0x404019C: ??? (port.c:78) ==24347== { 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 ==22603== Syscall param writev(vector[...]) points to uninitialised byte(s) ==22603== at 0x4337453: __writev_nocancel (syscall-template.S:84) ==22603== by 0x7BC87C3B: send_request (server.c:228) ==22603== by 0x7BC87DEE: wine_server_call (server.c:309) ==22603== by 0x7BC72A85: NtQueryValueKey (reg.c:582) ==22603== by 0x4B445E2: RegQueryValueExA (registry.c:1607) ==22603== by 0x4822094: verify_reg_ (reg.c:71) ==22603== by 0x4829D72: test_import (reg.c:1100) ==22603== by 0x482D6CE: func_reg (reg.c:1446) ==22603== by 0x482E488: run_test (test.h:589) ==22603== by 0x482E8B3: main (test.h:671) ==22603== Address 0x4b0f5b8 is on thread 1's stack ==22603== in frame #3, created by NtQueryValueKey (reg.c:536) ==22603== Uninitialised value was created by a stack allocation ==22603== at 0x48268C3: test_import (reg.c:772) ==22603== { Memcheck:Param writev(vector[...]) fun:__writev_nocancel fun:send_request fun:wine_server_call fun:NtQueryValueKey fun:RegQueryValueExA fun:verify_reg_ fun:test_import fun:func_reg fun:run_test fun:main } ==22603== Syscall param write(buf) points to uninitialised byte(s) ==22603== at 0x424BE63: __write_nocancel (syscall-template.S:84) ==22603== by 0x7BC87BB0: send_request (server.c:213) ==22603== by 0x7BC87DEE: wine_server_call (server.c:309) ==22603== by 0x7BC69B7B: close_handle (om.c:389) ==22603== by 0x7BC69BD1: NtClose (om.c:410) ==22603== by 0x4B4347E: RegCloseKey (registry.c:1214) ==22603== by 0x4829D92: test_import (reg.c:1101) ==22603== by 0x482D6CE: func_reg (reg.c:1446) ==22603== by 0x482E488: run_test (test.h:589) ==22603== by 0x482E8B3: main (test.h:671) ==22603== Address 0x4b0f888 is on thread 1's stack ==22603== in frame #3, created by close_handle (om.c:382) ==22603== Uninitialised value was created by a stack allocation ==22603== at 0x48268C3: test_import (reg.c:772) ==22603== { Memcheck:Param write(buf) fun:__write_nocancel fun:send_request fun:wine_server_call fun:close_handle fun:NtClose fun:RegCloseKey fun:test_import fun:func_reg 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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 preloader: Warning: failed to reserve range 7f000000-82000000 preloader: Warning: failed to reserve range 00110000-68000000 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'. 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 'Multi-Line1' 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 'Multi-Line2' 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 ==25081== 86 bytes in 1 blocks are possibly lost in loss record 469 of 795 ==25081== at 0x7BC50754: notify_alloc (heap.c:254) ==25081== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==25081== by 0x7B44973A: HeapAlloc (heap.c:271) ==25081== by 0x7B44AE69: LocalAlloc (heap.c:970) ==25081== by 0x4B4B1FA: CommandLineToArgvW (shell32_main.c:198) ==25081== by 0x4995A00: wWinMain (main.c:429) ==25081== by 0x4995EFE: wmain (exe_wmain.c:51) ==25081== by 0x4995DD7: __wine_spec_exe_wentry (exe_wentry.c:36) ==25081== by 0x7B46AD1F: ??? (process.c:1056) ==25081== by 0x7B46AE61: start_process (process.c:1108) ==25081== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==25081== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==25081== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==25081== by 0x7BC5F053: start_process (loader.c:3047) ==25081== by 0x404019C: ??? (port.c:78) ==25081== { 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 ==25100== 88 bytes in 1 blocks are possibly lost in loss record 394 of 659 ==25100== at 0x7BC50754: notify_alloc (heap.c:254) ==25100== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==25100== by 0x7B44973A: HeapAlloc (heap.c:271) ==25100== by 0x7B44AE69: LocalAlloc (heap.c:970) ==25100== by 0x4B4B1FA: CommandLineToArgvW (shell32_main.c:198) ==25100== by 0x4995A00: wWinMain (main.c:429) ==25100== by 0x4995EFE: wmain (exe_wmain.c:51) ==25100== by 0x4995DD7: __wine_spec_exe_wentry (exe_wentry.c:36) ==25100== by 0x7B46AD1F: ??? (process.c:1056) ==25100== by 0x7B46AE61: start_process (process.c:1108) ==25100== by 0x7BC8FA57: ??? (signal_i386.c:2700) ==25100== by 0x7BC8FAD3: call_thread_func (signal_i386.c:2759) ==25100== by 0x7BC8FA35: ??? (signal_i386.c:2700) ==25100== by 0x7BC5F053: start_process (loader.c:3047) ==25100== by 0x404019C: ??? (port.c:78) ==25100== { 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 ==25164== 60 bytes in 1 blocks are definitely lost in loss record 46 of 75 ==25164== at 0x7BC50754: notify_alloc (heap.c:254) ==25164== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==25164== by 0x4A116EC: WINECON_CreateKeyName (registry.c:76) ==25164== by 0x4A11DC1: WINECON_RegLoad (registry.c:239) ==25164== by 0x4A193D3: WINECON_Init (wineconsole.c:666) ==25164== by 0x4A19E62: WinMain (wineconsole.c:901) ==25164== by 0x4A1A424: main (exe_main.c:49) ==25164== { 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 ==25171== 60 bytes in 1 blocks are definitely lost in loss record 46 of 75 ==25171== at 0x7BC50754: notify_alloc (heap.c:254) ==25171== by 0x7BC54BD5: RtlAllocateHeap (heap.c:1716) ==25171== by 0x4A116EC: WINECON_CreateKeyName (registry.c:76) ==25171== by 0x4A11DC1: WINECON_RegLoad (registry.c:239) ==25171== by 0x4A193D3: WINECON_Init (wineconsole.c:666) ==25171== by 0x4A19E62: WinMain (wineconsole.c:901) ==25171== by 0x4A1A424: main (exe_main.c:49) ==25171== { 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 make[1]: *** [Makefile:170: xcopy.ok] Error 5 make[1]: Target 'test' not remade because of errors. make[1]: Leaving directory '/home/austin/wine-valgrind/programs/xcopy/tests' make: *** [Makefile:21983: programs/xcopy/tests/test] Error 2 make: Target 'test' not remade because of errors.