http://bugs.winehq.org/show_bug.cgi?id=824
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Keywords| |patch
--
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=7036
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
--- Comment #7 from Austin English <austinenglish(a)gmail.com> 2008-01-04 18:56:18 ---
And confirming.
--
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=7054
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
--- Comment #3 from Austin English <austinenglish(a)gmail.com> 2008-01-04 18:30:56 ---
Confirming.
--
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=3538
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #8 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 18:27:19 ---
Tobias
Could you please test this again with the latest version of wine (0.9.52)?
--
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=7533
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #7 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 18:21:06 ---
The download URL for this game appears to be invalid now. I went looking for
the latest version of this game, it appears to be protected by GameGuard
(anti-hack/cheat protection), under wine 0.9.52, upon trying to start the game
it initializes GameGuard and refuses to run the program, requesting that I quit
any "unnecessary program".
--
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=824
Michal Piaskowski <piaskal+wine(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |piaskal+wine(a)gmail.com
--
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=824
--- Comment #11 from Michal Piaskowski <piaskal+wine(a)gmail.com> 2008-01-04 18:04:55 ---
Created an attachment (id=10039)
--> (http://bugs.winehq.org/attachment.cgi?id=10039)
Change the way REG_MULTI_SZ is saved
As it have been said already the problem is that wine stores REG_MULTI_SZ as
null terminated string and sometimes looses information about data length.
Without this information wine can't tell if the original string was null
terminated or not.
To make things more complicated Windows XP (as well as wine) whenever
RegSetValueEx( HKEY hkey, LPCSTR name, DWORD reserved, DWORD type,
CONST BYTE *data, DWORD count )
is called with data pointing to a string which isn't null terminated
system will check if data[count] is null. If it is then it will assume that the
user forgot about the ending /0 and will save count+1 bytes, but if data[count]
isn't null it will save only count bytes.
I have tested following calls on windows xp and wine:
RegSetValueEx(myKey,"321\\0 len=4",0,REG_MULTI_SZ,(const BYTE
*)"321",4);
RegSetValueEx(myKey,"321\\0 len=3",0,REG_MULTI_SZ,(const BYTE
*)"321",3);
RegSetValueEx(myKey,"321\\0 len=2",0,REG_MULTI_SZ,(const BYTE
*)"321",2);
RegSetValueEx(myKey,"321\\0 len=1",0,REG_MULTI_SZ,(const BYTE
*)"321",1);
RegSetValueEx(myKey,"321\\0 len=0",0,REG_MULTI_SZ,(const BYTE
*)"321",0);
This is the result of exporting these keys on Windows XP
"321\\0 len=4"=hex(7):33,00,32,00,31,00,00,00
"321\\0 len=3"=hex(7):33,00,32,00,31,00,00,00
"321\\0 len=2"=hex(7):33,00,32,00
"321\\0 len=1"=hex(7):33,00
"321\\0 len=0"=hex(7):
This is how wine stores it in ~/.wine/user.reg
"321\\0 len=0"=str(7):""
"321\\0 len=1"=str(7):"3"
"321\\0 len=2"=str(7):"32"
"321\\0 len=3"=str(7):"321"
"321\\0 len=4"=str(7):"321"
And this is how wine exports it:
"321\\0 len=0"=hex(7):00
"321\\0 len=1"=hex(7):33,00
"321\\0 len=2"=hex(7):33,32,00
"321\\0 len=3"=hex(7):33,32,31,00
"321\\0 len=4"=hex(7):33,32,31,00
I made a simple patch that changes the way wine stores REG_MULTI_SZ from str(7)
to hex(7).
After applying that patch Wine stores those values as:
"321\\0 len=0"=hex(7):
"321\\0 len=1"=hex(7):33,00
"321\\0 len=2"=hex(7):33,00,32,00
"321\\0 len=3"=hex(7):33,00,32,00,31,00,00,00
"321\\0 len=4"=hex(7):33,00,32,00,31,00,00,00
And regedit exports it this way:
"321\\0 len=0"=hex(7):
"321\\0 len=1"=hex(7):33
"321\\0 len=2"=hex(7):33,32
"321\\0 len=3"=hex(7):33,32,31,00
"321\\0 len=4"=hex(7):33,32,31,00
--
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=7285
kaputtnik <frank.ue(a)kabelmail.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |frank.ue(a)kabelmail.de
--- Comment #19 from kaputtnik <frank.ue(a)kabelmail.de> 2008-01-04 16:54:25 ---
Hi!
I have the same problem: wincfg hangs the hole(!) System up. i just can do
nothing, but pressing the ALT+DRUCK+k keys. Then starts a new Session. winecfg
creates a directory as described (~/.wineSOMECHARACTERS).
I'm running Ubuntu(Debian) 7.10, named Gutsy Gibbon, on a Laptop with AC97
Sound. The graphic is via (KM400/KN400), using the openchrome driver.
Everything works fine, but 'wine' isn't working at all. I need wine for my
Homebankingsoftware and evtll for more!
Something special:
1. Boot my Laptop with an different Linuxsystem: Ubuntu 7.04. This Live-CD open
a "clean" usable Linuxsystem from CD. On this older Version i installed wine
and start with 'winecfg' at the Terminal: It runs! I could even start the
wineprograms mine, notepad and so on.
2. Boot my Laptop with Live CD and Ubuntu 7.10. Install wine and run winecfg in
a Terminal: System hangs!! Only pressing the ALT+DRUCK+k keys gave me the
command back (starting a new session with typing user and password)!
With this (1+2), i can compare a running wine with a 'broken' wine (Sorry for
my bad english)
3. If winecfg hangs, the ~/.wineSOMECHARACTERS directory is not complete. The
hierachy of the directory seemes to be complete, but some files are missing.
4. The last file made in the ~/.wineSOMECHARACTERS directory is the 'user.reg'.
This file ends with the line:
"[Software\\Wine\\WineDbg] 1199467502"(The Number is various)
I do not think, that this is right.
Hope (with some other people i think) that this will be fixed.
If you need some other information, please ask.
--
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=8575
Marcel Hasler <mahasler(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
--- Comment #11 from Marcel Hasler <mahasler(a)gmail.com> 2008-01-04 16:36:33 ---
This isn't fixed for me.
I just checked out the latest git but this bug still is there.
@Andre
Which git commit did you check out? Perhaps this was fixed once but broke again
soon after.
Also, I didn't see any commit since 0.9.52 that had anything to do with the
WINED3DFMT_P8 issue which seems to be the root of this problem.
You should also keep an eye on Bug 6871. I think this one is actually a
duplicate.
I really don't think this bug should have been closed that soon.
--
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=4334
--- Comment #4 from Austin English <austinenglish(a)gmail.com> 2008-01-04 16:32:23 ---
I couldn't find 4.3.3 to download anywhere. I tried v6, which simply crashes
before running (looks like it depends on WMP 10). Do you still have the
installer laying around Vitaliy?
--
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=3999
Henry <nospam(a)thenerdshow.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|LATER |ABANDONED
--- Comment #13 from Henry <nospam(a)thenerdshow.com> 2008-01-04 16:26:01 ---
The liberty product is being replaced with a newer re-write. Will test when I
get a copy.
--
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=4108
Henry <nospam(a)thenerdshow.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
--- Comment #3 from Henry <nospam(a)thenerdshow.com> 2008-01-04 16:22:58 ---
Unable to test now that new version is out. Problem was likely due to improper
database setup. Marking invalid.
--
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=5056
Henry <nospam(a)thenerdshow.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #8 from Henry <nospam(a)thenerdshow.com> 2008-01-04 16:20:51 ---
Marking as fixed
--
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=3711
--- Comment #4 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2008-01-04 15:57:27 ---
Created an attachment (id=10037)
--> (http://bugs.winehq.org/attachment.cgi?id=10037)
attempt to fix this bug
Doh, here's an attempt to fix this bug. While playing around with FeedingFrenzy
i noticed this registry key is generated automtically using native wininet. A
+reg,+snoop log showed this was done from within
WININET.InternetGetConnectedState. So hopefully this patch matches more or less
native behaviour. Dan, i couldn't find that musicmatch application anymore, the
link now sends me to YahooMusic, any chance you still have it lying around and
could give it a try with the patch?
--
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=6877
Vincent Povirk <madewokherd(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |madewokherd(a)gmail.com
--- Comment #5 from Vincent Povirk <madewokherd(a)gmail.com> 2008-01-04 15:57:07 ---
Unknown. With current Wine, Worms: Armageddon cannot leave the main menu screen
without crashing. It's impossible to check for this issue until the newer one
is fixed.
--
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=6833
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Component|wine-misc |wine-shdocvw
--- Comment #4 from Dan Kegel <dank(a)kegel.com> 2008-01-04 15:45:38 ---
Since it's bombing out in mshtml, setting component to shdocvw
(gee, it'd be nice if we had more obvious categories...)
--
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=4030
Lei Zhang <thestig(a)google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--- Comment #7 from Lei Zhang <thestig(a)google.com> 2008-01-04 15:33:01 ---
Please file separate bugs for the other issues in the game.
--
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=5423
--- Comment #10 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:21:55 ---
Created an attachment (id=10036)
--> (http://bugs.winehq.org/attachment.cgi?id=10036)
Terminal output in wine 0.9.52
Using AIM 6.5.7.20, wine 0.9.52
Aim starts to prepare for installation, then pops up an error saying:
"Dynamic insert message here".
Then aborts the install.
--
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=4490
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |car_crazy33(a)hotmail.com
--- Comment #15 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:10:12 ---
*** Bug 7936 has been marked as a duplicate of this bug. ***
--
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=7936
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
--- Comment #1 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:10:12 ---
Duplicate.
*** This bug has been marked as a duplicate of bug 4490 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.