Commit 9ae26670 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

regedit: Remove dead assignment (clang).

parent 1c1c99ff
......@@ -475,7 +475,7 @@ static BOOL CopyKeyName(HWND hWnd, LPCWSTR keyName)
LPVOID pLoc = GlobalLock(hClipData);
lstrcpyW(pLoc, keyName);
GlobalUnlock(hClipData);
hClipData = SetClipboardData(CF_UNICODETEXT, hClipData);
SetClipboardData(CF_UNICODETEXT, hClipData);
} else {
/* error emptying clipboard*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment