http://bugs.winehq.org/show_bug.cgi?id=6770
Summary: Error trying to install packardbell mp3 drivers
Product: Wine
Version: 0.9.25.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hithwen(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6769
Summary: Error trying to install packardbell mp3 drivers
Product: Wine
Version: 0.9.25.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hithwen(a)gmail.com
While triying to install packardbell drivers:
hithwen@xubuntu:/media/cdrom0$ wine AutoCD.exe
fixme:shell:SHAutoComplete SHAutoComplete stub
err:menubuilder:extract_icon32 LoadLibraryExW (L"c:\\Archivos de
programa\\Packard Bell Magic Movie\\Magic.ico") failed, error 193
err:menubuilder:extract_icon32 LoadLibraryExW (L"c:\\Archivos de
programa\\Packard Bell Magic Movie\\Magic.ico") failed, error 193
hithwen@xubuntu:/media/cdrom0$ err:storage:Storage32Impl_SmallBlocksToBigBlocks
conversion failed: resRead = 0x8003001e, resWrite = 0x00000000
err:storage:Storage32Impl_SmallBlocksToBigBlocks conversion failed: resRead =
0x8003001e, resWrite = 0x00000000
ALSA lib seq_hw.c:457:(snd_seq_hw_open) open /dev/snd/seq failed: No existe el
fichero ó directorio
err:ole:get_unmarshaler_from_stream Failed to read common OBJREF header, 0x00000001
fixme:ole:NdrClearOutParameters (0x7e0e0010,0x603a410a,0x7e0e0144): stub
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6768
Summary: Error trying to install packardbell mp3 drivers
Product: Wine
Version: 0.9.25.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hithwen(a)gmail.com
While triying to install packardbell drivers:
hithwen@xubuntu:/media/cdrom0$ wine AutoCD.exe
fixme:shell:SHAutoComplete SHAutoComplete stub
err:menubuilder:extract_icon32 LoadLibraryExW (L"c:\\Archivos de
programa\\Packard Bell Magic Movie\\Magic.ico") failed, error 193
err:menubuilder:extract_icon32 LoadLibraryExW (L"c:\\Archivos de
programa\\Packard Bell Magic Movie\\Magic.ico") failed, error 193
hithwen@xubuntu:/media/cdrom0$ err:storage:Storage32Impl_SmallBlocksToBigBlocks
conversion failed: resRead = 0x8003001e, resWrite = 0x00000000
err:storage:Storage32Impl_SmallBlocksToBigBlocks conversion failed: resRead =
0x8003001e, resWrite = 0x00000000
ALSA lib seq_hw.c:457:(snd_seq_hw_open) open /dev/snd/seq failed: No existe el
fichero ó directorio
err:ole:get_unmarshaler_from_stream Failed to read common OBJREF header, 0x00000001
fixme:ole:NdrClearOutParameters (0x7e0e0010,0x603a410a,0x7e0e0144): stub
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6706
------- Additional Comments From batkoljo(a)mailcity.com 2006-25-11 01:22 -------
Modification of freetype.c, function update_font_info(),
where I replace
LCID lcid = GetUserDefaultLCID();
with
LCID lcid = GetSystemDefaultLCID();
fixes the problem for me.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6767
Summary: failure enumerating interfaces on NetBSD
Product: Wine
Version: 0.9.25.
Platform: PC
OS/Version: NetBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jmmikkel(a)mit.edu
I'm running wine on NetBSD 4-BETA. I am getting the following error:
err:winsock:WSAIoctl Unable to get interface table!
I traced this down to dlls/iphlpapi/ifenum.c. The enumIPAddresses() function
uses the SIOCGIFCONF ioctl to get a list of interfaces on the system. It has the
comment "there is no way to know the interface count beforehand, so we need to
loop ... until returned < max". Unfortunately the algorithm is failing because
the ioctl is returning the _required_ length in ifc_len, even when that is
larger than the provided buffer.
So on NetBSD there actually is a way to know how much to allocate, but I figure
there might have to be a special configure test written just for this. A simpler
solution that fixed my problem and I think will work in general:
--- ifenum.c~ 2006-11-10 11:32:16.000000000 -0500
+++ ifenum.c 2006-11-24 21:40:36.000000000 -0500
@@ -690,7 +690,7 @@
ifc->ifc_buf = HeapAlloc(GetProcessHeap(), 0, ifc->ifc_len);
ioctlRet = ioctl(fd, SIOCGIFCONF, ifc);
} while (ioctlRet == 0 &&
- ifc->ifc_len == (sizeof(struct ifreq) * guessedNumAddresses));
+ ifc->ifc_len >= (sizeof(struct ifreq) * guessedNumAddresses));
if (ioctlRet == 0) {
ifPtr = ifc->ifc_buf;
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6765
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.mba.com/mba/Taket
| |heGMAT/ToolsToHelpYouPrepare
| |/GMATPrepProducts/FreeGMATPr
| |epTestPreparationSoftwarein2
| |006.htm
Keywords| |download, NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6766
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-24-11 20:37 -------
Sorry, but there is no prove that it _is_ Wine's problem. Firs you have to look
at your kernel, drivers & co. Especially as gentoo user the burden on your
shoulders to prove that something is wrong with Wine and not your system.
As mentioned before, if you not running as root, there is no way for Wine to
crash your system. To prove it is Wine, you will have to produce some crash
backtraces, showing where Wine crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6766
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC-x86-64
Version|unspecified |CVS
------- Additional Comments From the3dfxdude(a)gmail.com 2006-24-11 19:56 -------
Likely hardware problem. Are you running as root? Wine cannot simply bring down
an entire system. The only things that could are kernel, drivers, hardware, etc.
"I wouldn't blame Wine, but as it stands right now, there is no concrete proof for
or against Wine."
But you opened a wine bug report. This is really hard for us to do anything with
if you have no information.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6766
ploujj(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From ploujj(a)gmail.com 2006-24-11 19:38 -------
I'm still using the 8776 drivers. I haven't done any hardware upgrades recently,
nor have I tested penumbra before any hardware upgrades which I might have done
before.
Also, I'm still using the 2.6.17 kernel (with Gentoo patches).
My system has never experienced this kind of crash even though I play a large
variety of 3D games.
If there was something else that I could run to reproduce a similar behavior, I
wouldn't blame Wine, but as it stands right now, there is no concrete proof for
or against Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.