Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e3b94200
Commit
e3b94200
authored
Jun 18, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Jun 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: In COMBOEX_FindStringExact do not try to get text from invalid items.
parent
872b4d40
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
comboex.c
dlls/comctl32/comboex.c
+2
-0
No files found.
dlls/comctl32/comboex.c
View file @
e3b94200
...
...
@@ -860,10 +860,12 @@ COMBOEX_FindStringExact (COMBOEX_INFO *infoPtr, INT start, LPCWSTR str)
/* now search from after starting loc and wrapping back to start */
for
(
i
=
start
+
1
;
i
<
count
;
i
++
)
{
CBE_ITEMDATA
*
item
=
get_item_data
(
infoPtr
,
i
);
if
((
LRESULT
)
item
==
CB_ERR
)
continue
;
if
(
cmptext
(
COMBOEX_GetText
(
infoPtr
,
item
),
str
)
==
0
)
return
i
;
}
for
(
i
=
0
;
i
<=
start
;
i
++
)
{
CBE_ITEMDATA
*
item
=
get_item_data
(
infoPtr
,
i
);
if
((
LRESULT
)
item
==
CB_ERR
)
continue
;
if
(
cmptext
(
COMBOEX_GetText
(
infoPtr
,
item
),
str
)
==
0
)
return
i
;
}
return
CB_ERR
;
...
...
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