https://bugs.winehq.org/show_bug.cgi?id=54490
Bug ID: 54490
Summary: vbscript fails to compile when statement follows
ElseIf
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While working on porting Visual Pinball to cross platform, I ran into a code
example where ElseIf had a statement was on the same line:
If Lampz.state(130) = 0 AND Lampz.state(132) = 0 AND Lampz.state(136) =
0 Then
'
ACDC.ColorGradeImage="ColorGrade_off":Translite.Blenddisablelighting=0.2:For
Each bulb in BandMembersPoster: bulb.IntensityScale=0 :Next
ACDC.ColorGradeImage="ColorGrade_off":LM_Translite.intensityscale=0:For Each
bulb in BandMembersPoster: bulb.IntensityScale=0 :Next
ElseIf Lampz.state(130) > 0 AND Lampz.state(132) = 0 AND
Lampz.state(134) > 0 AND Lampz.state(136) = 0 Then
ACDC.ColorGradeImage="ColorGrade_red"
ElseIf Lampz.state(130) = 0 AND Lampz.state(132) > 0 AND
Lampz.state(134) = 0 AND Lampz.state(136) = 0 Then
ACDC.ColorGradeImage="ColorGrade_blue"
Else
'
ACDC.ColorGradeImage="ColorGrade_on":Translite.Blenddisablelighting=4:For Each
bulb in BandMembersPoster: bulb.IntensityScale=1:Next
ACDC.ColorGradeImage="ColorGrade_on":LM_Translite.intensityscale=1:For Each
bulb in BandMembersPoster: bulb.IntensityScale=1:Next
End If
The grammar was expecting a NL after ElseIf Then.
I have submitted a merge request:
https://gitlab.winehq.org/wine/wine/-/merge_requests/2188
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54215
Bug ID: 54215
Summary: ListView doesn't refresh when changing between List
and Details styles.
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: timoninvlad(a)yandex.ru
Distribution: ---
Can be observed in any `GetOpenFileName`/`GetSaveFileName` file dialog, for
example in `notepad` or `regedit`.
Regressed after a8396d8b1e852276b6cea9f2c50834739d1170da.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=53981
Bug ID: 53981
Summary: Chromium broken sandbox due to GetSecurityInfo giving
access denied
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 73562
--> https://bugs.winehq.org/attachment.cgi?id=73562
Hack to make it run
Chromium added some changes that break under wine.
Bisected to
https://github.com/chromium/chromium/commit/334d609732bfa22da7e5dd5e3543949…
Callstack:
https://github.com/chromium/chromium/blob/334d609732bfa22da7e5dd5e3543949c9…
broker_services.cc: ResultCode
BrokerServicesBase::CreateAlternateDesktop(Desktop desktop)
ResultCode result = alt_winstation_->Initialize(true);
ResultCode result = alt_desktop_->Initialize(false);
https://github.com/chromium/chromium/blob/334d609732bfa22da7e5dd5e3543949c9…
alternate_desktop.cc: ResultCode AlternateDesktop::Initialize(bool
alternate_winstation)
ResultCode result = CreateAltWindowStation(&winstation_);
https://github.com/chromium/chromium/blob/334d609732bfa22da7e5dd5e3543949c9…
window.cc: ResultCode CreateAltWindowStation(HWINSTA* winsta)
if (!GetSecurityAttributes(current_winsta, &attributes))
https://github.com/chromium/chromium/blob/334d609732bfa22da7e5dd5e3543949c9…
window.cc: bool GetSecurityAttributes(HANDLE handle, SECURITY_ATTRIBUTES*
attributes)
GetSecurityInfo
Then we enter "GetSecurityInfo" inside Wine.
That calls into NtQuerySecurityObject
And inside wineserver we call
struct object *get_handle_obj( struct process *process, obj_handle_t handle,
unsigned int access, const struct object_ops *ops )
which returns STATUS_ACCESS_DENIED
Attaching a hack to remove that check, that makes chrome run.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54458
Bug ID: 54458
Summary: vbscript memory leaks in Global_Split
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While porting Visual Pinball to cross platform, I started using XCode
Instruments to find some outstanding memory leaks.
There appears to be a memory leak in Global_Split.
The BSTRs that get copied from "var" into the SafeArray using VariantCopyInd
are never freed.
The following code changes fix this:
for (i = 0; i < count; i++) {
str = SysAllocStringLen(string + start, indices[i] - start);
if (!str) {
hres = E_OUTOFMEMORY;
break;
}
V_VT(&var) = VT_BSTR;
V_BSTR(&var) = str;
hres = VariantCopyInd(data+i, &var);
if(FAILED(hres)) {
SafeArrayUnaccessData(sa);
SysFreeString(str);
goto error;
}
start = indices[i]+delimiterlen;
SysFreeString(str);
}
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54456
Bug ID: 54456
Summary: vbscript memory leak in For Each with SafeArray as
group
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While porting Visual Pinball to cross platform, I started using XCode
Instruments to find some outstanding memory leaks.
Given the following code:
Class cvpmDictionary
Private mDict
Private Sub Class_Initialize : Set mDict =
CreateObject("Scripting.Dictionary") : mDict("key") = "value" : End Sub
Public Function Keys : Keys = mDict.Keys : End
Function
End Class
Dim vpDict
Set vpDict = New cvpmDictionary
Sub RollingTimer_Timer
For Each obj In vpDict.Keys : Debug.Print "Key" : Next
End Sub
RollingTimer_Timer gets executed a few times a second. This seems to leak the
vpDict.Keys SafeArray.
If I change the code to:
Sub RollingTimer_Timer
Dim x
x = vpDict.Keys
For Each obj In x : Debug.Print "Key" : Next
End Sub
No memory leaks are detected. In this case, release_exec calls VariantClear for
ctx->vars which frees the SafeArray in X.
In the first case, vpDict.Keys doesn't appear to be stored anywhere, so nothing
is freed in release_exec.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54379
Bug ID: 54379
Summary: since wine 8.0 print doesn't work any more
Product: Wine
Version: 8.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spam(a)abma.de
Distribution: ---
after upgrading to wine 8.0 printing to a network printer doesn't work any
more.
with wine 7.0 printing the same on the same printer just works.
i've run the app with:
WINEDEBUG=+winprint
see attachment:
not sure if relevant, what looks suspicious:
OpenPrintProcessor L", Port", 0740D014
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=49615
Bug ID: 49615
Summary: since 5.5 : fail DVD access without any need or cause.
Product: Wine-staging
Version: 5.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winebugs(a)evolution-hosting.eu
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 67801
--> https://bugs.winehq.org/attachment.cgi?id=67801
dmesg output
OS: Fedora 31
ARCH: X86_64
CPU: FX8350
On wine-staging start, the attached log is produced, everytime a programm is
started and sometimes in conjunction with NVRM Xid 31/32 errors for Nvidia gfx
car.
This can be observed since wine 5.5 .
3d party extension: DXVK
packages installed:
mingw32-wine-gecko-2.47.1-1.fc31.noarch
mingw64-wine-gecko-2.47.1-1.fc31.noarch
wine-5.10-1.fc31.i686
wine-5.10-1.fc31.x86_64
wine-alsa-5.10-1.fc31.i686
wine-alsa-5.10-1.fc31.x86_64
wine-arial-fonts-5.10-1.fc31.noarch
wine-capi-5.10-1.fc31.i686
wine-capi-5.10-1.fc31.x86_64
wine-cms-5.10-1.fc31.i686
wine-cms-5.10-1.fc31.x86_64
wine-common-5.10-1.fc31.noarch
wine-core-5.10-1.fc31.i686
wine-core-5.10-1.fc31.x86_64
wine-courier-fonts-5.10-1.fc31.noarch
wine-debuginfo-2.10-1.fc25.x86_64
wine-desktop-5.10-1.fc31.noarch
wine-filesystem-5.10-1.fc31.noarch
wine-fixedsys-fonts-5.10-1.fc31.noarch
wine-fonts-5.10-1.fc31.noarch
wine-ldap-5.10-1.fc31.i686
wine-ldap-5.10-1.fc31.x86_64
wine-marlett-fonts-5.10-1.fc31.noarch
wine-mono-5.0.0-1.fc31.noarch
wine-ms-sans-serif-fonts-5.10-1.fc31.noarch
wine-openal-5.10-1.fc31.i686
wine-openal-5.10-1.fc31.x86_64
wine-opencl-5.10-1.fc31.i686
wine-opencl-5.10-1.fc31.x86_64
wine-pulseaudio-5.10-1.fc31.i686
wine-pulseaudio-5.10-1.fc31.x86_64
wine-small-fonts-5.10-1.fc31.noarch
wine-staging64-5.13-1.3.x86_64
wine-staging-common-5.13-1.3.i686
wine-symbol-fonts-5.10-1.fc31.noarch
wine-systemd-5.10-1.fc31.noarch
wine-system-fonts-5.10-1.fc31.noarch
wine-tahoma-fonts-5.10-1.fc31.noarch
wine-tahoma-fonts-system-5.10-1.fc31.noarch
wine-times-new-roman-fonts-5.10-1.fc31.noarch
winetricks-20200412-1.fc31.noarch
wine-twain-5.10-1.fc31.i686
wine-twain-5.10-1.fc31.x86_64
wine-wingdings-fonts-5.10-1.fc31.noarch
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54495
Bug ID: 54495
Summary: Motorola Ready For Assistant does not start
Product: Wine
Version: 8.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lischak(a)gmail.com
Distribution: ---
Created attachment 74049
--> https://bugs.winehq.org/attachment.cgi?id=74049
install+run of v04.0.0.010.000 on Wine 8.1
Motorola Ready For Assistant is a software for interfacing with Motorolas from
desktop, allowing either phone screen mirror or a full-sized Android-powered
desktop similar to Samsung DeX. The installer appears to finish successfully,
but the application will not start.
Installation file is freely downloadable:
https://web.archive.org/web/20230214220515/https://download.lenovo.com/leno…
# ReadyFor is reportedly supported on Win10, make sure our prefix is Win10
WINEPREFIX=~/.wine_readyfor winecfg
cd ~/Downloads
WINEPREFIX=~/.wine_readyfor wine ReadyFor_setup_04.0.0.010.000.exe
cd ~/.wine_readyfor/drive_c/Program\ Files/Lenovo/Ready\ For\ Assistant
WINEPREFIX=~/.wine_readyfor wine ReadyFor.exe
Attaching log from installation and from a follow-up run.
Env: Fedora 37, using the appropriate official WineHQ repo.
Note: The software is apparently only available via MS Store nowadays, but the
Store install just downloads a normal Win32 .exe from Motorola/Lenovo's servers
in the background.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54493
Bug ID: 54493
Summary: vbscript fails to compile concat when used without
space and expression begins with H
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While porting Visual Pinball to cross platform, I ran into a script with the
following:
DMD CL(0, "HIGHSCORES"), "1> " &HighScoreName(0) & " "
&FormatScore(HighScore(0)), "", eNone, eScrollLeft, eNone, 2000, False, ""
This is valid in vbscript and knows that &HighScoreName is not a hex number.
In lex.c I see:
case '&':
if(*++ctx->ptr == 'h' || *ctx->ptr == 'H')
return parse_hex_literal(ctx, lval);
return '&';
Is there a way we could advance to make sure it's really a hex value instead of
a variable?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54376
Bug ID: 54376
Summary: ws2_32:sock - test_reuseaddr() overflows a sockaddr
variable by reading an AF_INET6 peer name into it
Product: Wine
Version: 8.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: jinoh.kang.kr(a)gmail.com
CC: pgofman(a)codeweavers.com
Regression SHA1: c6da691926c418697ab982a284228772837a4be2
Distribution: ---
ws2_32:sock - test_reuseaddr() overflows a sockaddr variable (saddr) by passing
it as a peer name buffer to accept() on an IPv6 TCP listener socket, which then
assumes that the buffer is at least as large as struct sockaddr_in6.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54353
Bug ID: 54353
Summary: crypt32:cert - testVerifyRevocation() gets unexpected
success in Wine on second run
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
crypt32:cert - testVerifyRevocation() gets unexpected success in some Wine
configurations:
cert.c:3910: Test failed: success
cert.c:3911: Test failed: got 00000000
See https://test.winehq.org/data/patterns.html#crypt32:cert
In fact the test only succeeds on the first run in a given wineprefix. All
later runs fail:
$ rm -rf ~/.wineprefix
$ ./wine dlls/crypt32/tests/i386-windows/crypt32_test.exe cert
0700:cert:0.615 608 tests executed (0 marked as todo, 0 as flaky, 0 failures),
0 skipped.
$ ./wine dlls/crypt32/tests/i386-windows/crypt32_test.exe cert
cert.c:3910: Test failed: success
cert.c:3911: Test failed: got 00000000
078c:cert:0.242 608 tests executed (0 marked as todo, 0 as flaky, 2 failures),
0 skipped.
# Running the test again gets the same failures
This is why the test.winehq.org only has failures for my fg_deb64-wow32 test
configuration: on my desktop I run the wow64 tests first, and then the wow32
tests in the same wineprefix.
A bisect shows that these failures were introduced by the commit below:
commit 67de946ca9bdc8f39adffca57a336165936e62e2 (refs/bisect/bad)
Author: Paul Gofman <pgofman(a)codeweavers.com>
Date: Wed Jan 11 14:00:48 2023 -0600
cryptnet: Check cached revocation status in verify_cert_revocation().
That is, before this commit, running the test twice in a row was not an issue.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54337
Bug ID: 54337
Summary: AviUtl shows Japanese text as garbage after conversion
in ExEdit edit box
Product: Wine
Version: 8.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: sagawa.aki+winebugs(a)gmail.com
Distribution: ---
Created attachment 73906
--> https://bugs.winehq.org/attachment.cgi?id=73906
Illustration of AviUtl mojibake
AviUtl is a Japanese AVI file editing tool. When a user inputs Japanese text to
the certain edit box with Input Method, it shows garbage, i.e. mojibake.
How to reproduce:
1. Download aviutl110.zip and exedit93rc1.zip respectively from
http://spring-fragrance.mints.ne.jp/aviutl/
2. Unzip them.
3. Launch aviutil.exe in Japanese locale, i.e. LANG=ja_JP.UTF-8 wine aviutl.exe
4. From the menu bar, select [設定]-[拡張編集の設定] (Settings-ExEdit Settings). The
window titled 拡張設定 (ExEdit) will be shown.
5. Right click the time-line part on the window and select [新規プロジェクトの作成]
(Create new project) in the context menu. New dialog window will appear.
6. In 新規プロジェクトの作成 dialog window, click [OK].
7. Right click the time-line part on the 拡張編集 window, again.
8. In the context menu, select the topmost [メディアオブジェクトの追加] (Add a media object)
- [テキスト] (Text) in the context menu. Another dialog window titled テキスト will be
shown.
9. Focus on the edit box in the bottom most of the dialog window.
10. Input Japanese characters "あいう" (aiu) with your favorite Input Method.
11. Type [ENTER] to finish conversion.
Expected behavior:
* After conversion, "あいう" will be shown in the edit box.
Actual behavior:
* After conversion, "・「・、・" is shown.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52506
Bug ID: 52506
Summary: Setup of game "What's the Secret?" fails to create
icon
Product: Wine
Version: 7.1
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 71804
--> https://bugs.winehq.org/attachment.cgi?id=71804
Output of `WINEDEBUG=+shell wine 3msetup.exe`
The children's educational game "What's the Secret?" creates a program group
named "3M Learning Software" and an icon within it named "What's the Secret?",
as can be seen in the attached trace:
0080:trace:shell:Dde_OnExecute conv=000000000025B0A0 topic=L"Progman"
data=L"[CreateGroup(3M Learning Software)]"
0080:trace:shell:Dde_OnExecute conv=000000000025B0A0 topic=L"Progman"
data=L"[AddItem(\"C:\\windows\\apw_data\\launch.exe F:\\3MSecret.exe\",What's
the Secret?)]"
There are two problems here:
1. The icon's target is a path plus arguments, which Wine does not support.
2. The icon name includes a question mark. That worked just fine on Windows
3.1, but when the Program Manager was replaced with the Start menu in Windows
95, "What's the Secret?" was automatically converted to "What's the Secret_" to
make it a valid file name. Wine imitates the Start menu but doesn't do any icon
name sanitization.
Although installation fails, the game can still be run directly from the CD.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54707
Bug ID: 54707
Summary: adsldp:ldap - test_DirectorySearch() fails on Windows
and Linux
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: wldap32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
adsldp:ldap - test_DirectorySearch() fails on Windows and Linux:
ldap.c:253: search DN L"LDAP://ldap.forumsys.com"
ldap.c:253: search DN
L"LDAP://ldap.forumsys.com/OU=scientists,DC=example,DC=com"
ldap.c:313: Test failed: expected extra value L"uid=training,dc=example,dc=com"
ldap.c:253: search DN
L"LDAP://ldap.forumsys.com/OU=scientists,DC=example,DC=com"
ldap.c:313: Test failed: expected extra value L"uid=training,dc=example,dc=com"
See https://test.winehq.org/data/patterns.html#adsldp:ldap
This started on 2023-03-17 (or on 2023-03-16 when the test was timing out due
to a server outage). This happens with older builds too so it looks like this
is caused by changes in the LDAP server configuration. But the test needs to be
adjusted.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54570
Bug ID: 54570
Summary: Saints Row: The Third heavy rain causes heavy fps
reductions
Product: vkd3d
Version: 1.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: illia.a.polishchuk(a)globallogic.com
Distribution: ---
Originally the issue is fired for DXVK here:
https://github.com/doitsujin/dxvk/issues/2473
Trace can be found in this link:
https://github.com/doitsujin/dxvk/issues/3157#issue-1514789107
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54489
Bug ID: 54489
Summary: vbscript Abs on BSTR returns invalid value
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While porting Visual Pinball to cross platform, I found some code where Abs was
returning an invalid value when the source value was a string:
Dim x
x = "30000"
Debug.Print "x" & "=" & abs(x)
Outputs:
Script.Print 'x=3.08221696253945E-314'
After further research, it turns out the issue is in VarAbs in oleaut32.c:
I've submitted an MR to handle this:
https://gitlab.winehq.org/wine/wine/-/merge_requests/2175
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54432
Bug ID: 54432
Summary: Missing ntdll.RtlAddressInSectionTable()
implementation causes all GraalVM Native Image exes to
crash on load
Product: Wine
Version: 8.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: axel(a)axelfontaine.com
Distribution: ---
All exes produced by GraalVM Native Image attempt to locate a copy of their
initial heap within the exe file. To do so they use the
ntdll.RtlAddressInSectionTable() call as can be seen here:
https://github.com/oracle/graal/blob/master/substratevm/src/com.oracle.svm.…
As wine always returns 0, all these exes fail the following check on startup:
https://github.com/oracle/graal/blob/master/substratevm/src/com.oracle.svm.…
And terminate immediately with exit code 127.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54371
Bug ID: 54371
Summary: loader won't launch from PATH unless named "wine"
Product: Wine
Version: 7.22
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: gcenx83(a)gmail.com
When attempting to load wine64 from $PATH from wine-7.22 and later I'm getting
the following message.
> wine: could not exec the wine loader
When launched using the full path aka /opt/local/bin/wine64 it works without
issue.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52878
Bug ID: 52878
Summary: Improve software components also for using “Free PC
Audit”
Product: Wine
Version: 7.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Markus.Elfring(a)web.de
Distribution: ---
I have tried the tool “Free PC Audit 5.1.211.96” out together with the software
“Wine 7.7-1449.4”.
Markus_Elfring@Sonne:~> wine
/home/altes_Heim2/elfring/geladen/Freeware/freepcaudit.exe
00c4:err:ntoskrnl:ZwLoadDriver failed to create driver
L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\SecDrv": c0000142
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"SecDrv"
failed to start: 1114
0024:fixme:thread:GetThreadUILanguage : stub, returning default language.
…
0024:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0113D9D4, 033AA680
0113D9FC
0024:fixme:nls:get_dummy_preferred_ui_language (0x38 0113D9D4 033AA680
0113D9FC) returning a dummy value (current locale)
0024:fixme:wtsapi:WTSRegisterSessionNotification Stub 00010078 0x00000000
0024:fixme:uxtheme:BufferedPaintInit Stub ()
0024:err:listview:LISTVIEW_WindowProc unknown msg 109d, wp 0, lp 0
0070:fixme:imm:ImeSetActiveContext (0x5a7b0, 0): stub
0070:fixme:imm:ImmReleaseContext (0000000000010020, 000000000005A7B0): stub
0024:fixme:imm:ImeSetActiveContext (0x268260, 1): stub
0024:fixme:imm:ImmReleaseContext (000100BE, 00268260): stub
0024:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0024:fixme:wbemdisp:object_Instances_
…
0024:fixme:wbemprox:class_object_GetMethod Method L"GetBinaryValue" not found
in class L"StdRegProv".
0024:fixme:wbemdisp:object_SpawnInstance_
…
0058:fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and
DISK_DETECTION_INFO structures will not be filled
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
…
0024:fixme:wuapi:automatic_updates_GetIDsOfNames
…
0120:fixme:secur32:get_cipher_algid unknown algorithm 23
0120:fixme:secur32:get_mac_algid unknown algorithm 200, cipher 23
I would like to see more helpful information on the tab “Brief” (than an IP
address).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54357
Bug ID: 54357
Summary: Spurious fixme message when calling ScrollWindow()
Product: Wine
Version: 8.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: vz-wine(a)zeitlins.org
Distribution: ---
`ScrollWindow()` calls `NtUserScrollWindowEx()` with `SW_NODCCACHE` in the
flags, but this function complains if it's passed anything other than
`SW_SCROLLCHILDREN | SW_INVALIDATE | SW_ERASE`.
This seems to be due to a relatively recent b2db69efcf4 (win32u: Move
NtUserScrollWindowEx implementation from user32., 2022-06-08) as it replaced
the call to the internal `scroll_window()` with a call to
`NtUserScrollWindowEx()` with this unrecognized flag.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54234
Bug ID: 54234
Summary: vbscript fails to compile when colon follows Else in
If...Else
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
I just ran into a script where there is a ':' separator on a new line after an
ELSE:
if IsEmpty(BallData(idx).id) and aBall.VelY < -12 then 'if tip
hit with no collected data, do vel correction anyway
if PSlope(aBall.x, FlipperStart, 0, FlipperEnd, 1) >
1.1 then 'adjust plz
VelCoef = LinearEnvelope(5, VelocityIn,
VelocityOut)
if partialflipcoef < 1 then VelCoef =
PSlope(partialflipcoef, 0, 1, 1, VelCoef)
if Enabled then aBall.Velx =
aBall.Velx*VelCoef'VelCoef
if Enabled then aBall.Vely =
aBall.Vely*VelCoef'VelCoef
end if
Else
: VelCoef = LinearEnvelope(BallPos, VelocityIn,
VelocityOut)
if Enabled then aBall.Velx = aBall.Velx*VelCoef
if Enabled then aBall.Vely = aBall.Vely*VelCoef
end if
I was able to fix this by changing:
Else_opt
: /* empty */ { $$ = NULL; }
| tELSE NL StatementsNl_opt { $$ = $3; }
| tELSE StatementsNl_opt { $$ = $2; }
to
Else_opt
: /* empty */ { $$ = NULL; }
| tELSE StSep_opt StatementsNl_opt { $$ = $3; }
| tELSE StatementsNl_opt { $$ = $2; }
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=53926
Bug ID: 53926
Summary: New typelib marshaller depends on IID_IDispatch
support from target interface
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression, testcase
Severity: normal
Priority: P2
Component: oleaut32
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
CC: z.figura12(a)gmail.com
Regression SHA1: 077b4391d442e927a2a59b5afb244355b0634aaa
Distribution: ---
Created attachment 73481
--> https://bugs.winehq.org/attachment.cgi?id=73481
test (source + binary)
New typelib marshaller depends on IID_IDispatch support from target
interface, however applications created with Delphi/.Net don't always
follow this implication.
This is a regression, and it starts from
commit 077b4391d442e927a2a59b5afb244355b0634aaa
Author: Zebediah Figura <z.figura12(a)gmail.com>
Date: Fri Nov 9 18:02:00 2018 -0600
oleaut32: Rip out the old typelib marshaller.
Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com>
Signed-off-by: Marcus Meissner <marcus(a)jet.franken.de>
Signed-off-by: Huw Davies <huw(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
Old typelib marshaller didn't have a requirement that an interface a proxy/
stub being created for must support IID_IDispatch.
Attached testcase replicates what I can deduce from the logs, and runs
without failures under wine-3.0.5, but fails in several places under newer
versions of Wine. The test produces 2 extra IUnknown::QueryInterface() calls
under wine-3.0.5 during ::CreateStub() invocation, however it's pretty simple
to fix following a FIXME in oleaut32 and stub manager in ole32, after that
the test output from wine-3.0.5 matches what I observe under windows 10.
Although the test uses IConnectionPoint::Advise() to reproduce the bug (as
the application that I have here does) it seems that any client<=>server
remote call reliably replicates the problem, and source of the bug leads
to CreateStub/CreateProxy limitations.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54690
Bug ID: 54690
Summary: ldp.exe crashes when attempting to connect to an
invalid host
Product: Wine
Version: 8.3
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wldap32
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 74201
--> https://bugs.winehq.org/attachment.cgi?id=74201
WINEDEBUG=+wldap32
ldp.exe is Microsoft's GUI LDAP client, which was part of the Windows XP
Service Pack 2 Support Tools and is still available on Windows 10 by installing
the Windows feature "Active Directory Lightweight Directory Services".
Steps to reproduce:
1. Create a 32-bit Wine bottle and set the Windows version to XP.
2. Run `winetricks mfc42`.
3. Run `wine WindowsXP-KB838079-SupportTools-ENU.exe`.
4. Run `wine 'C:\Program Files\Support Tools\ldp.exe'`.
5. Click Connection > Connect, leave "Server" blank, and click OK.
At this point, ldp.exe crashes. However, the program does not crash if a valid
LDAP server is entered.
$ sha256sum WindowsXP-KB838079-SupportTools-ENU.exe
7927e87af616d2fb8d4ead0db0103eb845a4e6651b20a5bffea9eebc3035c24d
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.