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
059436d5
Commit
059436d5
authored
Aug 14, 2007
by
Paul Vriens
Committed by
Alexandre Julliard
Aug 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Remove wrong FreeLibrary and fix typo's.
parent
16d91233
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
cpp.c
dlls/msvcrt/tests/cpp.c
+1
-4
string.c
dlls/msvcrt/tests/string.c
+1
-1
No files found.
dlls/msvcrt/tests/cpp.c
View file @
059436d5
...
...
@@ -187,7 +187,7 @@ static void InitFunctionPtrs(void)
hMsvcrt
=
GetModuleHandleA
(
"msvcrt.dll"
);
if
(
!
hMsvcrt
)
hMsvcrt
=
GetModuleHandleA
(
"msvcrtd.dll"
);
ok
(
hMsvcrt
!=
0
,
"
LoadLibrary
A failed
\n
"
);
ok
(
hMsvcrt
!=
0
,
"
GetModuleHandle
A failed
\n
"
);
if
(
hMsvcrt
)
{
SETNOFAIL
(
poperator_new
,
"??_U@YAPAXI@Z"
);
...
...
@@ -1004,8 +1004,5 @@ START_TEST(cpp)
test_rtti
();
test_demangle_datatype
();
test_demangle
();
if
(
hMsvcrt
)
FreeLibrary
(
hMsvcrt
);
}
#endif
/* __i386__ */
dlls/msvcrt/tests/string.c
View file @
059436d5
...
...
@@ -135,7 +135,7 @@ START_TEST(string)
hMsvcrt
=
GetModuleHandleA
(
"msvcrt.dll"
);
if
(
!
hMsvcrt
)
hMsvcrt
=
GetModuleHandleA
(
"msvcrtd.dll"
);
ok
(
hMsvcrt
!=
0
,
"
LoadLibrary
A failed
\n
"
);
ok
(
hMsvcrt
!=
0
,
"
GetModuleHandle
A failed
\n
"
);
SET
(
pmemcpy
,
"memcpy"
);
SET
(
pmemcmp
,
"memcmp"
);
...
...
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