https://bugs.winehq.org/show_bug.cgi?id=49965
Bug ID: 49965 Summary: Wine crash upon clicking a password form Product: Wine Version: 5.0 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: javi@legido.com Distribution: ---
Created attachment 68360 --> https://bugs.winehq.org/attachment.cgi?id=68360 Backtrace
First of all many thanks to all the people involved in this project for their time.
A) Steps to reproduce
1.1. Create below Dockerfile:
``` vim Dockerfile ```
With below content:
``` FROM debian:testing
RUN dpkg --add-architecture i386 && apt update
RUN apt install -y \ wine \ wine32 \ wine64 \ libwine \ libwine:i386 \ fonts-wine \ wget
RUN apt-get install -y \ cabextract \ unzip \ p7zip \ wget \ zenity \ kdialog \ winbind
RUN wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetrick...
RUN chmod +x winetricks
RUN mv winetricks /usr/local/bin ```
1.2. Create a docker container
``` docker run \ --name wine \ --net=host \ -e DISPLAY \ -v $HOME/.Xauthority:/root/.Xauthority \ -d localhost/wine \ /bin/sh -c "while true; do echo hello world; sleep 1; done" docker exec -ti wine bash ```
1.3. Install dotnet in 32 bits architecture
``` env WINEARCH=win32 WINEPREFIX=~/.wine32 winetricks dotnet461 ```
Here I tried with other versions, looks like there's no difference
1.4. Restart docker container (Window$ philosophy):
``` exit docker restart wine; docker exec -ti wine bash ```
1.5. Install Adobe Digital Editions 4.5
``` cd env WINEARCH=win32 WINEPREFIX=~/.wine32 wine .wine32/drive_c/Program\ Files/Adobe/Adobe\ Digital\ Editions\ 4.5/DigitalEditions.exe ```
I also tried with version 4.0, but same result
1.6. Try to register
1.6.1. Click 'Help', then 'Authorize computer'
1.6.2. Click the password field in the form
B) Expected behaviour
Being able to type the password
C) Found behaviour
The application crashes and exited. Sometimes I can't even relaunch it with below command:
``` cd env WINEARCH=win32 WINEPREFIX=~/.wine32 wine .wine32/drive_c/Program\ Files/Adobe/Adobe\ Digital\ Editions\ 4.5/DigitalEditions.exe ```
D) Error found
Below error appears in the docker terminal:
``` 0009:err:eventlog:ReportEventW L"Application: DigitalEditions.exe\nFramework Version: v4.0.30319\nDescription: The application requested process termination through System.Environment.FailFast(string message).\nMessage: Unrecoverable system error.\nStack:\n at System.Environment.FailFast(System.String)\n at MS.Intern"... ```
Attached a Windows trace that one time I was able to get.
Thanks.
Javier