http://bugs.winehq.org/show_bug.cgi?id=14501
Summary: docs incorrectly claim that unc paths work
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: documentation
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: codeslinger(a)compsalot.com
The docs for unc path are wrong they do not reflect reality.
According to the docs
http://www.winehq.org/site/docs/wineusr-guide/misc-things-to-configure#AEN4…
and also according to this rather odious comment
http://www.winehq.org/pipermail/wine-users/2007-August/027715.html
unc paths, should work, all you do is create a symlink and you are done.
Well, I am under intense deadline pressure and I just spent two days of effort
trying to get a client/server app to run that requires unc paths. And finally
after a lot of study and banging of head against brick wall, finally I find
this bug #425 which makes it pretty darn clear that not only does unc path not
work, but it never actually has worked!!!!
http://bugs.winehq.org/show_bug.cgi?id=425
So I ask that you kindly please fix the docs so that others are not subjected
to the same levels of tribulations which I have just needlessly gone through.
That bug has been open since 2002, I see no indication that it is going to get
fixed any time soon.
I have the highest respect and admiration for the winehq project and the people
who created it, but this sort of thing is a major black mark against wine. I
will be very reluctant to attempt to use wine in the future.
--
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=14574
Summary: iphlpapi: GetAdaptersAddresses required for some utility
classes in system.net namespace (.NET)
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
encountered this insufficiency several times while investigating bugs in
several .NET/managed apps:
--- snip ---
..
First chance exception generated: (0x125ef4c)
<System.EntryPointNotFoundException>
ClassName=<null>
AssemblyName=<null>
MessageArg=<null>
ResourceId=0
_className=<null>
_exceptionMethod=<null>
_exceptionMethodString=<null>
_message=(0x125f094) "Unable to find an entry point named
'GetAdaptersAddresses' in DLL 'iphlpapi.dll'."
_data=<null>
_innerException=<null>
_helpURL=<null>
_stackTrace=(0x125f16c) <System.SByte[]>
_stackTraceString=<null>
_remoteStackTraceString=<null>
_remoteStackIndex=0
_dynamicMethods=<null>
_HResult=-2146233053
_source=<null>
_xptrs=0
_xcode=-532459699
Exception is called:FIRST_CHANCE
[0110] mov esi,eax
(cordbg) w
Thread 0x4a Current State:Background,GCUnsafe spot
0)* System.Net.NclUtilities::GetLocalAddresses +0272[native] +0029[IL]
1) System.Net.NclUtilities::get_LocalAddresses +0219[native] +0081[IL]
2) System.Net.ServicePoint::IsAddressListLoopback +0067[native] +0002[IL]
3) System.Net.ServicePoint::SetAddressList +0082[native] +0024[IL]
4) System.Net.ServicePoint::GetIPAddressInfoList +0503[native] +0228[IL]
5) System.Net.ServicePoint::ConnectSocketInternal +0150[native] +0022[IL]
6) System.Net.ServicePoint::ConnectSocket +0055[native] +0000[IL]
7) System.Net.ServicePoint::GetConnection +0257[native] +0067[IL]
8) System.Net.PooledStream::Activate +0142[native] +0024[IL]
9) System.Net.Connection::CompleteStartConnection +0360[native] +0111[IL]
..
--- snip ---
The missing iphlpapi export seems not critical for functioning of apps (first
chance exception is caught) but it's better to fill holes in wine's API.
MSDN info here: http://msdn.microsoft.com/en-us/library/aa365915.aspx
Set component as -unknown- because iphlpapi component doesn't exist in
bugzilla.
(NOTE for myself: encountered this in VS.NET 2005 startup phase, under managed
debugger, 'ca e')
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=9665
Summary: Mask of eternity crashes at startup with wine version
0.9.36 and newer
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deadlock(a)start.no
Kings Quest 8 - Mask of Eternity crashes on startup with an exception error.
The specific error has been attached. Version 0.9.36 didn't have this problem,
and after doing a lot of debugging and regression I located that the problem is
located in a change between version 0.9.36 and 0.9.37. The specific code is
shown below.
wine version 0.9.36, file wine/dlls/ddraw/direct3d.c:
324 d1 = dref;
325 d2 = dref;
326 hr = Callback( (LPIID) &IID_IDirect3DRefDevice,
reference_description, device_name, &d1, &d2, Context);
wine version 0.9.37(and up to version 0.9.45 at least):
327 d1 = dref;
328 d2 = dref;
329 /* The rgb device has the pow2 flag set in the hel caps, but not in
the hal caps */
330 d1.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2 |
D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
331 d1.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2 |
D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
332 hr = Callback( (LPIID) &IID_IDirect3DRGBDevice,
reference_description, device_name, &d1, &d2, Context);
I tried commenting out line 330 and 331 in version 0.9.44 and the game ran
without crashing at startup, but there has to be a better way to solve this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10147
Summary: Word Viewer 2003 - Tab behavior differs from Windows
Product: Wine
Version: 0.9.47.
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?FamilyId
=95E24C87-8732-48D5-8689-AB826E7B8FDF&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: conformance, download
Severity: trivial
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Tab behavior differs from Windows while using Word Viewer 2003's installer.
While this is a trivial matter, I was attempting to write a script using
AutoHotKey to automate testing of the program in Wine/Windows. Since screen
resolution/windows placement can differ very easily, using the keyboard is the
easiest way to make sure the script does what I want. The main difference is
that under Windows, one tab takes me from the license agreement's text to the
checkbox to accept the agreement. Under Wine, it takes me to the cancel button.
Using tab twice under Wine brings me to the checkbox.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10365
Summary: Nero 7 essentials fails to install
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.nero.com/enu/index.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
Created an attachment (id=9036)
--> (http://bugs.winehq.org/attachment.cgi?id=9036)
1st dialog
When trying to install nero 7 essentials a dialog box pops up saying it could
not complete an msi query, then it is followed up by an msiexec error dialog.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11747
Summary: CorelDRAW Graphics Suite X4 Trial installer crashes
Product: Wine
Version: 0.9.56.
Platform: PC
URL: http://www.corel.com/servlet/Satellite?pagename=CorelCom
/ProcessLayout&lc=en&ppg=CorelCorp/Trials/DownloadContai
ner
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: truiken(a)gmail.com
$ wine CorelDRAWGraphicsSuiteX4Installer_EN.exe
wine: Unhandled page fault on read access to 0x00000000 at address 0x7ddf3f47
(thread 0016), starting debugger...
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x7ddf3f47).
Backtrace:
=>1 0x7ddf3f47 queryresult_get_length+0x57(iface=0x130e38, listLength=0x34f58c)
[/home/truiken/wine/dlls/msxml3/queryresult.c:277] in msxml3 (0x0034f554)
2 0x0035401b in setupxml (+0x401b) (0x005f4650)
3 0x00430049 in setup (+0x30049) (0x002f002f)
4 0x00000000 (0x00000000)
0x7ddf3f47 queryresult_get_length+0x57
[/home/truiken/wine/dlls/msxml3/queryresult.c:277] in msxml3: movl
0x0(%eax),%edx
277 *listLength = This->result->nodesetval->nodeNr;
--
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=10287
Summary: unable to install nero 8
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: major
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: infyquest(a)gmail.com
Created an attachment (id=8939)
--> (http://bugs.winehq.org/attachment.cgi?id=8939)
nreo console output
I am unable to install nero 8.
It comes up the screen Preparing Installation, then suddenly it crashes.
I am attaching the console output
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9412
Summary: FL Studio 7 cannot play most of its WAV files
Product: Wine
Version: 0.9.43.
Platform: PC-x86-64
URL: http://imageworld.tucows.com/files7/flstudio7_RC6b.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mail(a)science.su
Created an attachment (id=7732)
--> (http://bugs.winehq.org/attachment.cgi?id=7732)
WINEDEBUG=+loaddll,warn+all wine FL.exe
FL Studio 7 is professional software for creating music. It works *almost*
perfectly but because of this bug it isn't actually usable: most of its WAV
files do not work and this makes the program useless!
As I have said FL Studio make use of WAV files. Some WAV files are in standard
PCM uncompressed audio format and they plays fine. Others use non-standard WAV
format and fails to play at all. Because of that a lot of effects and sounds
cannot be used.
If I run the program with WINEDEBUG=+loaddll,warn+all I get the following
output when I try to play a "non-standard" WAV file: (see attachment). When I
play standard PCM-encoded WAV file there is no such output. I think this output
gives some useful clues but unfortunately I have almost no knowledge about
Widnows sound API so I cannot fix this myself.
Feel free to ask any additional questions. The program has a demo and it is
almost fully functional (see the URL field).
How to reproduce (instruction by Travis Forghani, with minor changes and
comments for better readability):
1) Click on "Packs" to expand it. Then click on "Basses" to expand it. Next,
click on the "BASS_EfEm_C2"; when you click on the BASS_EfEm_C2 effect, the
sound that is supposed to be created is created. This works because
"BASS_EfEm_C2" is standard PCM encoded WAV file.
2) Click on "RealDrumkits" to expand it. Next, click on "RD_Crash". When you
click on the "RD_Crash" effect, the sound that is supposed to be created is not
created and there is no output via the speakers. This doesn't work because
"RD_Crash" is non-standard WAV. But on clean Windows this works out-of-the-box.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15101
Summary: FL Studio Does not open.
Product: Wine
Version: unspecified
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?bShowAll=true&
bIsQueue=false&bIsRejected=false&sClass=version&sTitle=&
sReturnTo=&iId=11202
OS/Version: Windows Vista
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: afaninthehouse(a)gmail.com
I installed this on Windows Vista and once I opened the program, it gets rid of
the system menubar and taskbar once opened. It doesn't even function or let me
use it. It was in demo and was not activated.
--
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=9416
Summary: FL Studio 7 ignores virtual desktop setting
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://imageworld.tucows.com/files7/flstudio7_RC6b.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
While attempting to test bug 9412, I used winecfg to set a virtual desktop, so
I could read the bug description while testing (full screen app). Even with a
virtual desktop set, the app still launches full screen. Managed/unmanaged
windows makes no difference as well.
To reproduce:
Install FL Studio 7.
run winecfg, enable virtual desktop
launch FL Studio 7.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.