http://bugs.winehq.org/show_bug.cgi?id=34800
Bug #: 34800
Summary: Notepad++: crashes launching the plugin manager
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: biohazard.zac(a)gmail.com
Classification: Unclassified
Created attachment 46415
--> http://bugs.winehq.org/attachment.cgi?id=46415
Program error details given by wine
Crashes launching the plugin manager, the rest of the functionality of the
application seems to be working fine.
--
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=27271
Summary: ActiveX control of cebchina go out of iexplore
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=34879)
--> (http://bugs.winehq.org/attachment.cgi?id=34879)
HTML: powerpassword.html
submit a testcase html 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=17297
Summary: widl must accept arguments to functions (midl doesn't
have to)
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
example:
void get_data([out] char*);
is valid syntax. widl barfs with the obtuse "syntax error" (gotta love
flex/bison...) and must have this:
void get_data([out] char* foo);
i found the examples "com in plain c" and the IDL file in example 2 didn't have
the variable names.
--
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=16011
Summary: widl: Complex structs should have their pointer layout
section after the structure's description
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: huw(a)codeweavers.com
CC: robertshearman(a)gmail.com, dsh(a)linux.ucla.edu
See IDataObject_QueryGetData_Proxy. The pointer layout section's offset in
FORMATETC (currently at 3330) is -ve. These are treated as WORD offsets in,
for example, NdrComplexStructBufferSize().
--
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=14787
Summary: widl fails to honour typedef ptr attributes
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: huw(a)codeweavers.com
CC: robertshearman(a)gmail.com, dsh(a)linux.ucla.edu
See dlls/rpcrt4/epm_c.c . For example the 'object' parameter of ept_map().
We have (in include/wine/dcetypes.idl)
typedef [ptr] GUID *uuid_p_t;
and (in include/wine/epm.idl)
ept_map(..., uuid_p_t object, ...)
So 'object' should be a full ptr, which is what midl generates. On the other
hand widl generates a reference ptr.
It looks like this should be fixed up in parser.y:set_type() somewhere.
--
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=14746
Summary: Natural Selection crashes with
err:ntdll:RtlpWaitForCriticalSection section
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: clancc(a)shadowkitsune.net
CC: clancc(a)shadowkitsune.net
Created an attachment (id=15244)
--> (http://bugs.winehq.org/attachment.cgi?id=15244)
Crash Log (partial log, only copied the part that I think is related to the
crash) from console.
Natural Selection freezes for abit before crashing to desktop with a
"err:ntdll:RtlpWaitForCriticalSection section" error. See attachment.
--
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=29857
Bug #: 29857
Summary: GetAsyncKeyState says Escape key is permanently down
once it has been pressed
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: silas-wine(a)flatline.org.uk
Classification: Unclassified
I am debugging a Windows application that has a long-running processing thread
which periodically checks for interrupts using
GetAsyncKeyState(VK_ESCAPE) < 0
This worked fine on WINE 1.2.2, but on 1.3.28 the app kept behaving as if it
were interrupted immediately when it had not been. Further investigation
showed that, after Escape has been pressed just once, any future calls to
GetAsyncKeyState (no matter how many events have been processed in the
meantime) always return ffff8001. In other words, if you press Escape just
once while running your app, any future calls that app makes to
GetAsyncKeyState(VK_ESCAPE) will behave as though the Escape key is still down.
Again this does not happen with WINE 1.2.2, only with 1.3.28.
I was able to work around this bug by adding a call to GetKeyState(VK_ESCAPE)
just before the test for GetAsyncKeyState(VK_ESCAPE) < 0. I ignored the return
value of GetKeyState
(http://msdn.microsoft.com/en-us/library/windows/desktop/ms646301%28v=vs.85%…
says it should be called in response to a message; it doesn't say what happens
if it's called when there has been no message, so I assume we can't rely on it
to return meaningful values if called at just any time) however somehow the
presence of the GetKeyState call caused WINE 1.3.28's GetAsyncKeyState to
behave correctly.
--
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=29150
Bug #: 29150
Summary: Windows FirstClass Client 11.0 (Buid 017) no login
screen, settings problems and freeze
Product: Wine
Version: 1.3.33
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jorgenqv(a)yahoo.com
Classification: Unclassified
Created attachment 37598
--> http://bugs.winehq.org/attachment.cgi?id=37598
Log running FCC 11.017
This is my fist WineHQ Bugzilla report so I hope I got everything right :-)
Trying to get latest FirstClass client (FCC) to work in Wine 1.3.33
(ubuntu-wine-ppa-oneiric) with the following problems in Ubuntu 11.10 with
Unity. The same behavior in Ubuntu 10.04 LTS with Wine 1.3.31
(ubuntu-wine-ppa-lucid).
1) Installation works fine but after it's done the FCC spash screen freezes
when FCC starts. Normaly the login screen should pop up. You then have to
right-click on the upper panel FCC icon (splash then disapear) and choose
Connect. If you only click on the spash screen it disapears.
2) FirstClass can't find the settings file "home.fc" - this works fine in older
versions of FCC. A file popup appears called "Open Settings File" to choose the
settings file, but there isn't one. If you right click on the panel icon and
look at your FCC Preferences under "General" the "Download folder" is set to
"C:\users\yourlogin\My Documents\FirstClass\Download". Even if you set this
right the settings file cannot be found next time you run FCC and you have to
choose your settings file every time you want to login. You cannot connect if
you don't have a old settings file - I think normaly the file is created by FCC
if there isn't one. So you can't login on a fresh installed comuputer without a
settings file. Even if you put the file home.fc it doesn't show so you have to
write "home.fc" and hit Open in the "Open Settings File" window.
3) If you got your settings file and the login screen finaly shows - and you
write your correct login and password and hit the enter key - FCC freezes. The
workaround is to click on the green login arrow button next to the password
field instead of hitting enter - not obvious for most users.
For testing/reproduceing purposes:
FirstClass Client 11.017
Download:
http://www3.firstclass.com/ClientDownloads/FC11ClientDownloadFiles/FC11017U…
Missing file home.fc to be save i home directory FirstClass/Settings/
Download: http://www.mediafire.com/?82x95kcqp3celd4
Also see attachment ()
Guest testing login/pass: gast/gast server fc.folkbildning.net
Any kind of hints and workarounds are greatly appreciated.
Thanks!
/Jorgen
--
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=25357
Summary: CodeWright crashes
Product: Wine
Version: 1.2.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kurtbutfrank(a)gmail.com
CC: aric(a)codeweavers.com, xerox_xerox2000(a)yahoo.co.uk,
scott(a)open-vote.org, unreal(a)home.nl,
skunktrader(a)gmail.com, istvan.bisz(a)t-online.hu
+++ This bug was initially created as a clone of Bug #14012 +++
I have CodeWright 7.5.04.7519 and have successfully installed in on a 32-bit
version of Ubuntu 10.10 on a a stand-alone machine.
I also have a 64-bit version of Ubuntu 10.10 running as a virtual machine using
VirtualBox under a Win7-64 host. On that machine CodeWright halts immediately
after displaying the splash screen. It appears to me that the symptoms are the
same as that of bug 14012.
On both machines Wine was installed using the Synaptic Package Manager under
GNOME. My understanding is that this would have installed a 32-bit version of
Wine in both cases.
I can gather trace/debug info but will need specific directions.
--
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=27410
Summary: Starcraft II Patcher exits immediately without a crash
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.strashun(a)gmail.com
Created an attachment (id=35053)
--> (http://bugs.winehq.org/attachment.cgi?id=35053)
console output
After launching Starcraft II.exe , patcher inetrface shows for 1-2 seconds and
then program closes. No crash in log though.
All console output 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=32182
Bug #: 32182
Summary: GetResolvedNeutrals always returns input
Product: Wine
Version: 1.5.17
Platform: x86-64
URL: http://source.winehq.org/git/wine.git/blob/1262f07609e
6722a841f511445f145d941848800:/dlls/usp10/bidi.c#l562
OS/Version: Linux
Status: NEW
Keywords: source
Severity: normal
Priority: P2
Component: usp10
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
CC: aric(a)codeweavers.com, m.b.lankhorst(a)gmail.com
Classification: Unclassified
coverity (CID 731561) spotted:
http://source.winehq.org/git/wine.git/blob/1262f07609e6722a841f511445f145d9…
action is masked to 0x0f and compared to (1<<8), that won't ever happen.
The code comes from:
commit 032543e54dec387ae0089fe9e5dd0cc0fbc2d253
Author: Maarten Lankhorst <m.b.lankhorst(a)gmail.com>
Date: Sat Sep 15 15:16:38 2007 +0200
gdi: Implement neutrals resolving in BiDi.
--
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=32396
Bug #: 32396
Summary: iexplore http://imgur.com doesn't open
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: jscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
wine iexplore http://imgur.com
Doesn't open & iexplore hangs. Workaroung native jscript
--
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=34205
Bug #: 34205
Summary: Regedit doesn't import .reg files formatted like the
example in the FAQ
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jluth(a)mail.com
Classification: Unclassified
Much of the documentation on the web, including the Wine FAQ, reports the
syntax of a .reg file as:
[HKEY_CURRENT_USER\Software\Wine\DllOverrides] "winemenubuilder.exe"=""
example from http://wiki.winehq.org/FAQ section 5.4
Note specifically that this is all on one line. This does not work in Wine
1.6. It DOES work if the "key" is on one line, and the name/value pair is on
another line.
Other examples show multiple name/value pairs behind the key - still all on one
line.
[HKEY_CLASSES_ROOT\.pdf] @="PDFfile" "Content Type"="application/pdf"
[HKEY_CLASSES_ROOT\PDFfile\Shell\Open\command] @="winebrowser \"%1\""
example from http://wiki.winehq.org/FAQ section 7.4
Currently, each name/value pair needs to be on a separate line.
--
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=23005
Summary: errors running winwulff using basic winebottler
install
Product: Wine
Version: 1.1.44
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: annacegu(a)yahoo.com.au
Installed http://jcrystal.com/products/winwulff/WINWULFF_Setup.exe using
WineBottler OK.
Attempting to run the program using basic wine install gives the following
error as well as attached errors (winebottler-winwulff-error.txt)
Run-time error '10'
This array is fixed or temporarily locked
Needed to install vb6run & dcom98 via winetricks to get the program running
--
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=29140
Bug #: 29140
Summary: ScriptTextOut passes wrong widths to ExtTextOutW
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: usp10
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: disposable593-wine(a)yahoo.com
Classification: Unclassified
in http://source.winehq.org/source/dlls/usp10/usp10.c#L2673
ScriptTextOut always passes NULL to ExtTextOutW instead of the proper width
arrays specified in piJustify or piAdvance.
--
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=16034
Summary: Bombzone won't start
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
Created an attachment (id=17259)
--> (http://bugs.winehq.org/attachment.cgi?id=17259)
Crash log; wine 1.1.8, bombzone 1.0
Bombzone, a free bomberman clone (www.bombzone.de), won't run. It changes
screen resolution and crashes...
--
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=13489
Summary: Frets on fire doesn't start(python issue) [dogfood]
Product: Wine
Version: 1.0-rc2
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fenixk19(a)mail.ru
Coudn't start Frets on fire for windows 1.2.512. Fails with an error
message(sorry, can't post).
--
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=27476
Summary: Spotify Crashes On Log In - Program Error Box
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mistrywork(a)gmail.com
Hello,
Am using Spotify via Wine on my work machine & that is running Fedora 8.
The latest version of Spotify (0.5) is crashing as soon as I log in.
An error box appears saying:
Program Error
The program spotify.exe has encountered a serious problem and needs to close.
We are sorry for the inconvenience.
This can be caused by a problem in the program or a deficiency in Wine... etc,
etc'
I've never had any trouble before but since the latest version of Wine, this
has kept popping up. Have emailed the Spotify folks the IT department here
mentioned that it could possibly be my account being corrupt for Linux and that
could be at Spotify's end. Am waiting to hear back from them. In the
meantime, the terminal output I get is below. Any pointers would be
appreciated. Or if you need any more information, please do not hesitate to
get in touch.
Thanks in advance.
Terminal Output
-----------------------------------------------------
ixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:advapi:RegisterEventSourceW ((null),L"Spotify"): stub
fixme:winsock:WSALookupServiceBeginW (0x138dea4c 0x00000ff1 0x1081a6f8) Stub!
fixme:dwmapi:DwmIsCompositionEnabled 0x13bfc20
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:hnetcfg:fw_app_get_Enabled 0x16f230, 0x13bf3f4
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x16f230,
L"Z:\\user_data\\ARCHIVE\\misc\\spotify\\spotify.exe"
fixme:hnetcfg:fw_app_put_Name 0x16f230, L"Spotify"
fixme:hnetcfg:fw_apps_Add 0x16f080, 0x16f230
fixme:win:RegisterShellHookWindow (0x60060): stub
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:winhttp:WinHttpGetIEProxyConfigForCurrentUser returning no proxy used
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:shell:knownfolder_GetFolderDefinition 0x13bf274
fixme:shell:knownfolder_GetFolderDefinition 0x13bf274
err:ole:CoGetClassObject class {6bf52a52-394a-11d3-b153-00c04f79faa6} not
registered
err:ole:CoGetClassObject class {6bf52a52-394a-11d3-b153-00c04f79faa6} not
registered
err:ole:create_server class {6bf52a52-394a-11d3-b153-00c04f79faa6} not
registered
fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported
err:ole:CoGetClassObject no class object {6bf52a52-394a-11d3-b153-00c04f79faa6}
could be created for context 0x17
fixme:advapi:GetCurrentHwProfileW (0x13bf598)
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_END_BROWSER_SESSION:
STUB
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x60060,
filter=0x108a2010,flags=0x00000000) returns a fake device notification handle!
wine: Unhandled page fault on read access to 0x00000070 at address 0x7bc332b7
(thread 000d), starting debugger...
--
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=12118
Summary: F1 button in WinAMP Milkdrop visualization shows garbage
instead of the help info
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://download.nullsoft.com/winamp/client/winamp532_ful
l.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
CC: stefandoesinger(a)gmx.at
Created an attachment (id=11502)
--> (http://bugs.winehq.org/attachment.cgi?id=11502)
Milkdrop Help
F1 button in WinAMP Milkdrop visualization shows garbage instead of help.
--
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=25505
Summary: Windows Live Messenger 14.0.8089.0726 : Crashed when
installer is loading
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fendersens(a)gmail.com
Created an attachment (id=32475)
--> (http://bugs.winehq.org/attachment.cgi?id=32475)
The backrace generated when running wine using console
I have an offline installer package for windows live messenger of the version
14.0.8089.0726. Running by double-click it and by console yields the same
result: "Wine encountered a serious problem and needs to close....."
--
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=33272
Bug #: 33272
Summary: Pinging 0.0.0.0 returns success, when it should return
failure.
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: metalgrid(a)mail.bg
Classification: Unclassified
Greetings. Slackware64-current with wine-1.5.26, wineserver and wine-preloader
are with capabilities of opening raw sockets (setcap cap_net_raw+ep
/usr/bin/wineserver; setcap cap_net_raw+ep /usr/bin/wine-preloader). Pinging a
random IP address or website with a ping tool (Like the free Colasoft Ping
Tool) works as it should, but pinging 0.0.0.0 returns 0ms ping responses, while
it should return timeouts. If you need any logfiles or traces, tell me so I can
dump them and provide them. 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=24798
Summary: OLE error 800200009 on EasyWorship 2009 eval version
startup
Product: Wine
Version: 1.3.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puk007(a)gmail.com
whenever I start EasyWorship 2009 eval version I get "OLE error 800200009".
Application is downloadable on:
http://www.easyworship.com/downloads/ew_builds/current/EasyWorship_web.zip
console output is attached in 20101018_console.txt
what I've noticed is that I get this error message 3 times and there are 3 log
messages in console:
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented cmdid 21
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented cmdid 21
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented cmdid 21
any idea how to fix?
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=33020
Bug #: 33020
Summary: GetLongPathName does not properly resolve the relative
string '.'
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
Calling GetLongPathName on a string containing the self-referencing string '.'
returns a bogus path, for example:
GetLongPathName('shortpath\.')
returns
shortpath\shortpath
instead of
shortpath\.
This poses a problem for Silverlight, which uses this feature (for some odd
reason) to find the path for debugging DLLs.
--
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=26652
Summary: Graphical glitches in Big Fish Games client
Product: Wine
Version: 1.3.16
Platform: x86-64
URL: http://www.bigfishgames.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=33932)
--> (http://bugs.winehq.org/attachment.cgi?id=33932)
Screenshot
There are some drawing issues in the BFG client. If you look at the attached
screenshot you should be able to see that not all the images are drawn
correctly (I've circled a couple).
"winetricks ie6" needed to get this far.
Native gdiplus does not help.
--
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=27539
Summary: EasyHook ProcessMonitor.exe example crashes shortly
after launch
Product: Wine
Version: 1.2.3
Platform: x86-64
URL: http://easyhook.codeplex.com/releases/view/24401#Downl
oadId=61309
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: asb(a)asbradbury.org
Created an attachment (id=35204)
--> (http://bugs.winehq.org/attachment.cgi?id=35204)
log containing backtrace (wine 1.3.22)
To reproduce:
1. Set up a fresh WINEPREFIX and do `winetricks -q dotnet20` (program does not
work with mono).
2. Unzip "EasyHook 2.6 Binaries.zip"
3. Run ProcessMonitor.exe under wine, wait for 5 seconds or so and it will
crash
I have attached the backtrace obtained from running this program with wine
1.3.22. Tested with 1.2.3, 1.3.22 and wine-1.3.22-203-gac90c1b which all
exhibit the same crash. I am using a self-built wine on Ubuntu 11.04 x86_64.
$ sha1sum ../EasyHook\ 2.6\ Binaries.zip
b3ea6b68c67ebb22df0853e12c6f8937fe2c12b5 ../EasyHook 2.6 Binaries.zip
--
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.