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
2e11733f
Commit
2e11733f
authored
Apr 28, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Apr 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Don't ask for a name if it's not required.
parent
08a9bf7d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
memlockbytes.c
dlls/ole32/memlockbytes.c
+1
-1
rpc.c
dlls/ole32/rpc.c
+1
-1
storage32.c
dlls/ole32/storage32.c
+1
-1
No files found.
dlls/ole32/memlockbytes.c
View file @
2e11733f
...
...
@@ -160,7 +160,7 @@ HRESULT WINAPI GetHGlobalFromILockBytes(ILockBytes* plkbyt, HGLOBAL* phglobal)
return
S_OK
;
}
/* It is not our lockbytes implementation, so use a more generic way */
hres
=
ILockBytes_Stat
(
plkbyt
,
&
stbuf
,
0
);
hres
=
ILockBytes_Stat
(
plkbyt
,
&
stbuf
,
STATFLAG_NONAME
);
if
(
hres
!=
S_OK
)
{
ERR
(
"Cannot ILockBytes_Stat, %x
\n
"
,
hres
);
return
hres
;
...
...
dlls/ole32/rpc.c
View file @
2e11733f
...
...
@@ -1904,7 +1904,7 @@ static DWORD WINAPI local_server_thread(LPVOID param)
TRACE
(
"marshalling IClassFactory to client
\n
"
);
hres
=
IStream_Stat
(
pStm
,
&
ststg
,
0
);
hres
=
IStream_Stat
(
pStm
,
&
ststg
,
STATFLAG_NONAME
);
if
(
hres
)
return
hres
;
seekto
.
u
.
LowPart
=
0
;
...
...
dlls/ole32/storage32.c
View file @
2e11733f
...
...
@@ -6310,7 +6310,7 @@ HRESULT WINAPI ReadClassStg(IStorage *pstg,CLSID *pclsid){
/*
* read a STATSTG structure (contains the clsid) from the storage
*/
hRes
=
IStorage_Stat
(
pstg
,
&
pstatstg
,
STATFLAG_
DEFAULT
);
hRes
=
IStorage_Stat
(
pstg
,
&
pstatstg
,
STATFLAG_
NONAME
);
if
(
SUCCEEDED
(
hRes
))
*
pclsid
=
pstatstg
.
clsid
;
...
...
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