https://bugs.winehq.org/show_bug.cgi?id=38162
Bug ID: 38162
Summary: Winemenubuilder occasionally crashes during WINEPREFIX
update (race between placeholder icon extraction and
placeholder update)
Product: Wine
Version: 1.7.37
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
split off from bug 19241
André unfortunately reopened that bug with this different issue.
I've seen this rarely on my machines too but didn't find it interesting enough
to investigate - until now.
--- snip ---
Unhandled exception: page fault on read access to 0x00480244 in 32-bit code
(0x7ed7c950).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7ed7c950 ESP:0033f8e0 EBP:0033f9d8 EFLAGS:00010216( R- -- I -A-P- )
EAX:00480240 EBX:7ed92000 ECX:0033f9e0 EDX:0033f99c
ESI:0033fd80 EDI:00000000
Stack dump:
0x0033f8e0: 00000000 7b8c1000 0012d4f0 00110000
0x0033f8f0: 7bcd3000 0033f9e0 0033f938 0033f920
0x0033f900: 7b8c1000 0033f9e0 0033f938 0001fcd4
0x0033f910: 7bcdbf44 00460000 00000000 00000000
0x0033f920: 00110000 00000002 0033f950 00000000
0x0033f930: 0033f9e0 00000000 0033f968 7bc70efa
000c: sel=0067 base=00000000 limit=00000000 16-bit r-x
Backtrace:
=>0 0x7ed7c950 add_module_icons_to_stream+0x6c(iconData16=(nil),
hModule=0x460001, grpIconDir=0x480240)
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:651]
in winemenubuilder (0x0033f9d8)
1 0x7ed7da2d
open_module_icon+0x29b(szFileName="C:\windows\system32\winhlp32.exe", nIndex=0,
ppStream=0x33fad8)
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:914]
in winemenubuilder (0x0033fa68)
2 0x7ed7e12c open_icon+0x2a(filename="C:\windows\system32\winhlp32.exe",
index=0, bWait=0, ppStream=0x33fad8)
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:1056]
in winemenubuilder (0x0033faa8)
3 0x7ed7e962 extract_icon+0xb0(icoPathW="C:\windows\system32\winhlp32.exe",
index=0, destFilename=0x0(nil), bWait=0)
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:1370]
in winemenubuilder (0x0033fb08)
4 0x7ed82d00
generate_associations+0x6a5(xdg_data_home="/home/focht/.local/share",
packages_dir="/home/focht/.local/share/mime/packages",
applications_dir="/home/focht/.local/share/applications")
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:2677]
in winemenubuilder (0x0033fc68)
5 0x7ed85d72 RefreshFileTypeAssociations+0x284()
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:3367]
in winemenubuilder (0x0033fce8)
6 0x7ed86dcf wWinMain+0x102(hInstance=<couldn't compute location>,
22 0xf7406963 __libc_start_main+0xf2() in libc.so.6 (0x00000000)
0x7ed7c950 add_module_icons_to_stream+0x6c
[/home/focht/projects/wine/wine.repo/src/programs/winemenubuilder/winemenubuilder.c:651]
in winemenubuilder: movzwl 0x4(%eax),%eax
651 for (i = 0; i < grpIconDir->idCount; i++)
Modules:
Module Address Debug info Name (53 modules)
PE 53000000-530b4000 Deferred windowscodecs
ELF 7b800000-7ba67000 Dwarf kernel32<elf>
\-PE 7b810000-7ba67000 \ kernel32
ELF 7bc00000-7bcf0000 Dwarf ntdll<elf>
\-PE 7bc10000-7bcf0000 \ ntdll
ELF 7bf00000-7bf04000 Dwarf <wine-loader>
...
Threads:
process tid prio (all id:s are in hex)
...
0000000c (D) C:\windows\system32\winemenubuilder.exe
0000000d 0 <==
--- snip ---
'winemenubuilder' is started asynchronously before the prefix update via
'RunServices' registry key.
The prefix update rewrites Wine's builtin placeholders in the prefix.
Since 'winemenubuilder' was started asynchronously, it might still populate
placeholders at this time, mapping them into memory and extracting icon
resources.
Source:
http://source.winehq.org/git/wine.git/blob/cbc8f3c81148079a17f4062fb9bad656…
--- snip ---
876 hModule = LoadLibraryExW(szFileName, 0, LOAD_LIBRARY_AS_DATAFILE);
--- snip ---
-> FILE_SHARE_READ
This doesn't prevent concurrently running processes to write to the placeholder
files which indeed happens by rundll32's processing of 'wine.inf'.
In rare situations, Winemenubuilder hits the jackpot - being affected from the
concurrent rewrite of the placeholder while peeking at the in-memory image
(PE/resource directory entries).
Source:
http://source.winehq.org/git/wine.git/blob/57c54bc9ad1e13ee7cd730b2ffb4df83…
--- snip ---
1236 ProcessRunKeys( HKEY_LOCAL_MACHINE, RunServicesOnceW, TRUE, FALSE );
1237
1238 if (init || (kill && !restart))
1239 {
1240 ProcessRunKeys( HKEY_LOCAL_MACHINE, RunServicesW, FALSE, FALSE );
1241 start_services_process();
1242 }
1243 if (init || update) update_wineprefix( update );
...
--- snip ---
A solution to prevent this race is to move the asynchronous execution of
'winemenubuilder' after the prefix update (which runs synchronously).
This also avoids the situation where 'winemenubuilder' manages to extract
potentially outdated icon resources before the placeholders are overwritten by
newer versions with different icons.
Regards
--
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=46601
Bug ID: 46601
Summary: HeroesVII not started because of encryption(?)
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bcrypt
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
Distribution: ---
Game started, show introduction and then
wine4.1 - crashed somewhere inside application
wine-staging-4.1 - just finish
In the log I see
~~~
002f:trace:bcrypt:BCryptOpenAlgorithmProvider 0x114c4db4, L"AES", (null),
00000000
002f:trace:bcrypt:BCryptOpenAlgorithmProvider 0x114c4db8, L"RNG", (null),
00000000
002f:trace:bcrypt:BCryptGetProperty 0xd194c428, L"ObjectLength", 0x114c4dc4, 4,
0x7f7da98, 00000000
002f:trace:bcrypt:BCryptGetProperty 0xd194c428, L"BlockLength", 0x114c4ddc, 4,
0x7f7da98, 00000000
002f:trace:bcrypt:BCryptSetProperty 0xd194c428, L"ChainingMode", 0x56e7b64, 32,
00000000
002f:trace:bcrypt:BCryptGenerateSymmetricKey 0xd194c428, 0x114c4dbc,
0x18dc4b08, 654, 0x8d0e7810, 16, 00000000
002f:fixme:bcrypt:BCryptGenerateSymmetricKey ignoring object buffer
~~~
Because of ignoring object buffer?
--
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=42109
Bug ID: 42109
Summary: Hydrophobia prophecy crash or freeze with few second
from start
Product: Wine
Version: 2.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andy86(a)fastwebnet.it
Distribution: ---
Hydrophobia prophecy crash with compiled version of wine, with and without csmt
patch.
See this thread for info: https://forum.winehq.org/viewtopic.php?f=8&t=28249
Because bug is probably time dependant, i can't get the complet log with crash.
When wine is in log mode game is slowdown/unplayable and... do not crash.
--
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=36096
Bug ID: 36096
Summary: valgrind shows leaks in d3d9/visual tests on i965
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: stefan(a)codeweavers.com
Created attachment 48284
--> https://bugs.winehq.org/attachment.cgi?id=48284
valgrind log
==11646== 67 bytes in 4 blocks are definitely lost in loss record 412 of 1,049
==11646== at 0x4006B11: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==11646== by 0x4E8E2B27: strdup (in /usr/lib/libc-2.18.so)
==11646== by 0x65D6C36: ??? (in /usr/lib/dri/i965_dri.so)
==11646== by 0x65DFCD0: ??? (in /usr/lib/dri/i965_dri.so)
==11646== by 0x65E932F: ??? (in /usr/lib/dri/i965_dri.so)
==11646== by 0x6476729: ??? (in /usr/lib/dri/i965_dri.so)
==11646== by 0x61EAC15: shared_dispatch_stub_482 (in
/usr/lib/libglapi.so.0.0.0)
==11646== by 0x4EB2AD5: shader_glsl_compile (glsl_shader.c:330)
==11646== by 0x4EBF8F2: shader_glsl_generate_pshader (glsl_shader.c:4515)
==11646== by 0x4EC0087: find_glsl_pshader (glsl_shader.c:4694)
==11646== by 0x4EC39F4: set_glsl_shader_program (glsl_shader.c:5823)
==11646== by 0x4EC5096: shader_glsl_select (glsl_shader.c:6149)
==11646== by 0x4E85F12: context_apply_draw_state (context.c:2997)
==11646== by 0x4EAF1D6: draw_primitive (drawprim.c:664)
==11646== by 0x4E86685: wined3d_cs_exec_draw (cs.c:291)
==11646== by 0x4E87A33: wined3d_cs_st_submit (cs.c:893)
==11646== by 0x4E866F2: wined3d_cs_emit_draw (cs.c:308)
==11646== by 0x4E95FC3: wined3d_device_draw_primitive (device.c:3265)
==11646== by 0x4E1BB32: d3d8_device_DrawPrimitiveUP (device.c:2021)
==11646== by 0x4984BB2: cnd_test (visual.c:1482)
==11646==
among plenty of others.
I had to rebuild my libdrm with valgrind support for this to work, see
https://bugs.freedesktop.org/show_bug.cgi?id=77863. After that, I can run
glxgears with no valgrind issues in mesa itself (though glxgears leaks..).
--
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=35913
Bug ID: 35913
Summary: Meo Music only shows a white screen
Product: Wine
Version: 1.7.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: filas.f(a)hotmail.com
Well, after installing the app, it only shows a white screen/white window,
nothing more.
Intel i5 2.4
Hd 5650
4 GB ram
Although hardware is not a problem, since this is a music streamer / player.
--
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=33819
Bug #: 33819
Summary: Majesty display only refreshes when mouse moves
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rohan.hart17(a)gmail.com
Classification: Unclassified
Majesty was running fine using Intel integrated graphics however after
installing a Radeon card the display will not refresh unless the mouse is
moving. I'm using the open source radeon r600 driver 6.14.4, Xorg 7.7, Mesa
9.1.3. Same behaviour using wine-1.4.1
--
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=46590
Bug ID: 46590
Summary: Wine works only on Android 7+
Product: Wine
Version: 4.0
Hardware: arm
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: jscript
Assignee: wine-bugs(a)winehq.org
Reporter: vi_2001(a)ukr.net
I'm reporting not an error, but a statement of fact:
Wine does not work on smartphones with Android versions: 4.4.3, 5.0.1, 6.0.
But works on 7.2.1. Sadly but it is so.
--
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=15931
Summary: Photoshop CS4 Crashes while launching
Product: Wine
Version: 1.1.7
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: james2432(a)gmail.com
Created an attachment (id=17105)
--> (http://bugs.winehq.org/attachment.cgi?id=17105)
WINEDEBUG=trace wine Photoshop.exe
While launching Photoshop CS4 it crashes with an unexpected error
--
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=44585
Bug ID: 44585
Summary: Diablo III doesn't launch, stops at
"setup_exception_record stack overflow ..."
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maciej.stanczew+b(a)gmail.com
Distribution: ArchLinux
Created attachment 60565
--> https://bugs.winehq.org/attachment.cgi?id=60565
Standard log, without custom WINEDEBUG
Since the last Diablo III update (to version 2.6.1.49286), launching the game
(both directly and through Battle.net app) doesn't work, stopping at message
mentioned in the title.
Note that this happens only on vanilla Wine (I tested versions 3.2, 3.0 and
2.21, on clean 32- and 64-bit prefixes). Staging (both 2.21 and rev 84fb9656
from new GitHub repo) work without any problems.
To reproduce, run the following command from the game's directory:
$ wine 'Diablo III.exe' -launch
Related Reddit thread:
https://www.reddit.com/r/wine_gaming/comments/7zh4sg/diablo_3_update/
--
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=25851
Summary: Zararadio start up error
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: miguelsilva_3(a)hotmail.com
Created an attachment (id=32939)
--> (http://bugs.winehq.org/attachment.cgi?id=32939)
Zararadio error
Software Zararadio doesn't start up. But it was working very well on Ubuntu
9.04.
On 9.10, 10.10 have this error all the time.
Could you check and give a solution! Thanks
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24268
Summary: mono's gluezilla uses unimplemented function
msvcr80._stat32
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
mono bundles microsoft's msvcr80. If wine wants to provide mono as
a download, we might have to remove that, at which point we might run
into the following two references to stubs (found by mscodescan.pl):
./wineprefix/drive_c/Program Files/Mono-2.6.7/bin/gluezilla.dll imports
following stub symbols:
msvcr80:?_type_info_dtor_internal_method@type_info@@QAEXXZ
msvcr80:_stat32
--
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=41079
Bug ID: 41079
Summary: unimplemented function cfgmgr21.dll.
CM_Get_Versioncalled in 32-bit code
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: damianhummel07(a)gmail.com
Created attachment 55263
--> https://bugs.winehq.org/attachment.cgi?id=55263
Program Error Details
When attempting to run ~/Downloads/hauppaugecapture_1_0_34-57-3.exe, the system
starts the install fine until I get the attached message and does nothing from
that point on. The command line give me multiple results of:
fixme:msg:pack_message msg 14 (WM_ERSEBKGND) not supported yet
Thanks in advance.
--
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=38911
Bug ID: 38911
Summary: valgrind shows uninitialized memory in
dlls/amstream/amstream.c:ddrawstreamsample_create()
Product: Wine
Version: 1.7.47
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
../../../tools/runtest -q -P wine -T ../../.. -M amstream.dll -p
amstream_test.exe.so amstream && touch amstream.ok
preloader: Warning: failed to reserve range 00110000-68000000
preloader: Warning: failed to reserve range 7f000000-82000000
==20720== Conditional jump or move depends on uninitialised value(s)
==20720== at 0x49177BD: ddraw_surface_create (surface.c:5966)
==20720== by 0x48ED113: ddraw1_CreateSurface (ddraw.c:2937)
==20720== by 0x5E891E0: ddrawstreamsample_create (mediastream.c:1007)
==20720== by 0x5E87609:
DirectDrawMediaStreamImpl_IDirectDrawMediaStream_CreateSample
(mediastream.c:387)
==20720== by 0x479B37D: IDirectDrawMediaStream_CreateSample (ddstream.h:261)
==20720== by 0x479B37D: test_media_streams (???:0)
==20720== by 0x479D13A: func_amstream (amstream.c:563)
==20720== by 0x479DEF3: run_test (test.h:584)
==20720== by 0x479E33A: main (test.h:666)
==20720== Uninitialised value was created by a stack allocation
==20720== at 0x5E89034: ddrawstreamsample_create (mediastream.c:962)
==20720==
--
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=15497
Summary: WineD3D_ChoosePixelFormat errors when starting game
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mcdermott.michaelj(a)gmail.com
Created an attachment (id=16423)
--> (http://bugs.winehq.org/attachment.cgi?id=16423)
Log of the crash
When I fire up Medieval Total War (the original, not the new one), using the
option to bypass movies, wine crashes with what appear to be Direct3D related
errors.
--
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=41091
Bug ID: 41091
Summary: 1nsane (GOG.com) crashes after launch
Product: Wine
Version: 1.9.7
Hardware: x86
URL: https://www.gog.com/game/1nsane
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: joseph.kucia(a)gmail.com
Regression SHA1: 403459fd914788f180ad9eea6459274ac62f8c2f
Distribution: ---
Created attachment 55290
--> https://bugs.winehq.org/attachment.cgi?id=55290
terminal output
The game crashes after start, probably when trying to play the intro videos. If
I rename the Anims/ directory containing the 3 videos, then the game doesn't
crash and loads to the menu properly.
Videos didn't work before the regression, they were simply skipped by Wine.
The original demo version can't be used to reproduce the problem (it doesn't
contain any videos).
>From what I see the crash didn't occur before
commit 403459fd914788f180ad9eea6459274ac62f8c2f
Author: Józef Kucia <jkucia(a)codeweavers.com>
Date: Tue Mar 29 12:14:53 2016 +0200
wined3d: Add hull shader type.
Wine 1.9.16
Fedora 24
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GT 730/PCIe/SSE2
OpenGL core profile version string: 4.5.0 NVIDIA 367.35
OpenGL core profile shading language version string: 4.50 NVIDIA
--
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=17893
Summary: The Alien Nations / Die Völker crashes: amstream
GetFormat stub
Product: Wine
Version: 1.1.17
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
I'd rather split the bug entries for "Die Völker / The Alien Nations" and
Motocross Madness 2, bug 17836, comment 3, to warrant each application its own.
Although the common cause is stubbed functionality in amstream, these apps
might be fixed independently.
At start, The Alien Nations tries to display two Intel Indeo videos, somewhat
differently. Unimplemented functionality in amstream and the app's not checking
for some return codes yields to an exception and crash. More specifically,
GetFormat() is expected to fill in a DDSURFACEDESC structure, which wine leaves
uninitialised, causing the application to use random uninitialised data.
The first crash is prevented by having GetFormat() in
dlls/amstream/mediastream.c fill in the dwWidth and dwHeight fields of the
DDSURFACEDESC structure (I used 1 as stub value). The code used seems similar
to that of
http://msdn.microsoft.com/en-us/library/ms787928(VS.85).aspx
except the app doesn't check the return code of GetFormat and hence proceeds
with uninitialised memory from these two fields.
These two values are not enough to avoid a crash when displaying the second
video. As the logs http://bugs.winehq.org/attachment.cgi?id=20129 in bug 17836,
comment 4 suggest, the app presumably reads more fields from GetFormat: Z
buffer depth and pixelformat, and passes that to ddraw.
Actually, whether the app crashes there depends on WINEDEBUG settings, as the
initialisation of the stack-based DDSURFACEDESC depends on former stack use.
I've been able to play the game using
WINEDEBUG=+all,-syslevel,-fixup,-dbghelp_dwarf,-heap,warn+heap,-gdi
I yet have to disassemble and see which other fields from DDSURFACEDESC are
used in the second case.
BTW, one needs to work past bug #15915 in order to see this crash in "Alien
Nations", which is a blocker for this issue. I did it by quickly hacking the
fourcc comparison test in iccvid.c.
There exists a demo for this application, but demos typically display no intro
videos, so I doubt it would exhibit this bug.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=13816
Summary: Klingon Honor Guard crashes on playing ingame movies
Product: Wine
Version: 1.0-rc4
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: garnoth(a)gmail.com
Created an attachment (id=13859)
--> (http://bugs.winehq.org/attachment.cgi?id=13859)
the windows error displayed when game crashes
The game Klingon honor Guard will crash when it tries to play the ingame
videos. This should be the last bug before the game would be platinum as using
the nocd patch allows one to play through the whole game.
This won't work with the demo as it has none. This bug only affects the retail
version, I'd be happey to send it to anyone if needed.
This doesn't seem to be a cd checking bug as the game askes for the cd one
screen before and it works. Playing multiplayer also requires the cd to be in
the drive and that works just fine.
The 'play' cd simply contains avi videos and can be played in Mplayer.
i did this in win 98 mode as that mode best supports the game.
To reproduce.
Install game.
Apply 1.1 patch.
Start new game.
--
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=38071
Bug ID: 38071
Summary: Specifying a stream object in params is not yet
supported
Product: Wine
Version: 1.7.36
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: fincer89(a)hotmail.com
Distribution: ---
Created attachment 50720
--> https://bugs.winehq.org/attachment.cgi?id=50720
amstream trace log (AVI video)
Importing a video in Adobe Premiere Pro CS3 fails, resulting to:
fixme:win:EnumDisplayDevicesW ((null),0,0x33ba64,0x00000000), stub!
fixme:amstream:IAMMultiMediaStreamImpl_AddMediaStream Specifying a stream
object in params is not yet supported
err:quartz:GetClassMediaFile Media class not found
Full amstream tracelog provided as an attachment.
Adobe Premiere Pro CS3 displays the following message:
Error Message
Unsupported format or damaged file.
--
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=36235
Bug ID: 36235
Summary: valgrind shows 3 leaks in amstream/tests/amstream.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==20443== 8 bytes in 1 blocks are definitely lost in loss record 73 of 1,019
==20443== at 0x7BC4C735: notify_alloc (heap.c:255)
==20443== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==20443== by 0x5C9189C: IMalloc_fnRealloc (ifs.c:233)
==20443== by 0x5C92003: CoTaskMemRealloc (objidl.h:1239)
==20443== by 0x65B52C7: ???
==20443== by 0x4955D79: test_media_streams (amstream.h:590)
==20443== by 0x4957664: func_amstream (amstream.c:436)
==20443== by 0x49584C4: run_test (test.h:584)
==20443== by 0x49588B2: main (test.h:654)
==20443== 8 bytes in 1 blocks are definitely lost in loss record 74 of 1,019
==20443== at 0x7BC4C735: notify_alloc (heap.c:255)
==20443== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==20443== by 0x5C9189C: IMalloc_fnRealloc (ifs.c:233)
==20443== by 0x5C92003: CoTaskMemRealloc (objidl.h:1239)
==20443== by 0x65BB457: ???
==20443== by 0x65B535B: ???
==20443== by 0x4955D79: test_media_streams (amstream.h:590)
==20443== by 0x4957664: func_amstream (amstream.c:436)
==20443== by 0x49584C4: run_test (test.h:584)
==20443== by 0x49588B2: main (test.h:654)
==20443== 8 bytes in 1 blocks are definitely lost in loss record 75 of 1,019
==20443== at 0x7BC4C735: notify_alloc (heap.c:255)
==20443== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==20443== by 0x5C9189C: IMalloc_fnRealloc (ifs.c:233)
==20443== by 0x5C92003: CoTaskMemRealloc (objidl.h:1239)
==20443== by 0x65BB4A1: ???
==20443== by 0x65B535B: ???
==20443== by 0x4955D79: test_media_streams (amstream.h:590)
==20443== by 0x4957664: func_amstream (amstream.c:436)
==20443== by 0x49584C4: run_test (test.h:584)
==20443== by 0x49588B2: main (test.h:654)
==20443==
--
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=13272
Summary: Scrapland: ACCESS VIOLATION when starting
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nmatra(a)citromail.hu
Black screen hangs and I have to kill the process to get my Desktop back. I
only see the error message about access violation when I switch Wine to Emulate
Desktop.
I get it with a PC-GURU magazine, without protection. (On Win it starts without
the disc) Maybe the original doesn't have this issue.
Log attached.
--
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=37090
Bug ID: 37090
Summary: Medieval total war demo crashes with builtin amstream
Product: Wine
Version: unspecified
Hardware: x86
URL: http://download.cnet.com/Medieval-Total-War-demo/3000-
7483_4-10246017.html
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 49304
--> https://bugs.winehq.org/attachment.cgi?id=49304
terminal output
Split off from bug 1908 which has been recycled a few times.
Download the demo, install, try to run. It crashes very quickly after a couple
amstream fixme's:
fixme:amstream:IAMMultiMediaStreamImpl_AddMediaStream Specifying a stream
object in params is not yet supported
err:quartz:GetClassMediaFile Media class not found
fixme:amstream:DirectDrawMediaStreamImpl_IDirectDrawMediaStream_GetFormat
(0x2221e8c)->(0x32d0f8,(nil),(nil),(nil)) stub!
fixme:amstream:DirectDrawMediaStreamImpl_IDirectDrawMediaStream_GetMultiMediaStream
(0x2221e88/0x2221e8c)->(0x176dec4) stub!
wine: Unhandled page fault on read access to 0x00000000 at address 0x41aef1
(thread 0009), starting debugger...
winetricks -q amstream gets past the crash.
[austin@localhost ~]$ sha1sum mtwdemo.zip
3b52b9168e672731180e96b4ce2a9222eb55a23b mtwdemo.zip
[austin@localhost ~]$ du -h mtwdemo.zip
236M mtwdemo.zip
[austin@localhost ~]$ wine --version
wine-1.7.24
--
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=32185
Bug #: 32185
Summary: Bug in BasePinImp_GetMediaType()
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: amstream
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
A bisect shows that the patch below causes a regression in the amstream
conformance tests. See for instance the Winetest results for fg-deb64-t32.
http://test.winehq.org/data/3e264ced0f2502093940ddda21ecbd024b7dd815/linux_…
commit 7e82db784a448c6802001345d6230f72a711d237
Author: Christian Costa <titan.costa(a)gmail.com>
Date: Fri Oct 12 23:07:31 2012 +0200
amstream: Implement BasePinImp_GetMediaType in media stream filter.
:040000 040000 ca189e47205be4d08dd271ba14dc12f6d1c2fced
5fd0731b35d83671c7fb0ecfa622e7834344238b M dlls
However it's also possible that the bug is in the previous patch as both
functions are used in the test and it's possible that implementing
BasePinImp_GetMediaType() caused BasePinImpl_CheckMediaType() to be called, or
that the bug is in fact in EnumMediaTypes_Construct() (from strmbase).
I tried to figure out the source for the bug but did not get anywhere. What I
gathered is that:
* It looks like a stack corruption issue. Adding traces in the test executable
can make the crash go away and I seem to have more luck reproducing the issue
using the PE test executable.
* A backtrace shows the crash happening in CopyMediaType() (called by
EnumMediaTypes_Construct() from strmbase) due to an insane size for
pSrc->cbFormat.
--
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=39200
Bug ID: 39200
Summary: Shogun: Total War crashes at startup
Product: Wine
Version: 1.7.50
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: zombie_ryushu(a)yahoo.com
Distribution: ---
This bug was never fixed and should be re-opened. This bug is related to the
amstream DirectShow Filter. Using the Demo Version is not a sufficient test as
the Demo version does not use the amstream codec filter. This bug is extremely
severe, and needs to be re-opened.
Any and all tests for this bug must be done with the retail versions of this
game, the Demo version does not use amstream in such a way to cause 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.
http://bugs.winehq.org/show_bug.cgi?id=12851
Summary: LEGO Rock Raiders amstream crash
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
Created an attachment (id=12540)
--> (http://bugs.winehq.org/attachment.cgi?id=12540)
+amstream log with crash
LEGO Rock Raiders crashes when trying to play the "LEGO Media" splash video.
+amstream log included. I don't think that this game has a demo. One needs a
nocd crack to bypass safedisc and a native d3drm.dll to avoid a crash if they
want to run the game.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=15508
Summary: Risk II crash while loading the game
Product: Wine
Version: 1.1.5
Platform: Other
URL: http://www.reflexive.com/RiskII.html
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Tested in Ubuntu 8.10 and wine 1.1.5
--
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.
http://bugs.winehq.org/show_bug.cgi?id=10581
Summary: swat 3 v2.1 needs some amstream stuff to work
Product: Wine
Version: 0.9.49.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dshow
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mizvekov(a)gmail.com
Created an attachment (id=9373)
--> (http://bugs.winehq.org/attachment.cgi?id=9373)
everything builtin
with builtin amstream.dll, sierra's SWAT 3 version 2.1 shows a messagebox
saying it needs directx at least version 6.1 to run and then it quits.
with windows xp native amstream, it dies further down the road
--
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=42986
Bug ID: 42986
Summary: wine can't be compiled by gcc-2.95.4
Product: Wine
Version: 2.7
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Created attachment 58123
--> https://bugs.winehq.org/attachment.cgi?id=58123
gcc-2.95.4 fails to build amstream
In effort to find out lowest kernel version supported by wine, I will need old
distro with old compiler. So preliminary test reveals:
wine-2.7 @ gcc-4.1.1: winecfg=OK & notepad=OK
wine-2.7 @ gcc-3.4.6: winecfg=OK & notepad=OK
wine-2.7 @ gcc-3.3.6: winecfg=OK & notepad=OK
wine-2.7 @ gcc-2.95.4: compilation fails:
amstream/mediastream.c: In function `ddrawstreamsample_create':
amstream/mediastream.c:1024: structure has no member named `dwRGBBitCount'
amstream/mediastream.c:1025: structure has no member named `dwRBitMask'
amstream/mediastream.c:1026: structure has no member named `dwGBitMask'
amstream/mediastream.c:1027: structure has no member named `dwBBitMask'
amstream/mediastream.c:1028: structure has no member named `dwRGBAlphaBitMask'
make[1]: *** [mediastream.o] Error 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.
https://bugs.winehq.org/show_bug.cgi?id=36555
Bug ID: 36555
Summary: valgrind shows a definite leak in
amstream/tests/amstream.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
../../../tools/runtest -q -P wine -T ../../.. -M amstream.dll -p
amstream_test.exe.so amstream && touch amstream.ok
preloader: Warning: failed to reserve range 00110000-68000000
preloader: Warning: failed to reserve range 7f000000-82000000
fixme:win:EnumDisplayDevicesW ((null),0,0x4daf010,0x00000000), stub!
fixme:amstream:IAMMultiMediaStreamImpl_AddMediaStream Specifying a stream
object in params is not yet supported
err:amstream:DirectDrawMediaStreamImpl_IAMMediaStream_QueryInterface
(0x49f9338)->({f7537560-a3be-11d0-8212-00c04fc32c45},0x4dafa2c),not found
fixme:amstream:DirectDrawMediaStreamImpl_IDirectDrawMediaStream_GetFormat
(0x49f933c)->(0x4daf83c,0x4dafa20,0x4daf8a8,0x4dafa1c) stub!
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
err:amstream:AudioMediaStreamImpl_IAMMediaStream_QueryInterface
(0x49858f0)->({f4104fce-9a70-11d0-8fde-00c04fd9189d},0x4daf9f0),not found
fixme:amstream:AudioMediaStreamImpl_IAudioMediaStream_GetFormat
(0x49858f4/0x49858f0)->((nil)) stub!
fixme:amstream:AudioMediaStreamImpl_IAudioMediaStream_GetFormat
(0x49858f4/0x49858f0)->(0x4daf9d2) stub!
==25590== 120 bytes in 3 blocks are definitely lost in loss record 578 of 920
==25590== at 0x7BC4C6DF: notify_alloc (heap.c:255)
==25590== by 0x7BC50F23: RtlAllocateHeap (heap.c:1716)
==25590== by 0x5CD47AF: IMalloc_fnAlloc (ifs.c:186)
==25590== by 0x5CD50CA: CoTaskMemAlloc (objidl.h:1236)
==25590== by 0xF46F689: AudioClient_GetMixFormat (mmdevdrv.c:1749)
==25590== by 0xF431860: set_format (audioclient.h:330)
==25590== by 0xF4319DF: load_driver_devices (devenum.c:464)
==25590== by 0xF433231: MMDevEnum_Create (devenum.c:852)
==25590== by 0xF436445: MMCF_CreateInstance (main.c:252)
==25590== by 0x5CB5F06: CoCreateInstance (unknwn.h:226)
==25590== by 0xE18103C: get_mmdevenum (dsound_main.c:178)
==25590== by 0xE18136D: GetDeviceID (dsound_main.c:261)
==25590== by 0xE17E65D: DirectSoundDevice_Initialize (dsound.c:760)
==25590== by 0xE17D45F: IDirectSound8Impl_Initialize (dsound.c:398)
==25590== by 0xE17DAA1: DirectSoundCreate8 (dsound.c:573)
==25590== by 0xE8F3C38: ???
==25590== by 0xE91614B: ???
==25590== by 0x5CB5F06: CoCreateInstance (unknwn.h:226)
==25590== by 0x67A5187: ???
==25590== by 0x4CA33D2: test_media_streams (amstream.h:590)
==25590==
--
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=21957
Summary: Missing GUID check in
IAMMultiMediaStreamImpl_QueryInterface?
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: amstream
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rainy6144(a)gmail.com
This is necessary to make some games work (without actually showing the media,
though).
--- amstream.c.bak 2010-03-06 16:55:24.000000000 +0800
+++ amstream.c 2010-03-06 16:55:36.000000000 +0800
@@ -79,6 +79,7 @@
TRACE("(%p/%p)->(%s,%p)\n", iface, This, debugstr_guid(riid), ppvObject);
if (IsEqualGUID(riid, &IID_IUnknown) ||
+ IsEqualGUID(riid, &IID_IMultiMediaStream) ||
IsEqualGUID(riid, &IID_IAMMultiMediaStream))
{
IClassFactory_AddRef(iface);
--
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=41502
Bug ID: 41502
Summary: hotmail technical support number 1877 424 6647 hotmail
contact phone number toll free
Product: Wine
Version: 1.9.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: sirecusav(a)hostcalls.com
Distribution: ---
hotmail technical support number 1877 424 6647 hotmail contact phone number
toll free
hotmail technical support number 1877 424 6647 hotmail contact phone number
toll freehotmail technical support number 1877 424 6647 hotmail contact phone
number toll freehotmail technical support number 1877 424 6647 hotmail contact
phone number toll free
hotmail technical support number 1877 424 6647 hotmail contact phone number
toll free
https://answers.atlassian.com/questions/43206063/hotmail-support-hotline-sc…https://bugs.winehq.org/show_bug.cgi?id=41496https://bugs.winehq.org/show_bug.cgi?id=41497https://bugs.winehq.org/show_bug.cgi?id=41499https://bugs.winehq.org/show_bug.cgi?id=41500https://bugs.winehq.org/show_bug.cgi?id=41501
hotmail support uk 18774246647 hotmail support number for hotmail technical
support?
hotmail support uk 18774246647 hotmail support number for hotmail technical
support?
hotmail support uk 18774246647 hotmail support number for hotmail technical
support?
Hotmail ???$$..1+!!”877!::!!!+:”424::!”!+6647*^% Hotmail Tech support phone
numberCALL@ 1~877~424~6647 Hotmail customer service phone number@@@@ CALL@
1~877~424~6647 Hotmail customer service phone number@@@@ CALL@ 1~877~424~6647
Hotmail customer service phone number@@@@ CALL@ 1~877~424~6647 Hotmail customer
service phone number@@@@ CALL@ 1~877~424~6647 Hotmail customer service phone
number@@@@ 1~877~424~6647 Hotmail customer service phone number@@@@
1~877~424~6647 Hotmail customer service phone number@@@@ 1~877~424~6647 Hotmail
customer service phone number@@@@ hotmail help desk phone number hotmail email
help desk hotmail support hotmail sign in msn hotmail help desk phone number
contact hotmail help hotmail customer service hotmail password reset windows
live hotmail customer support msn messenger customer support msn live customer
support msn hotmail customer service number msn hotmail helpline phone number
msn hotmail customer service email microsoft hotmail customer support number
hotmail customer support live chat msn hotmail customer support yahoo email
customer support msn hotmail customer support msn messenger customer support
wellsfargo customer support msn help desk msn mail support microsoft msn
support how to contact msn hotmail windows live hotmail help msn messenger help
msn email help msn live help msn hotmail help phone number msn hotmail sign in
msn hotmail support msn hotmail customer support hotmail online technical
support hotmail online technical support number hotmail technical contact
hotmail tech support contact hotmail tech support telephone number hotmail tech
support phone hotmail tech support phone number usa hotmail contact tech
support hotmail contact technical support contact hotmail technical support
phone number hotmail technical support phone number usa hotmail live tech
support chat hotmail technical support live chat hotmail technical support live
chat usa windows live hotmail technical support chat call hotmail tech support
usa call hotmail tech support call hotmail technical support phone number
contact hotmail customer support telephone call hotmail technical support
hotmail phone tech support contact hotmail technical support phone contact
hotmail technical support phone number contact hotmail technical support phone
number usa contact hotmail technical support telephone number contact hotmail
technical support phone contact hotmail tech support by phone tech support for
hotmail tech support for hotmail phone number tech support number for hotmail
technical support number for hotmail contact phone number for hotmail technical
support phone number for hotmail technical support contact phone number for
hotmail technical support toll free number hotmail tech support hotmail
technical support hotline windows live hotmail technical support phone number
hotmail technical support line hotmail technical support phone number usa
hotmail technical service phone number hotmail customer service hotmail
customer service tech support hotmail customer service technical support
hotmail customer service technical support number hotmail customer service
technical support phone number hotmail customer service technical support usa
hotmail technical support phone number usa hotmail customer support contact
number hotmail tech support number hotmail tech support number contact details
Hotmail helpline number Hotmail helpline number usa Hotmail helpline number uk
Hotmail helpline phone number hotmail helpline telephone number hotmail
helpline telephone number uk hotmail helpline telephone number usa windows live
hotmail customer service microsoft hotmail support phone number microsoft
hotmail helpline number uk microsoft hotmail support phone number usa microsoft
hotmail support phone number uk microsoft hotmail helpline number usa hotmail
support phone number uk Free Hotmail support number Free Hotmail support number
usa hotmail technical support contact number hotmail tech support contact
number hotmail coustomer support number contact hotmail customer support
telephone hotmail live chat customer support Hotmail Customer Care uk hotmail
free tech support phone number hotmail free tech support phone number hotmail
free customer support free hotmail customer service phone number free hotmail
customer support hotmail customer service toll free number hotmail customer
service toll free number usa hotmail customer service contact service hotmail
customer service toll free number hotmail customer care toll free number
hotmail customer support toll free number usa toll free hotmail support toll
free hotmail support usa toll free hotmail support uk toll free hotmail support
number toll free
All
Hotmail customer support phone number
Hotmail mail technical support phone number
free Hotmail tech support phone number
Hotmail technical support phone number
hotmail support chat
hotmail customer service phone number uk
hotmail contact number canada
msn hotmail customer service phone number
hotmail customer care number
hotmail toll free number
hotmail support number canada
microsoft hotmail support
--
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=41501
Bug ID: 41501
Summary: contact support hotmail @ ! 1877 424 6647 ! hotmail
phone number for hotmail technical query for United
States
Product: Wine
Version: 1.9.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: sirecusav(a)hostcalls.com
Distribution: ---
contact support hotmail @ ! 1877 424 6647 ! hotmail phone number for hotmail
technical query for United States
contact support hotmail @ ! 1877 424 6647 ! hotmail phone number for hotmail
technical query for United States
contact support hotmail @ ! 1877 424 6647 ! hotmail phone number for hotmail
technical query for United States
contact support hotmail @ ! 1877 424 6647 ! hotmail phone number for hotmail
technical query for United States
contact support hotmail @ ! 1877 424 6647 ! hotmail phone number for hotmail
technical query for United States
contact support hotmail @ ! 1877 424 6647 ! hotmail phone number for hotmail
technical query for United Statescontact support hotmail @ ! 1877 424 6647 !
hotmail phone number for hotmail technical query for United States
hotmail support uk 18774246647 hotmail support number for hotmail technical
support?
hotmail support uk 18774246647 hotmail support number for hotmail technical
support?
hotmail support uk 18774246647 hotmail support number for hotmail technical
support?
Hotmail ???$$..1+!!”877!::!!!+:”424::!”!+6647*^% Hotmail Tech support phone
numberCALL@ 1~877~424~6647 Hotmail customer service phone number@@@@ CALL@
1~877~424~6647 Hotmail customer service phone number@@@@ CALL@ 1~877~424~6647
Hotmail customer service phone number@@@@ CALL@ 1~877~424~6647 Hotmail customer
service phone number@@@@ CALL@ 1~877~424~6647 Hotmail customer service phone
number@@@@ 1~877~424~6647 Hotmail customer service phone number@@@@
1~877~424~6647 Hotmail customer service phone number@@@@ 1~877~424~6647 Hotmail
customer service phone number@@@@ hotmail help desk phone number hotmail email
help desk hotmail support hotmail sign in msn hotmail help desk phone number
contact hotmail help hotmail customer service hotmail password reset windows
live hotmail customer support msn messenger customer support msn live customer
support msn hotmail customer service number msn hotmail helpline phone number
msn hotmail customer service email microsoft hotmail customer support number
hotmail customer support live chat msn hotmail customer support yahoo email
customer support msn hotmail customer support msn messenger customer support
wellsfargo customer support msn help desk msn mail support microsoft msn
support how to contact msn hotmail windows live hotmail help msn messenger help
msn email help msn live help msn hotmail help phone number msn hotmail sign in
msn hotmail support msn hotmail customer support hotmail online technical
support hotmail online technical support number hotmail technical contact
hotmail tech support contact hotmail tech support telephone number hotmail tech
support phone hotmail tech support phone number usa hotmail contact tech
support hotmail contact technical support contact hotmail technical support
phone number hotmail technical support phone number usa hotmail live tech
support chat hotmail technical support live chat hotmail technical support live
chat usa windows live hotmail technical support chat call hotmail tech support
usa call hotmail tech support call hotmail technical support phone number
contact hotmail customer support telephone call hotmail technical support
hotmail phone tech support contact hotmail technical support phone contact
hotmail technical support phone number contact hotmail technical support phone
number usa contact hotmail technical support telephone number contact hotmail
technical support phone contact hotmail tech support by phone tech support for
hotmail tech support for hotmail phone number tech support number for hotmail
technical support number for hotmail contact phone number for hotmail technical
support phone number for hotmail technical support contact phone number for
hotmail technical support toll free number hotmail tech support hotmail
technical support hotline windows live hotmail technical support phone number
hotmail technical support line hotmail technical support phone number usa
hotmail technical service phone number hotmail customer service hotmail
customer service tech support hotmail customer service technical support
hotmail customer service technical support number hotmail customer service
technical support phone number hotmail customer service technical support usa
hotmail technical support phone number usa hotmail customer support contact
number hotmail tech support number hotmail tech support number contact details
Hotmail helpline number Hotmail helpline number usa Hotmail helpline number uk
Hotmail helpline phone number hotmail helpline telephone number hotmail
helpline telephone number uk hotmail helpline telephone number usa windows live
hotmail customer service microsoft hotmail support phone number microsoft
hotmail helpline number uk microsoft hotmail support phone number usa microsoft
hotmail support phone number uk microsoft hotmail helpline number usa hotmail
support phone number uk Free Hotmail support number Free Hotmail support number
usa hotmail technical support contact number hotmail tech support contact
number hotmail coustomer support number contact hotmail customer support
telephone hotmail live chat customer support Hotmail Customer Care uk hotmail
free tech support phone number hotmail free tech support phone number hotmail
free customer support free hotmail customer service phone number free hotmail
customer support hotmail customer service toll free number hotmail customer
service toll free number usa hotmail customer service contact service hotmail
customer service toll free number hotmail customer care toll free number
hotmail customer support toll free number usa toll free hotmail support toll
free hotmail support usa toll free hotmail support uk toll free hotmail support
number toll free
All
Hotmail customer support phone number
Hotmail mail technical support phone number
free Hotmail tech support phone number
Hotmail technical support phone number
hotmail support chat
hotmail customer service phone number uk
hotmail contact number canada
msn hotmail customer service phone number
hotmail customer care number
hotmail toll free number
hotmail support number canada
microsoft hotmail support
--
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=40651
Bug ID: 40651
Summary: Tech Support C@ll @@$$@$I~855~7O9~2847+++ Epsonprinter
c.u.s.t.o.m.e.r S.u.p.p.o.rt p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l
Product: Wine
Version: 0.9.1.
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: amstream
Assignee: wine-bugs(a)winehq.org
Reporter: dheerendraverman39(a)gmail.com
Distribution: ---
((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a EPSON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, EPSON printer
Tech Support phone number,EPSON technical support phone number 1 I8557O92847
.EPSON Tech Support Number EPSON Tech EPSON tech support, EPSON tech support
number, EPSON tech support phone number, EPSON technical support, EPSON
technical support number, EPSON technical support phone number, EPSON tech
support number, EPSON support number, EPSON Tech support phone number, EPSON
support phone number, EPSON technical support phone number, EPSON technical
support number,Support Phone Number for EPSON printer Phone Number for EPSON
CustomerService Technical Support Telephone Number EPSON printer support number
EPSON EPSON printer tech support number EPSON EPSON printer technical support
number EPSON EPSON printer technical support phone number EPSON EPSON printer
customer service number EPSON EPSON internet security technical support EPSON
technical support phone number EPSON EPSON tech support phone number EPSON
EPSON customer support phone number I-855-709-2847 EPSON EPSON printer support
phone number EPSON EPSON support phone EPSON tech support EPSON customer
support EPSON phone support EPSON support number EPSON EPSON technical support
EPSON printer customer support phone number EPSON EPSON printer tech support
phone number EPSON contact EPSON support EPSON printer technical support phone
number ~!~I8557092847++ EPSON EPSON phone number EPSON tech support EPSON
support ticket EPSON customer support number EPSON EPSON tech support number
EPSON EPSON technical support number EPSON EPSON support center EPSON telephone
support call EPSON support EPSON printer support support EPSON EPSON billing
support EPSON printer technical support number EPSON support EPSON printer
EPSON online support EPSON contact support EPSON printer support number EPSON
EPSON printer customer support number EPSON EPSON printer tech support number
EPSON support for EPSON EPSON phone number EPSON EPSON customer service phone
number EPSON EPSON contact phone number EPSON EPSON printer phone number EPSON
EPSON printer customer service phone number EPSON phone number EPSON for EPSON
customer service EPSON software phone number EPSON phone number EPSON for EPSON
EPSON customer service telephone number EPSON EPSON helpline phone number EPSON
EPSON contact number EPSON EPSON customer service number EPSON EPSON customer
service phone number ~!~I8557092847++ EPSON us EPSON customer service phone
number EPSON usa EPSON telephone number EPSON EPSON phone number EPSON usa
EPSON printer contact number EPSON EPSON number EPSON EPSON contact number
EPSON usa EPSON printer helpline number EPSON EPSON helpline number EPSON EPSON
customer number EPSON EPSON printer customer service number EPSON EPSON contact
telephone number EPSON contact number EPSON for EPSON EPSON software contact
number EPSON EPSON toll free number EPSON EPSON telephone number EPSON uk EPSON
registration number EPSON EPSON toll free number EPSON usa EPSON customer
service EPSON software customer service contact EPSON customer service EPSON
customer service phone EPSON printer customer service EPSON service EPSON
printer technical support EPSON printer customer support EPSON technical
support reviews telephone EPSON printer EPSON tech support phone number EPSON
EPSON printer tech support phone number EPSON EPSON printer customer service
EPSON technical support phone number EPSON EPSON printer free printer support
EPSON customer service billing EPSON customer service email address EPSON
customer service reviews contact EPSON customer service EPSON tech support
number EPSON usa EPSON printer support number EPSON EPSON printer contact
number EPSON EPSON customer service phone number EPSON EPSON technical support
usa EPSON technical support number EPSON EPSON tech support phone EPSON tech
support number EPSON EPSON customer service telephone number EPSON EPSON
printer customer support number EPSON EPSON printer phone number EPSON EPSON
printer online support EPSON customer service number EPSON EPSON tech support
center EPSON customer service EPSON software customer service EPSON customer
care number EPSON usa EPSON customer number EPSON EPSON customer support number
EPSON EPSON customer care number EPSON EPSON customer care toll free number
EPSON EPSON tech support EPSON technical support EPSON printer support EPSON
printer tech support EPSON support center EPSON.com customer service EPSON
printer customer care number EPSON EPSON customer care EPSON phone number EPSON
phone number EPSON for EPSON customer service EPSON phone support EPSON phone
number EPSON tech support EPSON support phone number EPSON contact EPSON by
phone EPSON contact phone number EPSON EPSON helpline phone number EPSON EPSON
printer phone EPSON printer for phone EPSON contact number EPSON EPSON contact
support contact EPSON printer EPSON contact number EPSON usa EPSON toll free
number EPSON EPSON telephone number EPSON EPSON toll free number EPSON usa
EPSON printer support services technical support for printer EPSON EPSON
customer service phone number EPSON usa EPSON printer customer care number
EPSON usa EPSON customer care number EPSON EPSON customer care center EPSON
customer support EPSON customer support phone EPSON customer help EPSON
customer & technical support EPSON customer portal EPSON customer care phone
number EPSON usa EPSON customer care email EPSON helpline EPSON tech support
contact EPSON customer care toll free EPSON printer customer service number
EPSON EPSON printer protection norton printer customer service number EPSON
EPSON software customer service number EPSON EPSON hotline customer service
phone number EPSON EPSON customer service phone number EPSON us how to contact
EPSON by email EPSON free phone support EPSON printer technical support number
EPSON EPSON printer technical support help desk phone number EPSON EPSON
technical support number EPSON toll free number EPSON EPSON printer customer
support phone number EPSON EPSON printer customer
--
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=40445
Bug ID: 40445
Summary: WinSCP main window looks differently when being run
under Wine
Product: Wine
Version: 1.9.7
Hardware: x86
URL: http://winscp.net/download/winscp577.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t.artem(a)mailcity.com
Distribution: ---
Created attachment 54196
--> https://bugs.winehq.org/attachment.cgi?id=54196
WinSCP main window under Wine
Just see the attached self-explanatory screenshot.
Wine problems:
1) Hosts lack indentation (several pixels)
2) Some buttons lack down arrows
3) The log in button lack an icon
--
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=18611
Summary: After effects 6.5 crashes when import a mp3 file
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cemelmaci(a)hotmail.com
Created an attachment (id=21294)
--> (http://bugs.winehq.org/attachment.cgi?id=21294)
terminal output
After effects 6.5 crashes when import a mp3 file
--snip--
fixme:amstream:IAMMultiMediaStreamImpl_GetFilter
(0x72f0468/0x72f0468)->(0x82e480) stub!
wine: Unhandled page fault on read access to 0x00000001 at address 0xb13967
(thread 0009), starting debugger...
--snip--
--
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=42213
Bug ID: 42213
Summary: Age of Empires 2 doesn't work with Wine
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: prometheuswithbutter(a)gmail.com
Distribution: ---
Created attachment 56853
--> https://bugs.winehq.org/attachment.cgi?id=56853
I would like to install Age of Empires 2 on Linux with Wine, but it doesn't
work.
I would like to install Age of Empires 2 on Linux, but It doesn't work.
Before I used Windows 7 and it worked perfect.
Can you help me?
It's my second fave game.
Thank you, Janek.
Sorry for my English, I'm not English :-)
I don't know components or versions or else.
--
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=46286
Bug ID: 46286
Summary: MTGO: Fails to launch due to missing EULA
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: leothelion92(a)gmail.com
Distribution: ---
Magic the Gathering online launches but gets stuck at the EULA agreement step.
The EULA doesn't display, just showing "EULA file not found" instead. Unable to
click "I agree", only able to click "I disagree" which closes the launcher.
Personally using Ubuntu 16.0.4.
--
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=46632
Bug ID: 46632
Summary: Error installing Crash Bandicoot N Sane trilogy
Product: Wine
Version: 4.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luca.finizio.mgbx(a)hotmail.it
Distribution: ---
Created attachment 63540
--> https://bugs.winehq.org/attachment.cgi?id=63540
console output
Hi tried to install Crash Bandicoot N Sane trilogy but I get an error window
which says:"Runtime error 229 at 074A4BCF".
I attached my console output.
--
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=39666
Bug ID: 39666
Summary: i try to load age of empires 2 and it doesnt let me
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: paatriciaa_17(a)hotmail.co.uk
Distribution: ---
Created attachment 52885
--> https://bugs.winehq.org/attachment.cgi?id=52885
this is the error please help me solve it
i have recently got a game i played when i was younger and installed it but
when i try to launch it doesnt work
--
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=44387
Bug ID: 44387
Summary: Unity3D fails with "X11DRV_wglCreateContextAttribsARB
Context creation failed" error
Product: Wine
Version: 3.0-rc5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: bob_lists(a)yahoo.co.uk
Distribution: ---
Created attachment 60307
--> https://bugs.winehq.org/attachment.cgi?id=60307
relevant extracts from glxinfo
I installed Unity 2017.2.0f3 (64-bit) from
https://store.unity.com/download?ref=personal
(click on Windows option)
This gets
UnityDownloadAssistant-2017.2.0f3.exe
Note:
Run winecfg and set Applications->Windows Version to Windows 7. (Otherwise
UnityDownloadAssistant will not run.)
Make sure winbind is installed on your system, otherwise Unity3D does not get
as far as the error reported here.
I ran UnityDownloadAssistant-2017.2.0f3.exe
Some components did not install, but the main installation completed and
claimed to be succesful.
I ran
env WINEPREFIX="/home/bob/.wine" wine C:\\windows\\command\\start.exe /Unix
/home/bob/.wine/dosdevices/c:/users/Public/Start\ Menu/Programs/Unity\
2017.2.0f3\ \(64-bit\)/Unity.lnk &> unitylog.txt
This displays a window headed "Unity 2017.2.0f3". The contents of the window
are black. After a few seconds, the contents turn to grey. The program takes
100% of cpu and does not terminate.
The software outputs a large number of fixme messages plus the error message
005b:err:wgl:X11DRV_wglCreateContextAttribsARB Context creation failed (error
1)
The computer is a Toshiba Satellite with 2 x (AMD E1-1200 APU @ 1.4 GHz with
Radeon HD Graphics).
Ubuntu Mate 16.04
$ lspci
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI]
Wrestler [Radeon HD 7310]
--
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=44670
Bug ID: 44670
Summary: GOG Galaxy 1.2.37: crash in GalaxyClient Helper.exe
Product: Wine-staging
Version: 3.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: magist3r(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60680
--> https://bugs.winehq.org/attachment.cgi?id=60680
backtrace
After update to GOG Galaxy 1.2.37 I see permanent crash in GalaxyClient
Helper.exe. Version 1.2.17 works fine. Backtrace in attachment. Feel free to
ask me for some more info.
--
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=44488
Bug ID: 44488
Summary: does not to execute a .exe file
Product: Wine
Version: 2.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: apphelp
Assignee: wine-bugs(a)winehq.org
Reporter: mrdwili(a)hotmail.fr
Distribution: ---
Created attachment 60443
--> https://bugs.winehq.org/attachment.cgi?id=60443
what is written when I execute the .exe
I tried to install Final Fantasy X-X2 with wine, but when I type wine
/Volumes/Final\ Fantasy\ X\ X-2\ HD\ Remaster/setup.exe I have this whole page
and wine with written "Runtime error 229 at 07494BCF"
--
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=45250
Bug ID: 45250
Summary: The Sims Double Deluxe crash at startup
Product: Wine
Version: 3.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 61494
--> https://bugs.winehq.org/attachment.cgi?id=61494
The Sims log with WINEDEBUG="+ddraw,+d3d"
Hi!
I'm trying to get The Sims Double Deluxe running on my computer. It passes the
CD check before crashing.
I think it has something to do with the pixelformat not being correct (16 bit
not supported, or something).
Following is an excerpt from the log file:
0009:trace:ddraw:DDRAW_dump_members - DDSD_HEIGHT : 600
0009:trace:ddraw:DDRAW_dump_members - DDSD_WIDTH : 800
0009:trace:ddraw:DDRAW_dump_members - DDSD_PIXELFORMAT : ( )
0009:trace:d3d:wined3d_get_adapter_display_mode wined3d 0x16f8e0, adapter_idx
0, display_mode 0x32f784, rotation (nil).
0009:warn:d3d:wined3d_get_adapter_display_mode Overriding format
WINED3DFMT_B8G8R8X8_UNORM with stored format WINED3DFMT_B5G6R5_UNORM.
0009:trace:d3d:wined3d_get_adapter_display_mode Returning 800x600@60
WINED3DFMT_B5G6R5_UNORM 0x1.
0009:trace:ddraw:wined3dformat_from_ddrawformat Convert a DirectDraw
Pixelformat to a WineD3D Pixelformat
0009:trace:ddraw:DDRAW_dump_pixelformat ( )
0009:warn:ddraw:wined3dformat_from_ddrawformat Unknown Pixelformat.
0009:warn:ddraw:ddraw_surface_create Unsupported / unknown pixelformat.
0009:trace:ddraw:ddraw_surface4_AddAttachedSurface iface 0x1935fc, attachment
(nil).
0009:err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7d9f5bb3
My machine has the following HW:
* CPU: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
* 00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core
Processor Family Integrated Graphics Controller (rev 09)
* 01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [GeForce GT
520M] (rev a1)
I'm only running OpenSource drivers, so maybe this has something to do with my
error?
--
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=26306
Summary: age of empires ll error
Product: Wine
Version: 1.3.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tbone6669(a)gmail.com
every thing installed fine the game just wont run and i get this error message
--
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=44472
Bug ID: 44472
Summary: Installation PS4 Remote Play terminated with message
"PS4 Remote Play can not be installed on systems with
screen resolution smaller than 1024 x 768"
Product: Wine
Version: 2.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikhail.v.gavrilov(a)gmail.com
Distribution: ---
Installation PS4 Remote Play terminated with message "PS4 Remote Play can not
be installed on systems with screen resolution smaller than 1024 x 768"
OS: Fedora 27 with gnome-shell with Wayland session
$ wine --version
wine-2.20 (Staging)
$ wine Downloads/RemotePlayInstaller.exe
fixme:winediag:start_process Wine Staging 2.20 is a testing version containing
experimental patches.
fixme:winediag:start_process Please mention your exact version when filing bug
reports on winehq.org.
fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x401123,
0x45a040, 0x45a058) stub.
fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x456e58, 43) stub
fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x6c1123,
0x6e3010, 0x6e3028) stub.
fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x6e0738, 43) stub
fixme:ntdll:EtwEventUnregister (deadbeef) stub.
fixme:ntdll:EtwEventUnregister (0) stub.
fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x6c1123,
0x6e3010, 0x6e3028) stub.
fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x6e0738, 43) stub
fixme:ntdll:EtwEventUnregister (deadbeef) stub.
fixme:ntdll:EtwEventUnregister (0) stub.
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:msi:check_transform_applicable unsupported validation flags 0x003
--
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=46147
Bug ID: 46147
Summary: Comodo Icedragon: no internet access, unable to acesss
about:config, prefs.js for modification
Product: Wine
Version: 3.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lenovolobo933(a)gmail.com
Distribution: ---
this is a similar problem to firefox having no internet access, but unlike
firefox, i am unable to access about:config and prefs.js for modification to
try and get it working. they remain blank
--
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=44662
Bug ID: 44662
Summary: Netease music client start up with blank screen
Product: Wine
Version: 3.3
Hardware: x86
URL: https://d1.music.126.net/dmusic/cloudmusicsetup_2_3_0_
196231.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zzhang(a)codeweavers.com
Distribution: ---
Created attachment 60666
--> https://bugs.winehq.org/attachment.cgi?id=60666
terminal output
$ sha1sum ~/Downloads/cloudmusicsetup_2_3_0_196231.exe
51d2d365e3118379bb8f2de5383c346cbd3d0262
/home/eric/Downloads/cloudmusicsetup_2_3_0_196231.exe
After installation, the client start up with blank screen.
--
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=45398
Bug ID: 45398
Summary: mpc-hc crash on startup.
Product: Wine
Version: 3.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: amie1972(a)163.com
Distribution: ---
after i upgrade my wine to version 3.11,start mpc-hc failed,a voilate access
error throughout,press confirm then program exit.back to version 3.10 is the
same.
--
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=38307
Bug ID: 38307
Summary: Last Half of Darkness: Beyond the Spirit's Eye crashes
at start
Product: Wine
Version: 1.7.39
Hardware: x86-64
URL: http://www.lasthalfofdarkness.com/beyond/demo.htm
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 51143
--> https://bugs.winehq.org/attachment.cgi?id=51143
log
Demo crashes at 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.