http://bugs.winehq.org/show_bug.cgi?id=25336
Summary: nimbuzz disconnects user after a few seconds
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: jose1711(a)gmail.com
nimbuzz pc client (http://www.nimbuzz.com/en/pc/) is unusable at the moment
since after a short while user is disconnected.
the following message is written in stdout when the disconnection occurs:
397 2010-11-28T14:57:13 [WARNING]: XMPPConnection: isNetwork UP returned FALSE
398 2010-11-28T14:57:13 [WARNING]: XMPPConnection::timerEvent !NetworkUp ||
!isMyAddressUp
399 2010-11-28T14:57:13 [INFO]: UI - SignInStackControllerBase: No network
available
400 2010-11-28T14:57:13 [INFO]: UI - SignInStackControllerBase - State change :
4 to 8 Prepare to suspend called
401 2010-11-28T14:57:13 [INFO]: **** Signing Out
user=xxxx(a)nimbuzz.com/nimbuzzdesktop6533
402 2010-11-28T14:57:13 [INFO]: LoginSequenceController::logout() stoping login
sequence
403 2010-11-28T14:57:13 [INFO]: CallManager: Shutdown()
404 2010-11-28T14:57:13 [INFO]: CallManager: successfull shutdown
405 2010-11-28T14:57:13 [INFO]: nimbuzz_out::NimbuzzOutManager::shutdown
406 2010-11-28T14:57:13 [INFO]: Authenticator: Sign out ending stream
407 2010-11-28T14:57:13 [INFO]: SslSocket::disconnectFromHost.
prerequisity for testing is a nimbuzz account: free and can be created directly
from the application
--
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=24144
Summary: Sample OBJ file is not rendered in OpenGL OBJ Viewer
Demo
Product: Wine
Version: 1.3.1
Platform: x86
URL: http://www.dhpoware.com/downloads/GLObjViewer.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
The sample OBJ file supplied in the demo does not render brick tecture on the
cube.
Graphics card is a Nvidia GeForce 6600GT with the 195.36.24 driver.
--
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=5310
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #18 from Alexandre Julliard <julliard(a)winehq.org> 2012-07-03 14:16:03 CDT ---
Closing bugs fixed in 1.5.8.
--
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=31066
Bug #: 31066
Summary: Avoid printing pServerPrincName with
COLE_DEFAULT_PRINCIPAL ((OLECHAR *)-1) in
IClientSecurity::SetBlanket stub FIXME
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: wmi&wbemprox
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
not really a problem but a bit annoying in trace logs and debugger.
In certain situations IClientSecurity::SetBlanket() causes in internal
exception due to a non-string parameter in FIXME.
Handled gracefully but still noise.
--- snip ---
...
0032:trace:seh:raise_exception code=c0000005 flags=0 addr=0xf75cff96
ip=f75cff96 tid=0032
0032:trace:seh:raise_exception info[0]=00000000
0032:trace:seh:raise_exception info[1]=ffffffff
0032:trace:seh:raise_exception eax=ffffffff ebx=f76fa984 ecx=9930105d
edx=f75cff1a esi=ffffffff edi=00bc0d38
0032:trace:seh:raise_exception ebp=006dd63c esp=006dd604 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010246
0032:trace:seh:call_stack_handlers calling handler at 0x7bc92059 code=c0000005
flags=0
0032:trace:seh:__regs_RtlUnwind code=c0000005 flags=2
0032:trace:seh:__regs_RtlUnwind calling handler at 0x7bc770ff code=c0000005
flags=2
0032:trace:seh:__regs_RtlUnwind handler at 0x7bc770ff returned 1
0032:fixme:wbemprox:client_security_SetBlanket 0xf6f36f50, 0xbc0d38,
4294967295, 0, (invalid), 2, 3, (nil), 0x00000020
--- snip ---
The .NET code passes "COLE_DEFAULT_PRINCIPAL" as pServerPrincName which is
defined as ((OLECHAR *)-1).
Code:
http://source.winehq.org/git/wine.git/blob/0ceee481fe16ac6f731f4cb13717d5b4…
--- snip ---
98 static HRESULT WINAPI client_security_SetBlanket(
99 IClientSecurity *iface,
100 IUnknown *pProxy,
101 DWORD AuthnSvc,
102 DWORD AuthzSvc,
103 OLECHAR *pServerPrincName,
104 DWORD AuthnLevel,
105 DWORD ImpLevel,
106 void *pAuthInfo,
107 DWORD Capabilities )
108 {
109 FIXME("%p, %p, %u, %u, %s, %u, %u, %p, 0x%08x\n", iface, pProxy,
AuthnSvc, AuthzSvc,
110 debugstr_w(pServerPrincName), AuthnLevel, ImpLevel, pAuthInfo,
Capabilities);
111 return WBEM_NO_ERROR;
112 }
--- snip ---
Would be nice to avoid calling debugstr_w(-1) in that situation.
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=29932
Bug #: 29932
Summary: Testdrive Sound works now, but mouse pointer does not
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paulthetall(a)gmail.com
Classification: Unclassified
Created attachment 38955
--> http://bugs.winehq.org/attachment.cgi?id=38955
Testdrive dinput, cursor debug
Testdrive sound works now. However, mousepointer doesnt move anymore in the
menu or in the game. In 1.4 RC3 it worked just fine but then no music/sound. I
made a testdebugrun output. See attachment. Hope you can fix it before
laucnhing 1.4
--
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=25252
Summary: Need For Speed Hot Pursuit (2010) crashs out
(Unhandled page fault)
Product: Wine
Version: 1.1.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sexy_b14(a)hotmail.com
Created an attachment (id=32068)
--> (http://bugs.winehq.org/attachment.cgi?id=32068)
console output
Trying to run Need For Speed Hot Pursuit on wine 1.1.37 wineperfix=32 vanilla
game will crash out with.
fixme:wbemprox:wbem_locator_ConnectServer 0x1cb238, L"ROOT\\CIMV2", (null),
(null), (null), 0x00000000, (null), (nil), 0xbb811cc)
wine: Unhandled page fault on read access to 0x00000000 at address 0x758aa1
(thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x00758aa1).
Have tryed running it in Eum desktop same issiue occurs.
please see attchments with console output
system:
AMD Phenom(tm) II X4 955 Processor
ATI HD5700 X2 in crossfire Catalys 10.10
Archlinux x86_64
--
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=31029
Bug #: 31029
Summary: TrackMania United Forever: Images not show properly
(regression)
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: windowscodecs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralfjung-e(a)gmx.de
CC: dmitry(a)baikal.ru
Classification: Unclassified
Regression SHA1: fd31112ab0a0528fd9be99e0afd49dd98f523d2f
Some images in TrackMania United Forever are not displayed properly anymore in
wine 1.5.7: Only the first few lines are shown, the rest is just grey. This
affects the flags shown all over the place as well as the preview images of
tracks. I will attach a screenshot. This used to work fine in 1.5.4.
I did a bisect (which was a bit troublesome as TrackMania crashes with wine
1.5.5 and 1.5.6, but I think I got it right by applying the simple work-around
patch from that crash [1]). This is the result:
fd31112ab0a0528fd9be99e0afd49dd98f523d2f is the first bad commit
commit fd31112ab0a0528fd9be99e0afd49dd98f523d2f
Author: Dmitry Timoshkov <dmitry(a)baikal.ru>
Date: Mon May 28 18:41:27 2012 +0900
windowscodecs: Add support for preferred vendor guid in
CreateDecoderFromStream.
:040000 040000 2b792fb45444dbb1f7569a0ca8300b9c6b4f38c5
dddf1b044911cbcd8824f28029db1e1a5429e3c9 M dlls
I verified that going to the commit before this one indeed fixes the problem. A
log file of starting TrackMania with a broken wine is attached.
A free version of TrackMania is available at http://trackmaniaforever.com/
[1] http://bugs.winehq.org/show_bug.cgi?id=30885
--
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=27389
Summary: unimplemented function
msvcp80.dll.??0?$basic_ostringstream@_WU?$char_traits@
_W@std@@V?$allocator@_W@2@@std@@QAE@H@Z
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
wine: Call from 0x7ed8ce92 to unimplemented function
msvcp80.dll.??0?$basic_ostringstream@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@H@Z,
aborting
Affects Bioshock's patcher application
--
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=10458
Summary: Poptray 3.2 external exception with hotmail
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msxml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leviatan1(a)gmx.net
Created an attachment (id=9166)
--> (http://bugs.winehq.org/attachment.cgi?id=9166)
Source code from hotmail plugin
I try to use hotmail plugin in poptray. When Poptray check it hotmail, I get
warning "External exception E06D7363" and:
fixme:msxml:domdoc_QueryInterface interface
{00000126-0000-0000-c000-000000000046} not implemented
--
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=29637
Bug #: 29637
Summary: MS Word 2007 cover page crashes
Product: Wine
Version: 1.3.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winestuff(a)viller.org
Classification: Unclassified
When I open Word 2007 (SP2) and go to the Insert->Cover-Page, the MS crash
report comes up and forces me to restart Word. I run Ubuntu 11.10 64. I have
attached the console output - to me this smells like some threading issue.
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
I have also seen similar crashes in e.g. the insert footnote and header, but
the list does not pre-load as many at once, so it is not as consistent.
--
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.