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
d3723a9e
Commit
d3723a9e
authored
Jun 23, 2009
by
Jörg Höhle
Committed by
Alexandre Julliard
Jun 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Provide trailing \ now required by GetVolumeInformation.
parent
609b91a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
int21.c
dlls/winedos/int21.c
+2
-2
No files found.
dlls/winedos/int21.c
View file @
d3723a9e
...
...
@@ -3419,7 +3419,7 @@ static BOOL INT21_NetworkFunc (CONTEXT86 *context)
static
int
INT21_GetDiskSerialNumber
(
CONTEXT86
*
context
)
{
BYTE
*
dataptr
=
CTX_SEG_OFF_TO_LIN
(
context
,
context
->
SegDs
,
context
->
Edx
);
WCHAR
path
[]
=
{
'A'
,
':'
,
0
},
label
[
11
];
WCHAR
path
[]
=
{
'A'
,
':'
,
'\\'
,
0
},
label
[
11
];
DWORD
serial
;
path
[
0
]
+=
INT21_MapDrive
(
BL_reg
(
context
));
...
...
@@ -3877,7 +3877,7 @@ static unsigned INT21_FindHelper(LPCWSTR fullPath, unsigned drive, unsigned coun
if
((
search_attr
&
~
(
FA_UNUSED
|
FA_ARCHIVE
|
FA_RDONLY
))
==
FA_LABEL
)
{
WCHAR
path
[]
=
{
' '
,
':'
,
0
};
WCHAR
path
[]
=
{
' '
,
':'
,
'\\'
,
0
};
if
(
count
)
return
0
;
path
[
0
]
=
drive
+
'A'
;
...
...
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