Module: wine Branch: master Commit: 7c1deca74c35c52fe54c344fbebd347249caf03c URL: http://source.winehq.org/git/wine.git/?a=commit;h=7c1deca74c35c52fe54c344fbe...
Author: Huw Davies huw@codeweavers.com Date: Mon Dec 7 11:33:02 2009 +0000
xinput1_3: Don't print the contents of [out] parameters.
Found by Valgrind.
---
dlls/xinput1_3/xinput1_3_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/xinput1_3/xinput1_3_main.c b/dlls/xinput1_3/xinput1_3_main.c index f4386b8..fc55cef 100644 --- a/dlls/xinput1_3/xinput1_3_main.c +++ b/dlls/xinput1_3/xinput1_3_main.c @@ -105,7 +105,7 @@ DWORD WINAPI XInputGetCapabilities(DWORD dwUserIndex, DWORD dwFlags, XINPUT_CAPA
DWORD WINAPI XInputGetDSoundAudioDeviceGuids(DWORD dwUserIndex, GUID* pDSoundRenderGuid, GUID* pDSoundCaptureGuid) { - FIXME("(%d %s %s) Stub!\n", dwUserIndex, debugstr_guid(pDSoundRenderGuid), debugstr_guid(pDSoundCaptureGuid)); + FIXME("(%d %p %p) Stub!\n", dwUserIndex, pDSoundRenderGuid, pDSoundCaptureGuid);
if (dwUserIndex < XUSER_MAX_COUNT) {