mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
fixed uninitialized variable warning
svn path=/trunk/; revision=18641
This commit is contained in:
parent
973d0cfabc
commit
7da9542b29
1 changed files with 1 additions and 1 deletions
|
@ -1619,7 +1619,7 @@ LONG RegMoveKey(HKEY hDestKey, LPCTSTR lpDestSubKey, HKEY hSrcKey, LPCTSTR lpSrc
|
|||
LONG RegRenameKey(HKEY hKey, LPCTSTR lpSubKey, LPCTSTR lpNewName)
|
||||
{
|
||||
LPCTSTR s;
|
||||
LPTSTR lpNewSubKey;
|
||||
LPTSTR lpNewSubKey = NULL;
|
||||
LONG Ret = 0;
|
||||
|
||||
s = _tcsrchr(lpSubKey, '\\');
|
||||
|
|
Loading…
Reference in a new issue