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
fc2d1ded
Commit
fc2d1ded
authored
Feb 09, 2011
by
Austin English
Committed by
Alexandre Julliard
Feb 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Remove some dead assignments (LLVM/Clang).
parent
757aaecc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
listbox.c
dlls/user32/tests/listbox.c
+0
-5
No files found.
dlls/user32/tests/listbox.c
View file @
fc2d1ded
...
...
@@ -840,7 +840,6 @@ static void test_listbox_LB_DIR(void)
memset
(
pathBuffer
,
0
,
MAX_PATH
);
driveletter
=
'\0'
;
SendMessage
(
hList
,
LB_GETTEXT
,
i
,
(
LPARAM
)
pathBuffer
);
p
=
pathBuffer
+
strlen
(
pathBuffer
);
if
(
sscanf
(
pathBuffer
,
"[-%c-]"
,
&
driveletter
)
==
1
)
{
ok
(
driveletter
>=
'a'
&&
driveletter
<=
'z'
,
"Drive letter not in range a..z, got ascii %d
\n
"
,
driveletter
);
}
...
...
@@ -951,7 +950,6 @@ static void test_listbox_LB_DIR(void)
memset
(
pathBuffer
,
0
,
MAX_PATH
);
driveletter
=
'\0'
;
SendMessage
(
hList
,
LB_GETTEXT
,
i
,
(
LPARAM
)
pathBuffer
);
p
=
pathBuffer
+
strlen
(
pathBuffer
);
if
(
sscanf
(
pathBuffer
,
"[-%c-]"
,
&
driveletter
)
==
1
)
{
ok
(
driveletter
>=
'a'
&&
driveletter
<=
'z'
,
"Drive letter not in range a..z, got ascii %d
\n
"
,
driveletter
);
}
else
{
...
...
@@ -987,7 +985,6 @@ static void test_listbox_LB_DIR(void)
memset
(
pathBuffer
,
0
,
MAX_PATH
);
driveletter
=
'\0'
;
SendMessage
(
hList
,
LB_GETTEXT
,
i
,
(
LPARAM
)
pathBuffer
);
p
=
pathBuffer
+
strlen
(
pathBuffer
);
ok
(
sscanf
(
pathBuffer
,
"[-%c-]"
,
&
driveletter
)
==
1
,
"Element %d (%s) does not fit [-X-]
\n
"
,
i
,
pathBuffer
);
ok
(
driveletter
>=
'a'
&&
driveletter
<=
'z'
,
"Drive letter not in range a..z, got ascii %d
\n
"
,
driveletter
);
}
...
...
@@ -1181,7 +1178,6 @@ static void test_listbox_dlgdir(void)
for
(
i
=
0
;
i
<
itemCount
;
i
++
)
{
memset
(
pathBuffer
,
0
,
MAX_PATH
);
SendMessage
(
g_listBox
,
LB_GETTEXT
,
i
,
(
LPARAM
)
pathBuffer
);
p
=
pathBuffer
+
strlen
(
pathBuffer
);
ok
(
pathBuffer
[
0
]
==
'['
&&
pathBuffer
[
strlen
(
pathBuffer
)
-
1
]
==
']'
,
"Element %d (%s) does not fit requested [...]
\n
"
,
i
,
pathBuffer
);
}
...
...
@@ -1321,7 +1317,6 @@ static void test_listbox_dlgdir(void)
memset
(
pathBuffer
,
0
,
MAX_PATH
);
driveletter
=
'\0'
;
SendMessage
(
g_listBox
,
LB_GETTEXT
,
i
,
(
LPARAM
)
pathBuffer
);
p
=
pathBuffer
+
strlen
(
pathBuffer
);
if
(
sscanf
(
pathBuffer
,
"[-%c-]"
,
&
driveletter
)
==
1
)
{
ok
(
driveletter
>=
'a'
&&
driveletter
<=
'z'
,
"Drive letter not in range a..z, got ascii %d
\n
"
,
driveletter
);
}
else
{
...
...
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