http://bugs.winehq.org/show_bug.cgi?id=4173
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #19 from Alexandre Julliard <julliard(a)winehq.org> 2011-08-05 12:37:58 CDT ---
Closing bugs fixed in 1.3.26.
--
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=27083
Summary: crash while installing Kingsoft PC manager
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=34519)
--> (http://bugs.winehq.org/attachment.cgi?id=34519)
LOG: crash while installing pcmanager
Kingsoft PC manager is opensource, code is available at
http://code.ijinshan.com/en/
1. Download http://dl.ijinshan.com/safe/setup_2.6.3.1402.exe
2. wine setup_2.6.3.1402.exe
Then a crash occur.
Out put is like this.
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
fixme:advapi:SetNamedSecurityInfoW L"C:\\Program Files\\KSafe\\AppData" 1 4
(nil) (nil) 0x57cd58 (nil)
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),4,2,(nil),0,(nil)) - stub!
fixme:ole:CoResumeClassObjects stub
wine: Unhandled page fault on read access to 0x1016575b at address 0x7b837e42
(thread 0032), starting debugger...
Unhandled exception: page fault on read access to 0x1016575b in 32-bit code
(0x7b837e42).
--
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=23384
Summary: Clicking on Audio Tab on Winecfg takes several seconds
the first time
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luisalvaradox(a)gmail.com
When you open winecfg and click on Audio, it will take several seconds for it
to respond. About 5 to 6 seconds to respond. This was not the case in versions
1.2 rc3 and 1.2 rc4. You could click and see the Audio tab immediately.
--
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=27630
Summary: Vampire The Masquerade: Bloodlines: Regression causes
graphics corruption
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: companheiro.vermelho(a)gmail.com
CC: stefan(a)codeweavers.com
Created an attachment (id=35323)
--> (http://bugs.winehq.org/attachment.cgi?id=35323)
Screenshot showing the corruption
Vampire The Masquerade: Bloodlines runs perfectly on wine-1.3.22, but in
wine-1.3.23, there is a corruption, specially in the menu but also in the game.
After a git bissect, the appointed culprit is commit
68b15bc5ffe6ddf5d08cbc13479eaf718ad5e39f
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Apr 19 21:24:26 2011 +0200
wined3d: Give GL_ARB_map_buffer_range another try.
See the attached screenshot for an example of the corruption. It is actually
pretty hard to capture a screenshot of the corruption because it keeps flashing
and changing between the correct image and the corrupted image.
I'm not using any override, but, as it should be obvious, I'm using ARB (on
regedit, the key "UseGLSL" is "disabled"). Without setting this the game barely
runs.
Running Ubuntu 11.04 i386 with a ATI Radeon HD 5450 card and using proprietary
driver fglrx version 8.84.6.
According to glxinfo, this driver has the GL_ARB_map_buffer_range extension,
but apparently it is broken...
--
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=27927
Summary: Winhttprequest WaitForResponse should process messages
Product: Wine
Version: 1.3.25
Platform: x86
URL: http://netikka.net/dev/winhttpwait.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Allows application to respond user action while waiting. For example cancel
button.
Example: http://netikka.net/dev/winhttpwait.exe
Click "download". There is time counter, but counter doesn't work. Same thing
with cancel button. Also request should timeout in 30 seconds, but it doesn't?
(Url is just some large exe-file, easier to reproduce problem also using fast
internet connection)
begin
cancel:=false;
fhttp:=createoleobject('WinHttp.WinHttpRequest.5.1');
fhttp.open('GET', edit1.text, true);
fhttp.send();
// waiting 30 seconds or user cancel.
for i:=1 to 30 do
begin
if fhttp.WaitForResponse(1) then break;
application.processmessages;
label6.caption:='Time: '+inttostr(i);
if (i=30) or (cancel=true) then
begin
if i=30 then showmessage('Timeout') else showmessage('User cancel');
fhttp.Abort;
fhttp:=unassigned;
exit;
end;
end;
memo1.text:=fhttp.Responsetext;
...
...
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
cancel:=true;
end;
--
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=27891
Summary: Winhttprequest POST doesn't work
Product: Wine
Version: 1.3.25
Platform: x86
URL: http://netikka.net/dev/posttest.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
http://netikka.net/dev/posttest.exe
SetRequestHeader implementation is needed first. Maybe not enough to make this
work, interesting to see. I use this kind of code to send formdata/photographs
to server.
procedure TForm1.Button1Click(Sender: TObject);
var fhttp, postdata: variant;
i: integer;
s: string;
begin
s:='test=12345';
postData := VarArrayCreate([0, Length(s) - 1], varByte);
for i := 1 to Length(s) do postData[i-1] := Ord(s[i]);
fhttp:=createoleobject('WinHttp.WinHttpRequest.5.1');
fhttp.open('POST', 'http://netikka.net/dev/posttest.php', true);
fhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
fhttp.send(postdata);
if Not fhttp.WaitForResponse(30) then
begin
fhttp.Abort;
fhttp:=unassigned;
showmessage('Timeout!');
exit;
end;
if fhttp.responsetext='12345' then
showmessage('Success!') else showmessage('Failed!');
fhttp:=unassigned;
end;
--
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=25905
Summary: DC Universe Online: installer window is missing most
text
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=33017)
--> (http://bugs.winehq.org/attachment.cgi?id=33017)
screenshot
See screenshot. There is no terminal output.
Tried winetricks riched20 riched30 corefonts, but none of those helped.
Interestingly, it only occurs on the first dialog, the others are okay.
--
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=19924
Summary: centry7 application (running within IE) doesn't handle
font correctly
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toralf.foerster(a)gmx.de
Today I tried to replay an internal IBM presentation using the Centry software
tool w/ this command line:
$>wine TAD4DLMT-7.2-Server-Installation-\(PSS916584\)_en_US_09-09-01_10.06.exe
1>log.txt 2>&1
AS seen in the attached screen shot, the presentation itself is displayed well,
audio works fine, but the lists to the left side are empty except the icons.
--
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=17653
Summary: VB3 - 16bit error: "Unhandled exception: floating point
stack check in 32-bit code"
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luigi(a)pajella.com
Created an attachment (id=19838)
--> (http://bugs.winehq.org/attachment.cgi?id=19838)
WINEDEBUG=+seh (partial) output
I've got a VB6 application which I'm trying to run on Wine 1.0.9.
Several modules of the software are still made in VB3 (application name is
"Ec501.exe") and are called by the 32 bit part.
I understand that the 32 bit is put on hold until the 16bit is completed
(Mutex16 stuff)
When I start the 16 bit part I get the attached error message and the 16bit
part is not executed.
In particular I get:
"Unhandled exception: floating point stack check in 32-bit code"
PS: My machine is an Athlon 1200 with Ubuntu 8.10 and gnome.
PS2: Im running the etersoft wine version "wine_1.0.9-eter41ubuntu_i386"
because the software is protected by an USB Eutron Smartkey (which etersoft
version supports). The part related to the smartkey works correctly.
WINEDEBUG=+seh log attached
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=8357
--- Comment #58 from Austin English <austinenglish(a)gmail.com> 2011-08-03 14:47:26 CDT ---
(In reply to comment #57)
> No news since 1 year. This bug could be closed as ABANDONED.
No. There is a download available.
--
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.