http://bugs.winehq.com/show_bug.cgi?id=1305
------- Additional Comments From peter(a)lego-hc11.de 2003-03-31 16:22 -------
Created an attachment (id=443)
I installed OSS (OpenSoundSystem for FressBSD) now the sound in HalfLife menu is working fine. But when I start a "New Game" Half Life freeze. See LOGFILE for more informatiions.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1305>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=130
------- Additional Comments From vwdowns(a)bigfoot.com 2003-03-31 15:55 -------
This is Warren E. Downs. My current email is wdowns at iglooware.com (though I
did get the email via bigfoot; it still works but doesn't handle a large volume,
e.g spam).
Regarding this bug, I believe I reported it several years ago, when working for
a different company, using their proprietary software. I don't know if the bug
could be reproduced with any other Win3.1 software, but I no longer have access
to ABREMOTE, the software that had the problem. The company I worked for was
Advanced Businesslink (http://www.businesslink.com), and they have primarily
shifted to web-based technologies as far as I know.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=130>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1161
------- Additional Comments From pollockd(a)magma.ca 2003-03-31 14:56 -------
Created an attachment (id=442)
Wine Configuration File
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1161>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1161
------- Additional Comments From pollockd(a)magma.ca 2003-03-31 14:56 -------
I'm not sure how to try using a different RSAENH.DLL. I specified the
command-line as: "wine --debugmsg +all --dll rsaenh=b msmoney.exe
&>~/output.txt". I hope that's what you wanted. It didn't change the result,
however.
Here's some more stuff I've been able to find in the logs.
err:win32:PE_fixup_imports No implementation for
ADVAPI32.dll.71(CryptGetLocalKeyLimits) imported from
C:\windows\system\rsabase.dll, setting to 0xdeadbeef
I'm set up to use the built-in advapi32 implementation. I'll attach my config,
in case there are some glaring errors that I haven't noticed.
Just to check, I tried again with both:
wine --debugmsg +all --dll advapi32=n,rsaenh=b msmoney.exe &>~/output.txt
wine --debugmsg +all --dll rsaenh=b,rsabase=b msmoney.exe &>~/output.txt
Native advapi32 failed to get anywhere (even to the splash), and native rsabase
had no effect.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1161>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1340
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1340>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1340
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-03-31 13:49 -------
Very, very, very strange.
file_set_error: No such file or directory
should *never* trigger, since we have a valid mapping for ENOENT in
file_set_error().
And there's no other errno value that has the same "No such file or directory"
error string as errno value ENOENT, so it cannot be an unknown errno value
either (yes, I did check all errno error strings, from errno -32768 to 65535).
Are you sure your Wine or system isn't totally and utterly hosed?
The whole thing works absolutely fine for me with the usual and correct
trace:dosfs:GetDriveTypeW (L"C:\\PROGRA~2\\TIBIA\\IS-BN7T8.TMP")
trace:dosfs:GetDriveTypeW (L"C:\\PROGRA~2\\TIBIA\\unins000.exe")
warn:file:FILE_CreateFile Unable to create file '/dosc/Programme/Tibia/unins000.
exe' (GLE 2)
000b:Ret kernel32.MoveFileA() retval=00000001 ret=004441c2
output on (almost) current CVS.
I mean, your FILE_CreateFile *does* seem to come to the conclusion that the file
doesn't exist, but then it totally hoses error code mapping.
In short, I'd suspect that your system is hosed somehow.
If Wine source, which compiler version are you using? Using gcc optimizations?
Which glibc?
To me, it looks like it fails to categorize the values in
server/file.c/file_set_error() properly
(it seems to simply skip all break;s of case switches until it finally arrives
at the last "unknown error and print error message" case)
In closing, I suspect your Wine binary is totally broken. Correct?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1340>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1161
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-03-31 11:06 -------
Why?
Couldn't it be that our ADVAPI32.CryptDeriveKey simply calls into the crypt
provider DLL
(in this case, RSAENH.DLL) function in an illegal way?
It's most likely CPDeriveKey() that's called illegally, since that is the only
provider DLL function our CryptDeriveKey() calls...
BTW, The algorithm used (26625) is
ALG_CLASS_DATA_ENCRYPT | ALG_TYPE_STREAM | 1
and thus it should be RC4:
#define CALG_RC4 (ALG_CLASS_DATA_ENCRYPT | ALG_TYPE_STREAM |
ALG_SID_RC4)
since ALG_SID_RC4 is 1
Hmm, strange, why is the alg id RC4, but the DLL is called RSAENH.DLL??
Maybe that is the real problem?
BTW, could you try using a different version of RSAENH.DLL?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1161>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=992
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-03-31 10:30 -------
Maybe that was due to some sound device access issue between Galeon and Wine?
Oh well, probably doesn't matter any more anyway...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=992>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1335
------- Additional Comments From dh(a)onclick.org 2003-03-31 10:18 -------
I got a new error. There was a serious error popup followed by a popup that said
that the setup directory could not be found. Is that the path to the game cd?
This I found in ws2setup.log:
WS2SETUP begin: 02/25/2003 07:44:14
RegQueryValueEx(VendorInstallDll) failed
VendorWantsMSTCP=1, WantsMSIPX=2, WantsSetupUI=1
WantsMSDNS=1, WantsMSSAP=0
New wsock32.dll file version: 0004000a.00000678
Created WS2BAKUP.BAT backup batch file
No version info for C:\WINDOWS\SYSTEM\wsock32.dll
WS2SETUP end: failure
windows/ws2setup.log (END)
This is all I found on screen:
Font metrics: 100.0% done
fixme:int21:DOS3Call get interrupt vector - move to winedos...
fixme:int21:DOS3Call get interrupt vector - move to winedos...
fixme:process:CreateProcessA (E:\_ISTMP0.DIR\W95ws2setup.exe,...):
CREATE_SEPARATE_WOW_VDM ignored
fixme:win32:PE_CreateModule Security directory ignored
fixme:process:CreateProcessA (E:\MSE000\setup.exe,...): NORMAL_PRIORITY_CLASS
ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x40712c9c ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x40068618 ignored
fixme:dialog:MSGBOX_OnInit system modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1335>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1355
Summary: Static text controls wrap too early
Product: Wine
Version: 20030318
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mike(a)theoretic.com
This visual bug affects quite a few apps at the moment, the "wrap rectangle" of
static text controls is too short, leading to small labels spilling out onto 2
lines. I can attach a screenshot if it'd be useful but a lot of apps show this
problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1355>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.