https://bugs.winehq.org/show_bug.cgi?id=53766
Bug ID: 53766
Summary: vbscript fails to handle SAFEARRAY assignment, access,
UBounds, LBounds
Product: Wine
Version: 7.16
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 leveraging the vbscript engine of Wine for a macos/linux port
of Visual Pinball, I finally have the example table working and am starting to
work through the runtime errors.
The table script requests an array of balls on the table and uses that array to
drop ball shadows and generate rolling sounds.
Take the following code:
Const tnob = 5
Dim rolling()
ReDim rolling(tnob)
Sub RollingTimer_Timer()
Dim BOT, b
BOT = GetBalls
For b = 0 to UBound(BOT)
If BOT(b).z < 30 Then
rolling(b) = True
End If
Next
End Sub
GetBalls is in the application code and returns a SAFEARRAY of IDispatch
pointers:
STDMETHODIMP ScriptGlobalTable::GetBalls(LPSAFEARRAY *pVal)
Currently this will fail at BOT assign_value because VariantCopyInd calls
VariantCopy which calls VARIANT_ValidateType which then returns
DISP_E_BADVARTYPE
I believe I have this now working but I'm not sure if it would impact anything
else for an official patch:
inc/wine/dlls/oleaut32/variant.c:
HRESULT WINAPI VariantCopy(VARIANTARG* pvargDest, const VARIANTARG* pvargSrc)
{
HRESULT hres = S_OK;
TRACE("(%s,%s)\n", debugstr_variant(pvargDest), debugstr_variant(pvargSrc));
#ifndef __SAFEARRAYFIX__
if (V_TYPE(pvargSrc) == VT_CLSID || /* VT_CLSID is a special case */
FAILED(VARIANT_ValidateType(V_VT(pvargSrc))))
return DISP_E_BADVARTYPE;
#else
if (V_TYPE(pvargSrc) != VT_SAFEARRAY && (V_TYPE(pvargSrc) == VT_CLSID || /*
VT_CLSID is a special case */
FAILED(VARIANT_ValidateType(V_VT(pvargSrc)))))
return DISP_E_BADVARTYPE;
#endif
if (pvargSrc != pvargDest &&
SUCCEEDED(hres = VariantClear(pvargDest)))
{
*pvargDest = *pvargSrc; /* Shallow copy the value */
if (!V_ISBYREF(pvargSrc))
{
switch (V_VT(pvargSrc))
{
case VT_BSTR:
V_BSTR(pvargDest) = SysAllocStringByteLen((char*)V_BSTR(pvargSrc),
SysStringByteLen(V_BSTR(pvargSrc)));
if (!V_BSTR(pvargDest))
hres = E_OUTOFMEMORY;
break;
case VT_RECORD:
hres = VARIANT_CopyIRecordInfo(pvargDest, pvargSrc);
break;
case VT_DISPATCH:
case VT_UNKNOWN:
V_UNKNOWN(pvargDest) = V_UNKNOWN(pvargSrc);
if (V_UNKNOWN(pvargSrc))
IUnknown_AddRef(V_UNKNOWN(pvargSrc));
break;
#ifdef __SAFEARRAYFIX__
case VT_SAFEARRAY:
hres = SafeArrayCopy(V_ARRAY(pvargSrc), &V_ARRAY(pvargDest));
break;
#endif
default:
if (V_ISARRAY(pvargSrc))
hres = SafeArrayCopy(V_ARRAY(pvargSrc), &V_ARRAY(pvargDest));
}
}
}
return hres;
}
inc/wine/dlls/vbscript/interp.c:
static HRESULT variant_call(exec_ctx_t *ctx, VARIANT *v, unsigned arg_cnt,
VARIANT *res)
{
SAFEARRAY *array = NULL;
DISPPARAMS dp;
HRESULT hres;
TRACE("%s\n", debugstr_variant(v));
if(V_VT(v) == (VT_VARIANT|VT_BYREF))
v = V_VARIANTREF(v);
switch(V_VT(v)) {
case VT_ARRAY|VT_BYREF|VT_VARIANT:
array = *V_ARRAYREF(v);
break;
case VT_ARRAY|VT_VARIANT:
array = V_ARRAY(v);
break;
#ifdef __SAFEARRAYFIX__
case VT_SAFEARRAY:
array = V_ARRAY(v);
break;
#endif
case VT_DISPATCH:
vbstack_to_dp(ctx, arg_cnt, FALSE, &dp);
hres = disp_call(ctx->script, V_DISPATCH(v), DISPID_VALUE, &dp, res);
break;
default:
FIXME("unsupported on %s\n", debugstr_variant(v));
return E_NOTIMPL;
}
if(array) {
if(!res) {
FIXME("no res\n");
return E_NOTIMPL;
}
vbstack_to_dp(ctx, arg_cnt, FALSE, &dp);
hres = array_access(ctx, array, &dp, &v);
if(FAILED(hres))
return hres;
V_VT(res) = VT_BYREF|VT_VARIANT;
V_BYREF(res) = v;
}
stack_popn(ctx, arg_cnt);
return S_OK;
}
inc/wine/dlls/vbscript/global.c:
static HRESULT Global_UBound(BuiltinDisp *This, VARIANT *arg, unsigned
args_cnt, VARIANT *res)
{
SAFEARRAY *sa;
HRESULT hres;
LONG ubound;
int dim;
assert(args_cnt == 1 || args_cnt == 2);
TRACE("%s %s\n", debugstr_variant(arg), args_cnt == 2 ?
debugstr_variant(arg + 1) : "1");
switch(V_VT(arg)) {
case VT_VARIANT|VT_ARRAY:
sa = V_ARRAY(arg);
break;
case VT_VARIANT|VT_ARRAY|VT_BYREF:
sa = *V_ARRAYREF(arg);
break;
#ifdef __SAFEARRAYFIX__
case VT_SAFEARRAY:
sa = V_ARRAY(arg);
break;
#endif
default:
FIXME("arg %s not supported\n", debugstr_variant(arg));
return E_NOTIMPL;
}
static HRESULT Global_LBound(BuiltinDisp *This, VARIANT *arg, unsigned
args_cnt, VARIANT *res)
{
SAFEARRAY *sa;
HRESULT hres;
LONG ubound;
int dim;
assert(args_cnt == 1 || args_cnt == 2);
TRACE("%s %s\n", debugstr_variant(arg), args_cnt == 2 ?
debugstr_variant(arg + 1) : "1");
switch(V_VT(arg)) {
case VT_VARIANT|VT_ARRAY:
sa = V_ARRAY(arg);
break;
case VT_VARIANT|VT_ARRAY|VT_BYREF:
sa = *V_ARRAYREF(arg);
break;
#ifdef __SAFEARRAYFIX__
case VT_SAFEARRAY:
sa = V_ARRAY(arg);
break;
#endif
default:
FIXME("arg %s not supported\n", debugstr_variant(arg));
return E_NOTIMPL;
}
--
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=49520
Bug ID: 49520
Summary: WIng Commander 4 DVD edition not scaling/displaying
Videos correctly
Product: Wine
Version: 5.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: jcarthew(a)gmail.com
Distribution: ---
Created attachment 67651
--> https://bugs.winehq.org/attachment.cgi?id=67651
DVD Resize/Rendering error.
Video/Audio decode/playback works, however The video is being rendered as a
square/being clipped off, and is not being scaled correctly. I have also tried
to force the screen resolution into 640x480 which fixed the scale, but did not
fix the square image/cropping problem.
--
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=53876
Bug ID: 53876
Summary: joneslevi
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joneslevit2000(a)gmail.com
Distribution: ---
KatMovie is not among these hurdles, as they have mentioned explicitly in a
separate disclaimer stating that the website does not mount any unauthorized or
unsupervised content into their servers, preventing themselves and the website
not to falling for any copyright claims or whatsoever to the content that is
available or accessible via their content.
To know more :
https://www.thetechspree.com/katmovie-download-your-desired-content-in-diff…
--
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=53848
Bug ID: 53848
Summary: wine: Bad CPU type in executable (Apple Silicon M1)
Product: Wine-staging
Version: 7.19
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: b1779506(a)trbvn.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
user@users-Apple-M1 ~ % brew tap homebrew/cask-versions
Running `brew update --auto-update`...
==> Auto-updated Homebrew!
Updated 2 taps (homebrew/core and homebrew/cask).
==> New Casks
anytype
==> Tapping homebrew/cask-versions
Cloning into '/opt/homebrew/Library/Taps/homebrew/homebrew-cask-versions'...
remote: Enumerating objects: 250611, done.
remote: Counting objects: 100% (250611/250611), done.
remote: Compressing objects: 100% (76523/76523), done.
remote: Total 250611 (delta 173598), reused 250577 (delta 173577), pack-reused
Receiving objects: 100% (250611/250611), 64.00 MiB | 3.71 MiB/s, done.
Resolving deltas: 100% (173598/173598), done.
Tapped 230 casks (261 files, 71MB).
user@users-Apple-M1 ~ % brew install --cask --no-quarantine wine-staging
==> Caveats
wine-staging supports both 32-bit and 64-bit. It is compatible with an existing
32-bit wine prefix, but it will now default to 64-bit when you create a new
wine prefix. The architecture can be selected using the WINEARCH environment
variable which can be set to either win32 or win64.
To create a new pure 32-bit prefix, you can run:
$ WINEARCH=win32 WINEPREFIX=~/.wine32 winecfg
See the Wine FAQ for details: https://wiki.winehq.org/FAQ#Wineprefixes
==> Downloading
https://github.com/Gcenx/macOS_Wine_builds/releases/download/7.1
==> Downloading from
https://objects.githubusercontent.com/github-production-rel
######################################################################## 100.0%
==> Installing Cask wine-staging
Warning: macOS's Gatekeeper has been disabled for this Cask
==> Moving App 'Wine Staging.app' to '/Applications/Wine Staging.app'
==> Linking Binary 'appdb' to '/opt/homebrew/bin/appdb'
==> Linking Binary 'winehelp' to '/opt/homebrew/bin/winehelp'
==> Linking Binary 'msiexec' to '/opt/homebrew/bin/msiexec'
==> Linking Binary 'notepad' to '/opt/homebrew/bin/notepad'
==> Linking Binary 'regedit' to '/opt/homebrew/bin/regedit'
==> Linking Binary 'regsvr32' to '/opt/homebrew/bin/regsvr32'
==> Linking Binary 'wine' to '/opt/homebrew/bin/wine'
==> Linking Binary 'wine64' to '/opt/homebrew/bin/wine64'
==> Linking Binary 'wineboot' to '/opt/homebrew/bin/wineboot'
==> Linking Binary 'winecfg' to '/opt/homebrew/bin/winecfg'
==> Linking Binary 'wineconsole' to '/opt/homebrew/bin/wineconsole'
==> Linking Binary 'winedbg' to '/opt/homebrew/bin/winedbg'
==> Linking Binary 'winefile' to '/opt/homebrew/bin/winefile'
==> Linking Binary 'winemine' to '/opt/homebrew/bin/winemine'
==> Linking Binary 'winepath' to '/opt/homebrew/bin/winepath'
==> Linking Binary 'wineserver' to '/opt/homebrew/bin/wineserver'
???? wine-staging was successfully installed!
user@users-Apple-M1 ~ % winecfg
/opt/homebrew/bin/winecfg: line 46: /opt/homebrew/bin/wine: Bad CPU type in
executable
/opt/homebrew/bin/winecfg: line 46: /opt/homebrew/bin/wine: Undefined error: 0
user@users-Apple-M1 ~ % wine --version
zsh: bad CPU type in executable: wine
user@users-Apple-M1 ~ % wine
zsh: bad CPU type in executable: wine
user@users-Apple-M1 ~ % brew list --versions|grep wine
wine-staging 7.19
--
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=53957
Bug ID: 53957
Summary: The Binding Of Isaac Repentance (GOG) : program
crashes at start
Product: Wine
Version: 5.0.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: monstrosdobem(a)gmail.com
Distribution: ---
Created attachment 73539
--> https://bugs.winehq.org/attachment.cgi?id=73539
WINEDBG log when trying to open the game
Hey, newbie problem here, im new at linux and wine
I've been testing running a few versions of The binding of isaac at wine (GOG),
the Rebirth version works fine (just a minor audio problem) but when testing
with an Repentance version The game just crashes with winedbg listing the log
that follows:
the log at terminal is attached ahead also:
repentance is a DLC for the rebirth version
--
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=53565
Bug ID: 53565
Summary: postgresql installer 9.3 needs support for default
style argument in WshShell.Run
Product: Wine
Version: 7.11
Hardware: x86
URL: https://www.enterprisedb.com/downloads/postgres-postgr
esql-downloads
OS: Linux
Status: NEW
Keywords: download, Installer, source
Severity: minor
Priority: P2
Component: wshom.ocx
Assignee: wine-bugs(a)winehq.org
Reporter: sloper42(a)yahoo.com
CC: austinenglish(a)gmail.com, sloper42(a)yahoo.com
Depends on: 46083
Distribution: Fedora
This is followup to Bug #46083
Noticed in postgresql 9.3.25-1 installer. When starting the installer, a script
called prerun_checks is executed. There is failure executing following line
canExecute = WshShell.Run("Temp_Path")
Terminal shows:
0124:err:wshom:WshShell3_Run failed to convert style argument, 0x80020005
We need to add support for default "style" arg in wshom::WshShell3_Run.
This failure is hidden and script works accidentally because of a "On Error
Resume Next" line before the WshShell.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=46083
Bug ID: 46083
Summary: postgresql: "Unable to write inside TEMP environment
variable path"
Product: Wine
Version: 3.19
Hardware: x86
URL: http://www.postgresql.org/download/windows/
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Gentoo
Noticed in 9.3.4-3 and 9.3.24 installers. When starting the installer, there's
an immediate error dialog:
Error
There has been an error.
Unable to write inside TEMP environment variable path.
Terminal shows:
0048:fixme:wscript:set_host_properties ignored L"nologo" switch
0048:fixme:vbscript:VBScript_SetScriptState unimplemented
SCRIPTSTATE_INITIALIZED
0048:fixme:wshom:WshShell3_get_Environment (0x144008 {VT_BSTR: L"PROCESS"}
0x33f748): semi-stub
0048:fixme:wshom:WshEnvironment_QueryInterface Unknown iface
{a6ef9860-c720-11d0-9337-00a0c90dcaa9}
0048:fixme:wscript:Host_Quit (1) semi-stub: no script engine clean up
winetricks -q wsh57 works around it.
--
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=45168
Bug ID: 45168
Summary: Visual Novel "The Fruit of Grisaia" has flickering
glitches
Product: Wine
Version: 3.7
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 61370
--> https://bugs.winehq.org/attachment.cgi?id=61370
Error log
The game works fine so far, but the graphics is often glitchy and doesn't seem
to update properly.
It spams the output
> fixme:d3d:wined3d_texture_add_dirty_region Ignoring dirty_region (
I guess this is the problem.
The game uses d3d9 AFAIK, although I couldn't get it to output an apitrace
trace.
I hope this is not a dupe, but I didn't find the 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=53874
Bug ID: 53874
Summary: Invalid SPIR-V created for World of Warcraft
(Dragonflight)
Product: vkd3d
Version: 1.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: rankincj(a)yahoo.com
Distribution: ---
Created attachment 73400
--> https://bugs.winehq.org/attachment.cgi?id=73400
SPIR-V dump of compute shader
Fedora 36 updated to Wine 7.19 and libvkd3d-1.5, and now World of Warcraft
crashes before even rendering the login scree, complaining about an invalid
COMPUTE shader:
```
NIR validation failed after spirv_to_nir
2 errors:
shader: MESA_SHADER_COMPUTE
source_sha1: {0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000}
workgroup-size: 64, 1, 1
shared-size: 0
inputs: 0
outputs: 0
uniforms: 32
ubos: 1
shared: 0
ray queries: 0
```
I am using Mesa's RADV driver, so managed to obtain a dump of the SPIR-V shader
via `RADV_DEBUG=spirv`.
See this [Mesa bug
report](https://gitlab.freedesktop.org/mesa/mesa/-/issues/7618) for more
details.
--
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=53962
Bug ID: 53962
Summary: vbscript does not Eval implemented
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: ---
Some of the scripts I'm running into uses eval.
I'm sure this is not complete, but this seems to work:
static HRESULT Global_Eval(BuiltinDisp *This, VARIANT *arg, unsigned args_cnt,
VARIANT *res)
{
vbscode_t *code;
HRESULT hres = compile_script(This->ctx, V_BSTR(arg), 0, 0, 0, 0,
SCRIPTTEXT_ISEXPRESSION, &code);
if (SUCCEEDED(hres))
hres = exec_global_code(This->ctx, code, res);
return hres;
}
Should I work on a MR?
FWIW, an alternate version works for ExecuteGlobal:
static HRESULT Global_ExecuteGlobal(BuiltinDisp *This, VARIANT *arg, unsigned
args_cnt, VARIANT *res)
{
vbscode_t *code;
HRESULT hres = compile_script(This->ctx, V_BSTR(arg), 0, 0, 0, 0,
SCRIPTTEXT_ISVISIBLE, &code);
if (SUCCEEDED(hres))
hres = exec_global_code(This->ctx, code, res);
return hres;
}
--
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=3952
Dominik Mierzejewski <dominik(a)greysector.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dominik(a)greysector.net
--- Comment #81 from Dominik Mierzejewski <dominik(a)greysector.net> ---
*** Bug 53078 has been marked as a duplicate of this bug. ***
--
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=53958
Bug ID: 53958
Summary: X11DRV_InitKeyboard() assigns wrong scancodes on
uncommon X11 keyboard layouts
Product: Wine
Version: 7.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: doucha(a)swarmtech.cz
Distribution: ---
Created attachment 73541
--> https://bugs.winehq.org/attachment.cgi?id=73541
Patch with fallback scancode mapping
I use a custom X11 keyboard layout which maps non-ASCII characters to the top
row of alphanumeric keys. This causes the X11DRV_InitKeyboard() heuristics to
fail and the number keys get high scancodes (0x60+) which are generally
unsupported by Windows software. This causes issues mainly in games.
For example in Gothic 1, the number keys are used to switch between melee
weapon, bow and magic. In one of the main quests, you need to cast a spell. But
on my machine the keys for selecting spells have wrong scancodes in WINE and
Gothic doesn't allow them to be remapped. This means that the game cannot be
completed.
Here's a patch that'll fix the wrong scancodes by mapping X11 keysyms to US
QWERTY layout.
--
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=53410
Bug ID: 53410
Summary: Control panel Regional setting does not stick
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)jonass.user.lysator.liu.se
Distribution: ---
Created attachment 72802
--> https://bugs.winehq.org/attachment.cgi?id=72802
Before running Hemekonomi
Upon start of Hogia Hemekonomi it checks regional settings and offer to change
them. However the change does not stick and has to be done on every start.
See attachments pre.png/post.png for before and after running Hemekonomi in
Windows XP.
--
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=51417
Bug ID: 51417
Summary: msftedit.dll v8.5 for Windows 10 requires
SbSelectProcedure from NTDLL
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: sergey.bychkow(a)gmail.com
Wine NTDLL implementation is missing SbSelectProcedure, at least stub.
msftedit.dll v8.5 for Windows 10 imports SbSelectProcedure from NTDLL. This
version is required because of new features implemented - embedded PNG/JPEG
support. Wine implementation of msftedit and riched20, as I can see, has no
embedded PNG/JPEG support nor TOM interfaces, but this is a scope of another
issue.
I have found that function SbSelectProcedure is not well documented, but, may
be, at least some stub can be added to Wine?
--
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=53116
Bug ID: 53116
Summary: Eureka crashes due to odbc error
Product: Wine
Version: 7.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: odbc
Assignee: wine-bugs(a)winehq.org
Reporter: rich.rath(a)gmail.com
Distribution: ---
Created attachment 72570
--> https://bugs.winehq.org/attachment.cgi?id=72570
backtrace output from crash
I am trying to run a 2000-era program called Eureka. You can download a demo
version from archive.org by searching for "Inxight" and "Eureka". Originally
it loaded into a win 2000 container, but would give an odbc error saying that
odbc was not found. It is installed and in the usual place. Then I onstalled
office 2003, which provided a bunch more drivers and now it crashes with the
attached backtrace when I try to load data.
--
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=46381
Bug ID: 46381
Summary: Sysinternals Bginfo 4.21: Text manipulation
(tabulation) does not work - EM_SETPARAFORMAT
Product: Wine
Version: 4.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: zcooger(a)gmail.com
Distribution: ---
Created attachment 63136
--> https://bugs.winehq.org/attachment.cgi?id=63136
System info, debug log, executable, 2 screenshots for comparison
Linux: 4.15.0-20-generic x86_64 bits: 64 gcc: 7.3.0
Desktop: Cinnamon 3.8.8 (Gtk 3.22.30-1ubuntu1) dm: lightdm Distro: Linux Mint
19 Tara
Software site: sysinternals.com
sha1sum Bginfo.exe: 687efce8fa372a64b8292aa5293d6128c0d796bb
After running Bginfo in Wine it displays no tabulation for rows regardless of
slider value.
Second startup breaks the saved text formatting.
Similar ReactOS Issue: https://jira.reactos.org/browse/CORE-15510
--
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=42231
Bug ID: 42231
Summary: Bengal hangs upon startup
Product: Wine
Version: 2.0-rc5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rebe(a)gmx.net
Distribution: ---
The game Bengal hangs on startup. It shows a split splash screen, then halts.
The game engine is Gplayer.exe by OXXOMedia.
--
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=4713
Fabian Maurer <dark.shadow4(a)web.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dark.shadow4(a)web.de
--
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=43989
Bug ID: 43989
Summary: MSI: error for object: pointer being freed was not
allocated
Product: Wine
Version: 2.0.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: kenorb(a)gmail.com
Distribution: ---
The following MSI installer doesn't run properly.
$ wine msiexec /i scalarizr_5.11.5.msi
fixme:wer:WerSetFlags (2) stub!
fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:service:QueryServiceConfig2W Level 6 not implemented
---
winedevice.exe(27561,0xb0004000) malloc: *** error for object 0x401c5308:
pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
File URL: http://repo.scalr.net/win/latest/scalarizr_5.11.5.msi
--
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=10502
Summary: Zoundry Blogwriter crashes on startup
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.zoundry.com/
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://justanystuff.blogspot.com/2007/11/running-zoundry-blog-editor-under-…
says that Zoundry BlogWriter runs ok in Wine iff you have IE6
installed, crashes otherwise. I verified that it crashes on vanilla wine
without IE6.
The +relay log looks like it's checking gecko
for a bunch of properties, e.g. browser.visited_color,
image.animation_mode, bidi., unloads gecko when
it can't find them, and then crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46610
Bug ID: 46610
Summary: pdfelement 6 failing to start with error:
typelib_ps_CreateStub Failed to create stub
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: tinywrkbee(a)gmail.com
Distribution: ---
Created attachment 63510
--> https://bugs.winehq.org/attachment.cgi?id=63510
pdfelement output
App: Wondershare PDFElement Pro 6, latest trial version, can be downloaded
freely from https://pdf.wondershare.com/
Wine: version 4.1, WINARCH=win32, Window 7, no change except winetrick
riched20.
Behavior:
Installation finished successfully, application's window failing to load after
installation and the application crashes.
With winetricks dotnet40 the application work (though has other issues).
See full output in the attachment.
003a:fixme:ole:get_param_info unhandled kind 0x4
003a:fixme:ole:write_type_tfs unhandled kind 4
003a:err:ole:typelib_ps_CreateStub Failed to create stub, hr 0x80004001.
003a:err:ole:marshal_object Failed to create an IRpcStubBuffer from IPSFactory
for {4d3609d2-1d8a-4e9f-884b-438afddecb86} with error 0x80004001
003a:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub,
hres=0x80004001
003a:err:ole:CoMarshalInterface Failed to marshal the interface
{4d3609d2-1d8a-4e9f-884b-438afddecb86}, 80004001
0045:err:rpc:I_RpcReceive we got fault packet with status 0x80004001
--
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=53945
Bug ID: 53945
Summary: Program doesn't start
Product: Wine
Version: 7.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cdlevin(a)bellsouth.net
Distribution: ---
Created attachment 73521
--> https://bugs.winehq.org/attachment.cgi?id=73521
five by five backtrace file
I am trying to run 5 by 5 from Dauntless software. It doesn't open. I ran pilot
morse, and it opened no problem.
--
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=53906
Bug ID: 53906
Summary: World of Warcraft: Dragonflight Keep getting
VoiceError 17
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jpaulofarias(a)gmail.com
Distribution: ---
Since the update of World of Warcraft: Dragronflight prepatch I keep getting a
VoiceError: 17. It appears the Wow client can't connect to their voice chat
servers.
I am running Wine 7.20 with Lutris on EndeavorOS with Gnome.
Other than this error coming up every few seconds the game seems to run fine on
my system.
I have a Radeon 6900XT gpu and a Ryzen 7 5800X cpu. This probably don't matter
though since I think the message is network related.
Also once the game is started it takes about a minute on connection screen
before it either fails to connect or completes the connection and goes to
character screen selection. When it fails to connect pressing the "reconnect"
button does complete the connection and the games continues on to the character
selection screen. I believe both the VoiceError messages and the login
connection issues are related to some (maybe the same) network 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=53944
Bug ID: 53944
Summary: Browser.exe error when starting Wegame
Product: Wine
Version: 7.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 2775919(a)qq.com
Distribution: ---
Created attachment 73517
--> https://bugs.winehq.org/attachment.cgi?id=73517
backtrace.txt = error logs, 1.png & 2.png = screenshot
after starting WeGame, the error message keeps appearing, saying broeser.exe
error (backtrace.txt)
the content of WeGame main windows is not displayed correctly.(1.png)
When click download POE game, I get another error(2.png)
ps: WeGame is a game platform like Steam.
OS: Limux Mint
Wine Version: 7.0.1
--
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.