user32: Re-enable the fast code path in CreateIconIndirect.
diff --git a/dlls/user32/cursoricon.c b/dlls/user32/cursoricon.c
index 8910985..e4973e3 100644
--- a/dlls/user32/cursoricon.c
+++ b/dlls/user32/cursoricon.c
@@ -1837,7 +1837,7 @@
 {
     HDC hdc = CreateCompatibleDC( 0 );
 
-    if (!SelectObject( hdc, src ) || 1)  /* do it the hard way */
+    if (!SelectObject( hdc, src ))  /* do it the hard way */
     {
         BITMAPINFO *info;
         void *bits;