Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
eefb72c8
Commit
eefb72c8
authored
Dec 13, 2004
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 13, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed copy&paste error.
parent
c164e069
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage.c
dlls/itss/storage.c
+1
-1
int21.c
dlls/winedos/int21.c
+1
-1
No files found.
dlls/itss/storage.c
View file @
eefb72c8
...
...
@@ -336,7 +336,7 @@ HRESULT WINAPI ITSS_IStorageImpl_OpenStream(
if
(
pwcsName
[
0
]
==
'/'
)
{
WCHAR
*
p
=
&
path
[
strlenW
(
path
)
-
1
];
while
(
(
path
<=
p
)
&&
(
*
p
=
'/'
)
)
while
(
(
path
<=
p
)
&&
(
*
p
=
=
'/'
)
)
*
p
--
=
0
;
}
strcatW
(
path
,
pwcsName
);
...
...
dlls/winedos/int21.c
View file @
eefb72c8
...
...
@@ -2630,7 +2630,7 @@ static void INT21_Ioctl_Block( CONTEXT86 *context )
TRACE
(
"IOCTL - SET LOGICAL DRIVE MAP for drive %s
\n
"
,
INT21_DriveName
(
BL_reg
(
context
)));
dev
[
0
]
=
'A'
+
drive
;
dev
[
1
]
=
':'
;
dev
[
2
]
=
0
;
tgt
[
0
]
=
'A'
+
drive
+
1
;
dev
[
1
]
=
':'
;
dev
[
2
]
=
'\\'
;
dev
[
3
]
=
0
;
tgt
[
0
]
=
'A'
+
drive
+
1
;
tgt
[
1
]
=
':'
;
tgt
[
2
]
=
'\\'
;
tgt
[
3
]
=
0
;
if
(
!
DefineDosDeviceW
(
DDD_RAW_TARGET_PATH
,
dev
,
tgt
))
{
SET_CFLAG
(
context
);
...
...
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