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
9a14d5d0
Commit
9a14d5d0
authored
Jun 04, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Use the right allocator for BSTR values in get_owner.
parent
8e1aa435
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
process.c
dlls/wbemprox/process.c
+2
-2
No files found.
dlls/wbemprox/process.c
View file @
9a14d5d0
...
...
@@ -40,14 +40,14 @@ static HRESULT get_owner( VARIANT *user, VARIANT *domain, VARIANT *retval )
len
=
0
;
GetUserNameW
(
NULL
,
&
len
);
if
(
GetLastError
()
!=
ERROR_INSUFFICIENT_BUFFER
)
goto
done
;
if
(
!
(
V_BSTR
(
user
)
=
heap_alloc
(
len
*
sizeof
(
WCHAR
)
)))
goto
done
;
if
(
!
(
V_BSTR
(
user
)
=
SysAllocStringLen
(
NULL
,
len
-
1
)))
goto
done
;
if
(
!
GetUserNameW
(
V_BSTR
(
user
),
&
len
))
goto
done
;
V_VT
(
user
)
=
VT_BSTR
;
len
=
0
;
GetComputerNameW
(
NULL
,
&
len
);
if
(
GetLastError
()
!=
ERROR_BUFFER_OVERFLOW
)
goto
done
;
if
(
!
(
V_BSTR
(
domain
)
=
heap_alloc
(
len
*
sizeof
(
WCHAR
)
)))
goto
done
;
if
(
!
(
V_BSTR
(
domain
)
=
SysAllocStringLen
(
NULL
,
len
-
1
)))
goto
done
;
if
(
!
GetComputerNameW
(
V_BSTR
(
domain
),
&
len
))
goto
done
;
V_VT
(
domain
)
=
VT_BSTR
;
...
...
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