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
8f49ea21
Commit
8f49ea21
authored
Oct 20, 2007
by
Lionel Debroux
Committed by
Alexandre Julliard
Oct 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Fix memory leaks (found by Smatch) and fix a message.
parent
1a8001af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
rtlstr.c
dlls/ntdll/tests/rtlstr.c
+4
-1
No files found.
dlls/ntdll/tests/rtlstr.c
View file @
8f49ea21
...
...
@@ -289,6 +289,8 @@ static void test_RtlInitUnicodeStringEx(void)
ok
(
uni
.
Buffer
==
NULL
,
"pRtlInitUnicodeString(&uni, 0) sets Buffer to %p, expected %p
\n
"
,
uni
.
Buffer
,
NULL
);
free
(
teststring2
);
}
...
...
@@ -1709,7 +1711,8 @@ static void test_RtlIsTextUnicode(void)
flags
=
IS_TEXT_UNICODE_REVERSE_MASK
;
ok
(
!
pRtlIsTextUnicode
(
be_unicode
,
sizeof
(
unicode
)
+
2
,
&
flags
),
"Reverse endian should be Unicode
\n
"
);
todo_wine
ok
(
flags
==
0xc0
,
"Expected flags 0x70, obtained %x
\n
"
,
flags
);
todo_wine
ok
(
flags
==
0xc0
,
"Expected flags 0xc0, obtained %x
\n
"
,
flags
);
HeapFree
(
GetProcessHeap
(),
0
,
be_unicode
);
}
static
const
WCHAR
szGuid
[]
=
{
'{'
,
'0'
,
'1'
,
'0'
,
'2'
,
'0'
,
'3'
,
'0'
,
'4'
,
'-'
,
...
...
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