Author: jgardou
Date: Wed Sep 17 15:08:13 2014
New Revision: 64181
URL:
http://svn.reactos.org/svn/reactos?rev=64181&view=rev
Log:
[UXTHEME]
- Allocate resources after the quick-return path
Modified:
trunk/reactos/dll/win32/uxtheme/ncscrollbar.c
Modified: trunk/reactos/dll/win32/uxtheme/ncscrollbar.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/uxtheme/ncscroll…
==============================================================================
--- trunk/reactos/dll/win32/uxtheme/ncscrollbar.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/uxtheme/ncscrollbar.c [iso-8859-1] Wed Sep 17 15:08:13 2014
@@ -400,7 +400,6 @@
{
return;
}
- ThemeInitDrawContext(&context, hwnd, 0);
#ifndef ROS_SUCKS
/* The scrollbar rect is in screen coordinates */
@@ -410,6 +409,8 @@
if ((SCROLL_trackHitTest == SCROLL_NOWHERE) && (msg != WM_LBUTTONDOWN))
return;
+ ThemeInitDrawContext(&context, hwnd, 0);
+
hwndOwner = (nBar == SB_CTL) ? GetParent(hwnd) : hwnd;
hwndCtl = (nBar == SB_CTL) ? hwnd : 0;