user32: Remove a duplicated return statement (Smatch).

This commit is contained in:
Michael Stefaniuc 2009-10-16 22:22:29 +02:00 committed by Alexandre Julliard
parent af192c20f9
commit 77f43eedf5
1 changed files with 0 additions and 1 deletions

View File

@ -70,7 +70,6 @@ HACCEL WINAPI LoadAcceleratorsW(HINSTANCE instance, LPCWSTR name)
memcpy( accel->table, table, count * sizeof(*table) );
if (!(handle = alloc_user_handle( &accel->obj, USER_ACCEL )))
HeapFree( GetProcessHeap(), 0, accel );
return handle;
TRACE_(accel)("%p %s returning %p\n", instance, debugstr_w(name), handle );
return handle;
}