From 1598a2049014e8d4c8d90dbe522cc86a81aa594d Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Sat, 17 Jan 2009 15:05:21 +0000 Subject: [PATCH] Fix a bug. svn path=/trunk/; revision=38816 --- reactos/dll/directx/dxdiagn/container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/directx/dxdiagn/container.c b/reactos/dll/directx/dxdiagn/container.c index e7e9bd37604..392a32de77e 100644 --- a/reactos/dll/directx/dxdiagn/container.c +++ b/reactos/dll/directx/dxdiagn/container.c @@ -150,7 +150,7 @@ HRESULT WINAPI IDxDiagContainerImpl_GetChildContainer(PDXDIAGCONTAINER iface, LP hr = IDxDiagContainerImpl_GetChildContainerInternal(pContainer, tmp, &pContainer); if (!SUCCEEDED(hr) || NULL == pContainer) goto on_error; - *cur++; /* go after '.' (just replaced by \0) */ + cur++; /* go after '.' (just replaced by \0) */ tmp = cur; cur = strchrW(tmp, '.'); }