http://bugs.winehq.org/show_bug.cgi?id=30946
Bug #: 30946
Summary: Secret of Monkey Island wants
msvcp80.dll.?_Register@facet@locale@std@@QAEXXZ
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: piotr.caban(a)gmail.com
Classification: Unclassified
Follow up to bug 28772.
wine-1.5.6-216-gd0012f8
--
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=21569
Summary: urlmon/url tests crash if +heap is enabled (crypt32 to
blame?)
Product: Wine
Version: 1.1.37
Platform: x86-64
URL: http://test.winehq.org/data/7aaaf738ecd06c12bfd69200ee
74abd5cc9aef8b/wine_ae-ub910-heap/urlmon:url.html
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=26008)
--> (http://bugs.winehq.org/attachment.cgi?id=26008)
terminal output
The backtrace is a LONG line of crypt32 related stuff, along with
wininet/libssl/libcrypto/etc. See 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.
http://bugs.winehq.org/show_bug.cgi?id=31016
Bug #: 31016
Summary: HTML Help does not properly handle index entries with
the same name
Product: Wine
Version: 1.5.7
Platform: x86
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=5210
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hhctrl.ocx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
Duplicate entries in the HTML Help index appear as multiple entries. This
should not be the case, all of these entries should appear as part of the
"Topics Found" dialog.
Steps to reproduce:
0) At this time you must first patch Wine with the attachment to Bug #30948.
1) Download ContentAPISetup.msi from the MS website
2) cabextract -F _4E8D3D4C602B47F5A445D1B7AABCFE9F ContentAPISetup.msi
3) mv _4E8D3D4C602B47F5A445D1B7AABCFE9F ContentAPISetup.chm
4) wine start ContentAPISetup.chm
5) Switch to the Index tab
6) You'll notice many duplicate entries ("ContentException constructor" is a
good example)
--
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=31032
Bug #: 31032
Summary: Ragnarok download manager shows a .NET exception on
start (GdipLoadImageFromStream stream clone fails)
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
bug 30987 talks about a problem with builtin gdiplus and Mono.
Actually with .NET Framework 2.0 it fails too.
The issue (regression) is:
http://source.winehq.org/git/wine.git/commitdiff/9e12bc0175f6a65ee45ebce1ca…
(gdiplus: Create a copy of the source stream when loading an image.)
Mono still suffered after partial revert so these might not be related hence I
made an extra one.
With MS .NET 2.0 there is a managed backtrace shown in console.
--- snip ---
Unhandled Exception: System.ArgumentException: Parameter is not valid.
at System.Drawing.Image.get_FrameDimensionsList()
at System.Drawing.ImageAnimator.CanAnimate(Image image)
at System.Drawing.ImageAnimator.ImageInfo..ctor(Image image)
at System.Drawing.ImageAnimator.Animate(Image image, EventHandler
onFrameChangedHandler)
at System.Windows.Forms.ButtonBase.Animate(Boolean animate)
at System.Windows.Forms.ButtonBase.Animate()
at System.Windows.Forms.ButtonBase.set_Image(Image value)
at FilesDownloader.MainForm.InitializeComponent()
at FilesDownloader.MainForm..ctor()
at FilesDownloader.Program.Main()
--- snip ---
Actually it's the result of problem happening earlier.
Using a managed debugger this backtrace is more likely the culprit:
--- snip ---
(2a.2b): CLR exception - code e0434f4d (first chance)
...
OS Thread Id: 0x2b (0)
ESP EIP
0033e3d4 7b8394f7 [HelperMethodFrame: 0033e3d4]
0033e478 7ae3a024 System.Drawing.Internal.GPStream.NotImplemented()
0033e480 7adfefa5 System.Drawing.Internal.GPStream.Clone()
0033e670 79f1ef33 [GCFrame: 0033e670]
0033e7c8 79f1ef33 [ComMethodFrame: 0033e7c8]
0033e918 79f1ef33 [NDirectMethodFrameSlim: 0033e918]
System.Drawing.SafeNativeMethods+Gdip.GdipLoadImageFromStream(IStream, IntPtr
ByRef)
0033e928 7ae088ab System.Drawing.Image.InitializeFromStream(System.IO.Stream)
0033e95c 7ae085a8
System.Drawing.Image..ctor(System.Runtime.Serialization.SerializationInfo,
System.Runtime.Serialization.StreamingContext)
0033e99c 7ae0a336
System.Drawing.Bitmap..ctor(System.Runtime.Serialization.SerializationInfo,
System.Runtime.Serialization.StreamingContext)
...
0033f034 794458a4 System.Resources.ResourceManager.GetObject(System.String,
System.Globalization.CultureInfo, Boolean)
0033f058 79445809 System.Resources.ResourceManager.GetObject(System.String)
0033f05c 02b7096f FilesDownloader.MainForm.InitializeComponent()
0033f2f0 02b70270 FilesDownloader.MainForm..ctor()
0033f300 02b70090 FilesDownloader.Program.Main()
--- snip ---
Trace log:
--- snip ---
002b:Call gdiplus.GdipLoadImageFromStream(038a0030,0032e944) ret=0036a110
...
002b:Call KERNEL32.RaiseException(e0434f4d,00000001,00000001,0032e30c)
ret=79f97065
002b:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b8394f7
ip=7b8394f7 tid=002b
002b:trace:seh:raise_exception info[0]=80004001
002b:trace:seh:raise_exception eax=7b826491 ebx=7b8b06b0 ecx=80004001
edx=0032e208 esi=0032e2ec edi=0032e260
002b:trace:seh:raise_exception ebp=0032e248 esp=0032e1e4 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000287
002b:trace:seh:call_stack_handlers calling handler at 0x79f9a3c8 code=e0434f4d
flags=1
002b:trace:seh:call_stack_handlers handler at 0x79f9a3c8 returned 1
002b:trace:seh:call_stack_handlers calling handler at 0x7a3197d4 code=e0434f4d
flags=1
...
002b:trace:gdiplus:GdipCreateStreamOnFile ((null), 2147483648, 0x32e7c8)
002b:Ret gdiplus.GdipLoadImageFromStream() retval=00000002 ret=0036a110
--- snip ---
The commit can't be cleanly reverted but just restoring old behaviour in
GdipLoadImageFromStream() gets the app to work again.
Regards
--
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=24316
Summary: Level-R downloader needs
msvcp90.dll.??0?$codecvt@_WDH@std@@QAE@I@Z,
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://cdn.pandonetworks.com/pando/gamigo/LevelRDownlo
ader_DE_03242010.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 16976
Found while checking bug 16976.
--
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=17296
Summary: VMware Infrastructure Client 2.5 could not validate
server's SSL certificate
Product: Wine
Version: 1.1.14
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: secur32
AssignedTo: kai.blin(a)gmail.com
ReportedBy: wine(a)doty.ru
While starting VMware Instrastructure Client 2.5 after typing hostname, user
and password and hitting Login button, got error: "VMware Infrastructure Client
could not establish the initial connection with server 'XX.XX.XX.XX'. Details:
The client could not validate the server's SSL certificate".
Console log errors appeared:
fixme:secur32:schan_InitializeSecurityContextW Using hardcoded "NORMAL"
priority
fixme:secur32:schan_QueryContextAttributesW Unhandled attribute 0x5a
fixme:secur32:schan_QueryContextAttributesW Unhandled attribute 0x53
Thus program could not check servers' SSL certificate and don't run next. I
used .NET Framework 2.0 installed with this program version.
--
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=12966
Summary: Broken Sword 4 Demo fails to start
Product: Wine
Version: 0.9.61.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tsalacinski(a)gmail.com
Created an attachment (id=12710)
--> (http://bugs.winehq.org/attachment.cgi?id=12710)
Broken sword and WINE output
Broken sword demo fails to start. Opens only the window, and then exits
gracefully (creates a bug report file). Both files (WINE output and Broken
Sword output) are in the attachment below (gzipped)
--
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=31073
Bug #: 31073
Summary: Cannot open .lnk files
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
CC: fgouget(a)codeweavers.com
Classification: Unclassified
Regression SHA1: e0f4d5caf95cbe21f4bdb5a1ab4e99b935bfb4e5
Changes to the handling of command line parameters means that desktop shortcuts
to .lnk files will no longer launch. Regression testing result points to:
e0f4d5caf95cbe21f4bdb5a1ab4e99b935bfb4e5 is the first bad commit
commit e0f4d5caf95cbe21f4bdb5a1ab4e99b935bfb4e5
Author: Francois Gouget <fgouget(a)free.fr>
Date: Wed Jun 27 09:19:58 2012 +0200
start: Fix the command line handling.
:040000 040000 f0f9c24b93e16de5557a0958d76886950bab8744
96a4bd7f0f0e940d6807d6d394df3423c4e08c2f M po
:040000 040000 d6f3f034b8d0c7052475686b65b9eea0676b6fc8
981deb45af9a73e561a166e4e734680d40a4417b M programs
--
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=31050
Bug #: 31050
Summary: Civilization V demo crashes with unimplemented
msvcp90:??0?$basic_stringstream@DU?$char_traits@D@std@
@V?$allocator@D@2@@std@@QAE@H@Z (purist)
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Installing the civ v demo from
http://www.joystiq.com/game/civilization-v/download/civilization-5-demo/
f63089528c8b0315244359624a543ad5ba5fd135 Civ_V_Demo.rar
went smoothly, and the game worked (!). (Did see the jarring glitch from
bug 23299, but that's cosmetic.) So I tried making things harder, and did
winetricks alldlls=builtin
then launched the game. It crashed with unimplemented function
msvcp90:??0?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
For completeness, mscodescan reports only nine msvcp90 symbols are still
needed but unimplemented:
msvcp90:??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
msvcp90:??0?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@H@Z
msvcp90:??0?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
msvcp90:??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ
msvcp90:??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ
msvcp90:?_Raise_handler@std@@3P6AXABVexception@stdext@@@ZA
msvcp90:?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ
msvcp90:?str@?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ
msvcp90:?_Throw@std@@YAXABVexception@stdext@@@Z
--
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=30913
Bug #: 30913
Summary: dosbox svn version (EmuCR-Dosbox-r3738) needs
unimplemented function
msvcp100.dll.?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z
Product: Wine
Version: 1.5.6
Platform: x86-64
URL: http://www.emucr.com/2011/07/dosbox-svn-r3738.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
CC: piotr.caban(a)gmail.com
Classification: Unclassified
wine: Unimplemented function msvcp100.dll.?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z
called at address 0x7b83a142 (thread 0009), starting debugger...
http://www.emucr.com/2011/07/dosbox-svn-r3738.html
EmuCR-Dosbox-r3738$ sha1sum *.*
486afdabee3c38e90407d9a0aea4657e6068422e dosbox.exe
6469726caf45b8321832b58b9008ac5242d07342 libpng13.dll
a6f2589a6878e7c3384d9592077900c747232b0d SDL.dll
e8adb7e4821d98bd26062c793288dbf7754f6978 SDL_net.dll
b784599c82bb90d5267fd70aaa42acc0c614b5d2 zlib1.dll
EmuCR-Dosbox-r3738$ md5sum *.*
a2ccfe3a44ad468246ec5a479a6e44e6 dosbox.exe
fdcb0c799bfd1a0567d374853fb04c1e libpng13.dll
52726f9e11c4f2af64033ee17dae1fce SDL.dll
7db830b9fb29781f86cec2a1bbfe050c SDL_net.dll
c7d4d685a0af2a09cbc21cb474358595 zlib1.dll
--
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.