We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c28b47 + b2e3fd1 commit 4b96a75Copy full SHA for 4b96a75
NEWS
@@ -8,6 +8,8 @@ PHP NEWS
8
9
- COM:
10
. Fixed bug #63208 (BSTR to PHP string conversion not binary safe). (cmb)
11
+ . Fixed bug #63527 (DCOM does not work with Username, Password parameter).
12
+ (cmb)
13
14
- Core:
15
. Fixed bug #79740 (serialize() and unserialize() methods can not be called
ext/com_dotnet/com_com.c
@@ -133,7 +133,7 @@ PHP_FUNCTION(com_create_instance)
133
info.pwszName = php_com_string_to_olestring(server_name, server_name_len, obj->code_page);
134
135
if (user_name) {
136
- authid.User = php_com_string_to_olestring(user_name, -1, obj->code_page);
+ authid.User = (OLECHAR*)user_name;
137
authid.UserLength = (ULONG)user_name_len;
138
139
if (password) {
0 commit comments