Commit 6d0d7e08 authored by Alexandre Julliard's avatar Alexandre Julliard

user32: Fix the scope of a local variable.

parent 7b2eafbc
......@@ -1999,6 +1999,7 @@ static BOOL post_dde_message( struct packed_message *data, const struct send_mes
HGLOBAL hunlock = 0;
int i;
DWORD res;
ULONGLONG hpack;
if (!UnpackDDElParam( info->msg, info->lparam, &uiLo, &uiHi ))
return FALSE;
......@@ -2019,7 +2020,7 @@ static BOOL post_dde_message( struct packed_message *data, const struct send_mes
HGLOBAL h = dde_get_pair( (HANDLE)uiHi );
if (h)
{
ULONGLONG hpack = pack_ptr( h );
hpack = pack_ptr( h );
/* send back the value of h on the other side */
push_data( data, &hpack, sizeof(hpack) );
lp = uiLo;
......
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