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
80e149d6
Commit
80e149d6
authored
Aug 23, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Aug 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabinet: Pass the session Error to FDICopy.
parent
b76efcb6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
cabinet_main.c
dlls/cabinet/cabinet_main.c
+1
-2
extract.c
dlls/cabinet/tests/extract.c
+1
-1
No files found.
dlls/cabinet/cabinet_main.c
View file @
80e149d6
...
...
@@ -306,7 +306,6 @@ HRESULT WINAPI Extract(SESSION *dest, LPCSTR szCabName)
{
HRESULT
res
=
S_OK
;
HFDI
hfdi
;
ERF
erf
;
char
*
str
,
*
path
,
*
name
;
TRACE
(
"(%p, %s)
\n
"
,
dest
,
szCabName
);
...
...
@@ -319,7 +318,7 @@ HRESULT WINAPI Extract(SESSION *dest, LPCSTR szCabName)
fdi_close
,
fdi_seek
,
cpuUNKNOWN
,
&
erf
);
&
dest
->
Error
);
if
(
!
hfdi
)
return
E_FAIL
;
...
...
dlls/cabinet/tests/extract.c
View file @
80e149d6
...
...
@@ -597,10 +597,10 @@ static void test_Extract(void)
"Expected HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), got %08x
\n
"
,
res
);
ok
(
session
.
Error
.
erfOper
==
FDIERROR_CABINET_NOT_FOUND
,
"Expected FDIERROR_CABINET_NOT_FOUND, got %d
\n
"
,
session
.
Error
.
erfOper
);
ok
(
session
.
Error
.
fError
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
session
.
Error
.
fError
);
}
ok
(
session
.
FileSize
==
0
,
"Expected 0, got %d
\n
"
,
session
.
FileSize
);
ok
(
session
.
Error
.
erfType
==
0
,
"Expected 0, got %d
\n
"
,
session
.
Error
.
erfType
);
ok
(
session
.
Error
.
fError
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
session
.
Error
.
fError
);
ok
(
session
.
FileCount
==
0
,
"Expected 0, got %d
\n
"
,
session
.
FileCount
);
ok
(
session
.
Operation
==
(
EXTRACT_FILLFILELIST
|
EXTRACT_EXTRACTFILES
),
"Expected EXTRACT_FILLFILELIST | EXTRACT_EXTRACTFILES, got %d
\n
"
,
session
.
Operation
);
...
...
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