https://bugs.winehq.org/show_bug.cgi?id=37132
Bug ID: 37132
Summary: Clang Static Analyzer: Uninitialized array item
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies Uninitialized array item
File: dlls/avifil32/api.c
Location: line 1753, column 10
Description: Assigned value is garbage or undefined
#define MAX_AVISTREAMS 8
...
HRESULT WINAPI AVISaveVW(....int nStreams ....)
{
...
//Declaring 8-item array, [0..7]
PAVISTREAM pInStreams[MAX_AVISTREAMS];
...
if (nStreams >= MAX_AVISTREAMS) {
WARN(...);
return AVIERR_INTERNAL;
}
...
//Initializing first 7 items, [0..6].
for (curStream = 0; curStream < nStreams; curStream++) {
pInStreams[curStream] = NULL;
pOutStreams[curStream] = NULL;
}
...
for (curStream = 0; curStream < nStreams; curStream++) {
...
if (curStream + 1 >= nStreams) {
/* move the others one up */
PAVISTREAM *ppas = &pInStreams[curStream];
int n = nStreams - (curStream + 1);
do {
*ppas = pInStreams[curStream + 1];
//Clang: Assigned value is garbage or undefined
} while (--n);
}
...
}
...
}
In this code, an array of 8 items is declared. The code will continue executing
as long as the nStreams variable is less than 8, i.e. 7 at most. All the loops
in this function with the conditional statement (curStream < nStreams) fail to
iterate through the last item, both before its initialization and when using
it. The line Clang displayed the message on is just that very line where the
eighth item with the index 7 is taken, as the (curStream + 1 >= nStreams)
condition will be true at curStream==6 and nStreams==7. Addressing the
pInStreams[curStream + 1] array will give us the last, previously uninitialized
item.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=34758
Bug #: 34758
Summary: Unhandled exception: divide by zero in 32-bit code
(0x7eabe0ee). under unbuntu 12.04 wine 1.6
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Francis.Bougron(a)free.fr
Classification: Unclassified
Created attachment 46350
--> http://bugs.winehq.org/attachment.cgi?id=46350
Trace of debugger
This happens when starting "Microsoft money97 5.0.
I see bugs 33886 34451 300082.
It is probably the same thing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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=57651
Bug ID: 57651
Summary: Line messenger app doesn't work correctly
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thismailboxforspam(a)proton.me
Distribution: ---
Created attachment 77794
--> https://bugs.winehq.org/attachment.cgi?id=77794
image shows how looks wine app borders covered by another app window
I'm using wine mostly for Line messenger
(https://apps.microsoft.com/detail/xpfcc4cd725961?hl=en-US&gl=US)
Current version of Line app is 9.0.0.3339. And here is two problems with the
app
1. The app by itself is working correct, but I can't open any modal windows.
When I press a button to open a window, the app crashes with error in log:
`elf_search_auxv can't find symbol in module`.
2. The app window borders are always on top. I can't see contents of the app if
any other app is opened in front of it but window borders and border shadows
are visible anytime. Also it is possible to click borders and resize the window
by moving mouse cursor. I will attach image with Firefox browser's white
background covered by Line app borders.
These problems exists about 2~3 years on all my 4-5 PCs for all time I'm using
wine. I seen this bug at Gnome and KDE. All OSes I used are affected (Ubuntu,
Fedora, Debian). So It should be easily reproducible.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=5129
--- Comment #42 from panning_gigahertz141(a)simplelogin.com ---
I recreated this again on a fresh install from comment 41. It didn't work the
first try so this is what I did to fix it:
winetricks:
Select default wineprefix
Install a Windows DLL or component
comctl32
winecfg:
Libraries tab ensure these are exactly as below
comctl32(builtin)
*comctl32(builtin,native) NOTE: this was set to native,builtin which
seemed to be the problem
Note: this time, Faststone launches from the shortcut without me having to
remove the env variables and work path.
--
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=50618
Bug ID: 50618
Summary: FoxPro for Windows 2.6a fails to start
Product: Wine
Version: 6.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: JSladek(a)juno.com
Distribution: ---
Created attachment 69308
--> https://bugs.winehq.org/attachment.cgi?id=69308
Terminal output with both start conditions
Any attempt to start foxprow.exe with or without an appended program script
results in a program crash. Attached are copies of terminal output for both
types or foxprow start.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=5129
panning_gigahertz141(a)simplelogin.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |panning_gigahertz141@simple
| |login.com
--- Comment #41 from panning_gigahertz141(a)simplelogin.com ---
Thank God for you folks!
I have Faststone Viewer 5.7 working with Kubuntu 24.04 on Wayland with Wine
10.0.
unxed's script was a big help to read through but it didn't actually work for
my install. I'm far from a programmer but think it's because the install path
was Program Files x86 vs Program Files.
my steps - follow at your own peril:
install FSViewer with wine (download here:
http://web.archive.org/web/20210211222841if_/http://www.faststonesoft.net/D…)
use these steps to get/unzip the comctl32.dll:
wget
https://downloads.sourceforge.net/project/pocmin/Win%2095_98%20Controls/Win…
wine ./CC32inst.exe /T:C:\comctl32.tmp /C /Q
unzip ~/.wine/drive_c/comctl32.tmp/comctl32.tmp/comctl32.exe -d
~/.wine/drive_c/comctl32.tmp/comctl32.tmp
wine ~/.wine/drive_c/comctl32.tmp/comctl32.tmp/x86/50ComUpd.Exe
/T:C:\comctl32.tmp.1 /C /Q
copy the newly created comcnt.dll from
~/.wine/drive_c/comctl32.tmp.1/comctl32.tmp.1/ to the Faststone install
directory. For me it was /~/.wine/drive_c/Program Files (x86)/FastStone Image
Viewer/
make a backup copy of FSViewer.exe
use a hex editor (I used Jeex) to find and replace the term comctl32 and
replace with comctr32 I think there's only ONE in this file.
Run these from the terminal:
wine reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v comctl32 /t
REG_SZ /d builtin /f
wine reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v *comctl32 /t
REG_SZ /d builtin /f
This gets it actually working on a direct launch of the .exe in the
installation folder, but something is wrong with the shortcut in the App
drawer, etc. Go here: ~/.local/share/applications/wine/Programs/FastStone
Image Viewer/ and make a backup of the "FastStone Image Viewer.desktop".
Right click>properties>application and remove the environment variables and
work path fields. OK and it should now be working across the OS.
Thanks to all of you who are keeping this going. Faststone is a lifesaver for
my work flow.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=58554
Bug ID: 58554
Summary: err:ole:start_rpcss Failed to start RpcSs service
Product: Wine
Version: 10.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: 1685899837(a)qq.com
Distribution: ---
I was running autocad2025 on Wine10.11 and encountered err: ole: start_rpcss
Failed to start RpcSS service. After my investigation, it was found that this
submission caused ntdl: Pass the full image NT path through the server startup
information.
When I reverted back to its previous submission ntdl: Use UNICODE-SRINGs in the
main image loading helpers, it could run successfully. Then I ran autocad2025
on Wine10.12, but the error still persists.
The reason for this error is due to this submission wine10.11:ntdll: Pass the
full image NT path through the server startup information.
Specific errors:
0088:err:ole:start_rpcss Failed to start RpcSs service
0088:err:ole:start_rpcss Failed to start RpcSs service
003c:err:service:process_send_start_message service L"Autodesk CER Service"
failed to start
003c:trace:service:service_start returning 1053
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"Autodesk
CER Service" failed to start: 1053
003c:err:service:process_send_start_message service L"AdskLicensingService"
failed to start
003c:trace:service:service_start returning 1053
003c:fixme:service:scmdatabase_autostart_services Auto-start service
L"AdskLicensingService" failed to start: 1053
--
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=57433
Bug ID: 57433
Summary: Sniper Elite V2 Remastered some objects are black
rendered
Product: vkd3d
Version: 1.10
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: 66cb2815f0662713c3255113255cfd7cf5e406fb
Distribution: ---
Created attachment 77427
--> https://bugs.winehq.org/attachment.cgi?id=77427
screenshot
Using NVK driver.
--
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.