http://bugs.winehq.org/show_bug.cgi?id=22429
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, patch URL| |http://www.thindownload.com | |/ Component|-unknown |ntdll
--- Comment #29 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2010-06-27 16:26:04 --- thanks very much for analysis! Shall i open a new bug for the thinapps that suffer from the bug like in in comment #2?
(added keywords download+patch, some thinapps can be downloaded from http://www.thindownload.com/, patch below makes app start, i guess we need tests for it diff --git a/dlls/ntdll/om.c b/dlls/ntdll/om.c index c5d9b84..8b05c79 100644 --- a/dlls/ntdll/om.c +++ b/dlls/ntdll/om.c @@ -572,7 +572,7 @@ NTSTATUS WINAPI NtOpenSymbolicLinkObject(OUT PHANDLE LinkHandle, IN ACCESS_MASK req->rootdir = wine_server_obj_handle( ObjectAttributes->RootDirectory ); if (ObjectAttributes->ObjectName) wine_server_add_data(req, ObjectAttributes->ObjectName->Buffer, - ObjectAttributes->ObjectName->Length); + ObjectAttributes->ObjectName->MaximumLength); ret = wine_server_call( req ); *LinkHandle = wine_server_ptr_handle( reply->handle ); } )