http://bugs.winehq.org/show_bug.cgi?id=24389
Summary: Winamp: crashes with Bento-Skin
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: smartmind23(a)googlemail.com
Created an attachment (id=30736)
--> (http://bugs.winehq.org/attachment.cgi?id=30736)
Console output of Winamp when crashing.
After fresh installation (WINEARCH=win32) of Winamp 5.581 and winetricks
comctl32 Winamp crashes after setting Skin to Modern or Bento.
Probably due to unimplemented function msvcr90.dll._wtoi_l
--
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=6184
Janne Lahdenperä <jannelahdenpera(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jannelahdenpera(a)gmail.com
--
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=31986
Bug #: 31986
Summary: calendar rendering bug in sporttracks 3
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tuomo.kohvakka(a)iki.fi
Classification: Unclassified
SportTracks has an UI bug, calendars do not render correctly, they're mostly
empty. No weekdays, dates, month names etc.
Installation needs WINEARCH=win32 and winetricks dotnet30.
Start up, enter some test data, calendars are visible upper-left on main screen
and next to date-input fields.
Using wine 1.1.15, sporttracks 3.1 trial.
Installer Setup_SportTracks_3.1.4518.exe available from
http://www.zonefivesoftware.com/sporttracks/store/download-trial.php
--
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=13567
Summary: Tecplot 360 : Program can not start
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://www.tecplot.com/products/360/demo.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: biglittle(a)gmail.com
It shows "Configuration file is missing. Using factory defaults."
I click OK, then a error message say "Cannot find font input file"
--
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=33123
Bug #: 33123
Summary: Naver LINE stopped working with wine-1.5.25 (worked
fine with 1.5.24)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: god(a)politeia.in
Classification: Unclassified
Created attachment 43804
--> http://bugs.winehq.org/attachment.cgi?id=43804
snapshot of error.png
Hello, LINE (http://line.naver.jp/en/) is a messaging program to send text to
mobile phones that use this program.
I've been using it without issues for some months on my Gentoo since (probably)
wine-1.5.12 until 1.5.24, although with the upgrade to wine-1.5.25 it just
shows the error (picture attached below):
$ â–¶ wine Line.exe
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
err:module:find_forwarded_export function not found for forward
'msvcrt.__uncaught_exception' used by L"C:\\windows\\system32\\msvcp90.dll". If
you are using builtin L"msvcp90.dll", try using the native one instead.
I have indeed installed vcrun2008 through winetricks.
Winedbg shows only this:
WineDbg starting on pid 002b
0x7b862ccf: movl %edi,0x4(%esp)
I'm using LINE: 3.1.3.51
Wine has been built with: gcc (Gentoo 4.7.2-r1 p1.4, pie-0.5.5) 4.7.2
--
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=2203
--- Comment #32 from fox6x6x6(a)gmail.com 2013-04-07 06:45:18 CDT ---
Forget my last two commments, I figured out the problem.
It's all about the ZDrive http://www.dosbox.com/wiki/ZDrive in dosbox.
Wine tried to mount his z: drive, but dosbox wouldn't do so and it couldn't
execute the program. If you start your program from inside drive c: it is going
to work.
The following patch mounts wine's z: as y: and now you can start the program
from outside the .wine directory too.
@@ -184,12 +184,10 @@ static void start_dosbox( const char *appname, const char
*args )
}
for (i = 0; i <= 25; i++)
if (drives & (1 << i))
- p += sprintf( p, "mount %c %s/dosdevices/%c:\n", 'a' + i == 'z' ?
'y' : 'a' + i, config_dir, 'a' + i );
- p += sprintf( p, "%c:\ncd ", path[0] == 'Z' ? 'Y' : path[0] );
+ p += sprintf( p, "mount %c %s/dosdevices/%c:\n", 'a' + i,
config_dir, 'a' + i );
+ p += sprintf( p, "%c:\ncd ", path[0] );
p += WideCharToMultiByte( CP_UNIXCP, 0, path + 2, -1, p, 4 *
strlenW(path), NULL, NULL ) - 1;
p += sprintf( p, "\nconfig -securemode\n" );
- if (app[0] == 'Z')
- app[0] = 'Y';
p += sprintf( p, "%s %s\n", app, args );
p += sprintf( p, "exit\n" );
if (WriteFile( file, buffer, strlen(buffer), &written, NULL ) && written
== strlen(buffer))
But there is another limitation: if you have a directory name longer than 8
characters in the programs path it will fail too.
For example if I save Dos Navigator to
Y:\home\fabian\Downloads\dn\DN.COM
in the temporary dosbox config file it will look like
Y:\home\fabian\DOWN~NTG\dn\DN.COM
instead of the real DOS path
Y:\home\fabian\DOWNLO~1\dn\DN.COM
and dosbox will fail to run the program
--
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=33343
Bug #: 33343
Summary: unimplemented function msvcp90.dll
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: justineuro.moin(a)gmail.com
Classification: Unclassified
wine: Call from 0x7b83a323 to unimplemented function
msvcp90.dll.??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z,
aborting
wine: Unimplemented function
msvcp90.dll.??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
called at address 0x7b83a323 (thread 002f), starting debugger...
Unhandled exception: unimplemented function
msvcp90.dll.??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
called in 32-bit code (0x7b83a323).
--
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=2203
--- Comment #31 from fox6x6x6(a)gmail.com 2013-04-06 16:55:29 CDT ---
(In reply to comment #30)
> I've edited the start_dosbox function in programs/winevdm/winevdm.c by adding
> the line
> if (fork())
> before the
> ret = spawnvp( _P_WAIT, args[0], args );
> line and now it works.
>
> It also works if you let the child do the work with
> if (!fork())
>
> Very strange indeed, I don't understand why this fixes the bug, maybe one of
> you does?
Sorry, it doesn't fix the problem, because the dosbox that starts is empty.
--
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=2203
fox6x6x6(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fox6x6x6(a)gmail.com
--- Comment #30 from fox6x6x6(a)gmail.com 2013-04-06 16:50:59 CDT ---
I've edited the start_dosbox function in programs/winevdm/winevdm.c by adding
the line
if (fork())
before the
ret = spawnvp( _P_WAIT, args[0], args );
line and now it works.
It also works if you let the child do the work with
if (!fork())
Very strange indeed, I don't understand why this fixes the bug, maybe one of
you does?
--
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.