Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
57862134
Commit
57862134
authored
May 22, 1999
by
Eric Pouech
Committed by
Alexandre Julliard
May 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check if dc has been created before using it.
parent
d0cbe85d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cursoricon.c
objects/cursoricon.c
+4
-4
No files found.
objects/cursoricon.c
View file @
57862134
...
@@ -696,7 +696,6 @@ HGLOBAL CURSORICON_Load( HINSTANCE hInstance, LPCWSTR name,
...
@@ -696,7 +696,6 @@ HGLOBAL CURSORICON_Load( HINSTANCE hInstance, LPCWSTR name,
{
{
WORD
resid
;
WORD
resid
;
HDC
hdc
;
HDC
hdc
;
DC
*
dc
;
if
(
HIWORD
(
name
)
)
if
(
HIWORD
(
name
)
)
{
{
...
@@ -714,13 +713,14 @@ HGLOBAL CURSORICON_Load( HINSTANCE hInstance, LPCWSTR name,
...
@@ -714,13 +713,14 @@ HGLOBAL CURSORICON_Load( HINSTANCE hInstance, LPCWSTR name,
}
}
else
resid
=
LOWORD
(
name
);
else
resid
=
LOWORD
(
name
);
hdc
=
CreateDCA
(
"DISPLAY"
,
NULL
,
NULL
,
NULL
);
hdc
=
CreateDCA
(
"DISPLAY"
,
NULL
,
NULL
,
NULL
);
dc
=
DC_GetDCPtr
(
hdc
);
if
(
hdc
)
{
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
if
(
dc
->
funcs
->
pLoadOEMResource
)
if
(
dc
->
funcs
->
pLoadOEMResource
)
h
=
dc
->
funcs
->
pLoadOEMResource
(
resid
,
fCursor
?
h
=
dc
->
funcs
->
pLoadOEMResource
(
resid
,
fCursor
?
OEM_CURSOR
:
OEM_ICON
);
OEM_CURSOR
:
OEM_ICON
);
GDI_HEAP_UNLOCK
(
hdc
);
GDI_HEAP_UNLOCK
(
hdc
);
DeleteDC
(
hdc
);
DeleteDC
(
hdc
);
}
}
}
else
/* Load from resource */
else
/* Load from resource */
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment