http://bugs.winehq.org/show_bug.cgi?id=35030
Bug #: 35030 Summary: Steam install program crash at the end of the install Product: Wine Version: 1.7.7 Platform: x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: legluondunet@free.fr Classification: Unclassified
Created attachment 46692 --> http://bugs.winehq.org/attachment.cgi?id=46692 crash log
Hello,
when I launch Steam install program, it crashes at the end of the install, then continue with downloading the whole client. It is not an important crash because it doesn't stop the install. I joined the log of the crash.
Thank you for your help.
Config: Ubuntu 13.10 wine 1.7.7 32 bits AMD radeon 7850 with Ubuntu Catalyst drivers 13.101 version Processor Intel i5-3570 3,4 Ghz
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW URL| |http://media.steampowered.c | |om/client/installer/SteamSe | |tup.exe Keywords| |download Component|-unknown |ntdll CC| |focht@gmx.net Ever Confirmed|0 |1 Summary|Steam install program crash |Steam Client Service |at the end of the install |crashes after | |post-installation step | |(AdjustTokenPrivileges | |called with non-NULL | |PreviousState and NULL | |ReturnLength out params)
--- Comment #1 from Anastasius Focht focht@gmx.net 2013-12-01 13:29:09 CST --- Hello folks,
confirming.
It's not the installer crashing but the post-install part, the startup of Steam client service.
--- snip --- ... 002f:Starting process L"C:\Program Files\Steam\bin\SteamService.exe" (entryproc=0x43d6fa) ... 002f:Call advapi32.RegCreateKeyExA(80000002,0045f478 "SYSTEM\CurrentControlSet\Services\EventLog\Application\Steam Client Service",00000000,00000000,00000000,00020006,00000000,0033fca0,00000000) ret=00407fe3 002f:Ret advapi32.RegCreateKeyExA() retval=00000000 ret=00407fe3 002f:Call KERNEL32.GetModuleFileNameA(00000000,0033fa9c,00000200) ret=00408022 002f:Ret KERNEL32.GetModuleFileNameA() retval=0000002b ret=00408022 002f:Call KERNEL32.lstrlenA(0033fa9c "C:\Program Files\Steam\bin\SteamService.exe") ret=0040802f 002f:Ret KERNEL32.lstrlenA() retval=0000002b ret=0040802f 002f:Call advapi32.RegSetValueExA(0000003c,0045f424 "EventMessageFile",00000000,00000002,0033fa9c,0000002c) ret=0040804d 002f:Ret advapi32.RegSetValueExA() retval=00000000 ret=0040804d 002f:Call advapi32.RegSetValueExA(0000003c,0045f3ec "TypesSupported",00000000,00000004,0033fc9c,00000004) ret=00408097 002f:Ret advapi32.RegSetValueExA() retval=00000000 ret=00408097 002f:Call advapi32.RegCloseKey(0000003c) ret=004080cf 002f:Ret advapi32.RegCloseKey() retval=00000000 ret=004080cf 002f:Call advapi32.RegCreateKeyExA(80000002,0045b2f4 "Software\Valve\Steam",00000000,00000000,00000000,000f003f,00000000,0033fdb0,00000000) ret=00408118 002f:Ret advapi32.RegCreateKeyExA() retval=00000000 ret=00408118 002f:Call advapi32.OpenProcessToken(ffffffff,00000020,0033fc94) ret=0040a8d9 002f:Ret advapi32.OpenProcessToken() retval=00000001 ret=0040a8d9 002f:Call advapi32.LookupPrivilegeValueA(00000000,004601d4,0033fc04) ret=0040a824 002f:Ret advapi32.LookupPrivilegeValueA() retval=00000001 ret=0040a824 002f:Call advapi32.AdjustTokenPrivileges(00000044,00000000,0033fbf4,00000010,0033fbe4,00000000) ret=0040a86e 002f:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7bc5bc1c ip=7bc5bc1c tid=002f 002f:trace:seh:raise_exception info[0]=00000001 002f:trace:seh:raise_exception info[1]=00000000 002f:trace:seh:raise_exception eax=00000000 ebx=7bccf000 ecx=00000000 edx=00000004 esi=0033fb80 edi=0033fb98 002f:trace:seh:raise_exception ebp=0033fb18 esp=0033fa50 cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00010206 002f:trace:seh:call_stack_handlers calling handler at 0x43e230 code=c0000005 flags=0 --- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/aa375202%28v=vs.85%2...
--- quote --- OOL WINAPI AdjustTokenPrivileges( _In_ HANDLE TokenHandle, _In_ BOOL DisableAllPrivileges, _In_opt_ PTOKEN_PRIVILEGES NewState, _In_ DWORD BufferLength, _Out_opt_ PTOKEN_PRIVILEGES PreviousState, _Out_opt_ PDWORD ReturnLength );
... PreviousState [out, optional]
A pointer to a buffer that the function fills with a TOKEN_PRIVILEGES structure that contains the previous state of any privileges that the function modifies. That is, if a privilege has been modified by this function, the privilege and its previous state are contained in the TOKEN_PRIVILEGES structure referenced by PreviousState. If the PrivilegeCount member of TOKEN_PRIVILEGES is zero, then no privileges have been changed by this function. This parameter can be NULL.
If you specify a buffer that is too small to receive the complete list of modified privileges, the function fails and does not adjust any privileges. In this case, the function sets the variable pointed to by the ReturnLength parameter to the number of bytes required to hold the complete list of modified privileges. ReturnLength [out, optional]
A pointer to a variable that receives the required size, in bytes, of the buffer pointed to by the PreviousState parameter. This parameter can be NULL if PreviousState is NULL. --- quote ---
I checked the service binary code and "ReturnLength" is really hard-coded to NULL while "PreviousState" is non-NULL (stack var).
Another case of MSDN not really telling the truth.
Source: http://source.winehq.org/git/wine.git/blob/eef5e45ee6aae7029ec3ec0565fbbdc2e...
--- snip --- 197 NTSTATUS WINAPI NtAdjustPrivilegesToken( ... 204 { ... 210 SERVER_START_REQ( adjust_token_privileges ) 211 { ... 224 if (PreviousState) 225 { 226 *ReturnLength = reply->len + FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ); 227 PreviousState->PrivilegeCount = reply->len / sizeof(LUID_AND_ATTRIBUTES); 228 } 229 } 230 SERVER_END_REQ; 231 232 return ret; 233 } --- snip ---
$ sha1sum SteamSetup.exe f2dd1ab2a96bd5b961bbc504458d5c53f242926c SteamSetup.exe
$ du -sh SteamSetup.exe 1.1M SteamSetup.exe
$ wine --version wine-1.7.7-230-g2507330
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #2 from Nikolay Sivov bunglehead@gmail.com 2013-12-01 23:16:29 CST --- Ok, I'll do some tests for that.
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |fd65b0a1c3f5f981cc110ca9e6a | |0edb6323e1296 Status|NEW |RESOLVED Resolution| |FIXED
--- Comment #3 from Anastasius Focht focht@gmx.net 2013-12-02 14:58:32 CST --- Hello folks,
this is fixed by commit http://source.winehq.org/git/wine.git/commit/fd65b0a1c3f5f981cc110ca9e6a0edb...
Thanks Nikolay
--- snip --- ... 002f:Call advapi32.OpenProcessToken(ffffffff,00000020,0033fc94) ret=0040a8d9 002f:Ret advapi32.OpenProcessToken() retval=00000001 ret=0040a8d9 002f:Call advapi32.LookupPrivilegeValueA(00000000,004601d4,0033fc04) ret=0040a824 002f:Ret advapi32.LookupPrivilegeValueA() retval=00000001 ret=0040a824 002f:Call advapi32.AdjustTokenPrivileges(00000044,00000000,0033fbf4,00000010,0033fbe4,00000000) ret=0040a86e 002f:Ret advapi32.AdjustTokenPrivileges() retval=00000000 ret=0040a86e 002f:Call advapi32.ConvertStringSidToSidA(0045fd6c,0033fc90) ret=0040a908 002f:Ret advapi32.ConvertStringSidToSidA() retval=00000001 ret=0040a908 002f:Call advapi32.ConvertStringSidToSidA(004601e8,0033fc8c) ret=0040a916 002f:Ret advapi32.ConvertStringSidToSidA() retval=00000001 ret=0040a916 002f:Call advapi32.SetEntriesInAclA(00000002,0033fc20,00000000,0033fc88) ret=0040a977 002f:Ret advapi32.SetEntriesInAclA() retval=00000000 ret=0040a977 002f:Call advapi32.SetNamedSecurityInfoA(0045f590 "MACHINE\SOFTWARE\Valve\Steam",00000004,00000004,00000000,00000000,0012cc88,00000000) ret=0040a992 002f:Ret advapi32.SetNamedSecurityInfoA() retval=00000000 ret=0040a992 --- snip ---
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |pepe@bloodkings.eu
--- Comment #4 from Anastasius Focht focht@gmx.net 2013-12-03 16:38:54 CST --- *** Bug 35046 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |brandtcoyle@gmail.com
--- Comment #5 from Bruno Jesus 00cpxxx@gmail.com 2013-12-03 17:58:23 CST --- *** Bug 35047 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |clarosa@columbus.rr.com
--- Comment #6 from Anastasius Focht focht@gmx.net 2013-12-04 04:36:00 CST --- *** Bug 35048 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Steam Client Service |Steam Client update from |crashes after |Dec. 3, 2013 breaks Wine |post-installation step |(Steam Client/Service crash |(AdjustTokenPrivileges |after update, login fails) |called with non-NULL | |PreviousState and NULL | |ReturnLength out params) |
--- Comment #7 from Anastasius Focht focht@gmx.net 2013-12-04 04:47:04 CST --- Hello folks,
refining summary in hope it will avoid more duplicates...
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #8 from Anastasius Focht focht@gmx.net 2013-12-04 04:51:21 CST --- Hello folks,
commit fd65b0a1c3f5f981cc110ca9e6a0edb6323e1296 should also be considered for cherry pick into stable branch if another 1.6.x happens before 1.8
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
Henri Verbeet hverbeet@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |1.6.x
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #9 from Anastasius Focht focht@gmx.net 2013-12-04 06:08:36 CST --- Well, considering this rather unusual API usage breaks all existing Wine versions I'm still undecided whether this can be attributed to laziness or foul play. MSDN is quite clear about it ...
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
babaei babaei.wine@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |babaei.wine@gmail.com
--- Comment #10 from babaei babaei.wine@gmail.com 2013-12-04 14:02:41 CST --- I built the latest version of Wine from the git repository with this patch (wine-1.7.7-160-g58d96f7), and I'm still experiencing a failure of the latest version of Steam to load. It was working well yesterday prior to the latest Steam update.
I tested fresh installing Steam from the executable to a new WINEPREFIX using wine-1.7.7-160-g58d96f7 and it still failed to load after the Steam Guard step.
With both 1.7.7 and wine-1.7.7-160-g58d96f7, it successfully loads into offline mode and shows the following version information: Steam Client Application Built: Dec 3 2013, at 18:36:49 Steam API: v012 Steam package versions: 1386125885/1386125885
I've posted details including a trace here. I can generate more specific debugging information if it could help. http://appdb.winehq.org/commentview.php?iAppId=1163&iVersionId=19444&...
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #11 from Anastasius Focht focht@gmx.net 2013-12-04 14:14:37 CST --- Hello babaei,
the log from your link shows you have not built from 'pure' Wine GIT source tree. You have several unsupported patches applied.
If you can still reproduce with 'pure' Wine create a new bug. The original breaking issue from Dec. 03 client update has been identified and fixed -> bug closed. Please refrain from continuing this bug with unrelated issues.
FYI: Several people can run Steam Dec. 03 update without problems in online mode.
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #12 from babaei babaei.wine@gmail.com 2013-12-04 15:06:27 CST --- I can assure you that I built my system directly from the git repository without modifications and ran it directly from the source tree. I will open a new bug, but I don't want it to be flagged as a duplicate of this one.
I commented on this bug report because, in addition to not wanting to be flagged as a duplicate, I was still experiencing "Steam Client update from Dec. 3, 2013 breaks Wine" in spite of the fix.
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #13 from Anastasius Focht focht@gmx.net 2013-12-04 15:23:21 CST --- Hello babaei,
well then this pulseaudio thingy must be my imagination ...
--- quote --- Even with the release version of 1.7.7, I never saw it fail with a page fault (like in the linked bug). --- quote ---
Which basically means your system is somehow borked (broken WINEPREFIX, host issues). Every Wine version that received the Dec. 03 Steam Client update should crash the same way in 'online' mode.
To reiterate: any further bug reports at this time, stating "steam is broken" or "it still doesn't work" will definitely confuse _lots_ of people that are currently seeking help in many forums/mailing lists/entertainment websites.
Your problem seems to be an isolated issue. There is #winehq IRC channel on freenode so join and we might work this one out without creating further confusion.
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #14 from babaei babaei.wine@gmail.com 2013-12-04 16:11:54 CST --- *** Bug 35050 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |colitisscope@gmail.com
--- Comment #15 from Anastasius Focht focht@gmx.net 2013-12-05 01:54:45 CST --- *** Bug 35051 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Oleg xxblx.duke@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xxblx.duke@gmail.com
--- Comment #16 from Oleg xxblx.duke@gmail.com 2013-12-05 11:58:45 CST --- Hello.
Tell me please. Bug already fixed. Fix patch commited into main branch. So. Does that fix (patch) will be included into 1.7.8 release?
Thanks. Oleg.
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #17 from Bruno Jesus 00cpxxx@gmail.com 2013-12-05 12:00:47 CST --- (In reply to comment #16)
Tell me please. Bug already fixed. Fix patch commited into main branch. So. Does that fix (patch) will be included into 1.7.8 release?
Yes.
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #18 from Oleg xxblx.duke@gmail.com 2013-12-05 12:18:30 CST ---
Yes.
Thanks for your answer.
p.s. I interested because I don't do dev team "string freeze" before release or no.
Thanks. Oleg.
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #19 from Justin la plante colitisscope@gmail.com 2013-12-06 01:44:14 CST --- Created attachment 46752 --> http://bugs.winehq.org/attachment.cgi?id=46752 Still crashes, reloads not working
Wine is still crashing after steam loads. my previous report may have contained the first crash report which actually isnt a crash. This is the second report which comes up after steam actually crashes. I am attempting to load an older version of wine but ive been through several system re-installs to try and remedy the crash and nothing changes.
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #20 from Nikolay Sivov bunglehead@gmail.com 2013-12-06 01:55:54 CST --- (In reply to comment #19)
Created attachment 46752 [details] Still crashes, reloads not working
Wine is still crashing after steam loads. my previous report may have contained the first crash report which actually isnt a crash. This is the second report which comes up after steam actually crashes. I am attempting to load an older version of wine but ive been through several system re-installs to try and remedy the crash and nothing changes.
Why are you using old wine build (1.4.1)? Fix is only present in current dev branch, and will be included in release 1.7.8 (expected today). It makes no sense to try with older versions.
http://bugs.winehq.org/show_bug.cgi?id=35030
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #21 from Alexandre Julliard julliard@winehq.org 2013-12-06 13:44:38 CST --- Closing bugs fixed in 1.7.8.
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |rol4heath@gmail.com
--- Comment #22 from Anastasius Focht focht@gmx.net 2013-12-07 11:20:22 CST --- *** Bug 35074 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #23 from roland rol4heath@gmail.com 2013-12-07 12:07:19 CST --- i was updated this morning to 1.7.8. still doesn't work in peace roland
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #24 from Anastasius Focht focht@gmx.net 2013-12-07 12:24:14 CST --- Hello roland ,
--- quote --- i was updated this morning to 1.7.8. still doesn't work in peace roland --- quote ---
there were already several occasions where people claimed "after the update steam still doesn't work for me", absolutely convinced they made no mistake - and in the end it turned out not being Wine's fault.
To all people who are inclined to post/comment here:
If the upgrade to Wine 1.7.8 didn't resolve the Steam problem, please go to WineHQ user support forums (http://forum.winehq.org/) and get help there. Bugzilla is not meant for end user support.
Thanks.
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |nathanzhenkel@gmail.com
--- Comment #25 from Anastasius Focht focht@gmx.net 2013-12-08 16:24:13 CST --- *** Bug 35086 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
DenTaKu dentaku@web.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |dentaku@web.de
--- Comment #26 from DenTaKu dentaku@web.de 2013-12-09 01:06:55 CST --- WIne 1.7.8 fixed this isuue (Steam starts again) - but now audio stutters in all games! :-(
http://bugs.winehq.org/show_bug.cgi?id=35030
Nikolay Sivov bunglehead@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |cogrossisimone@gmail.com
--- Comment #27 from Nikolay Sivov bunglehead@gmail.com 2013-12-09 04:01:09 CST --- *** Bug 35091 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jean_antonin@hotmail.fr
--- Comment #28 from Bruno Jesus 00cpxxx@gmail.com 2013-12-09 09:55:18 CST --- *** Bug 35099 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Matt mattcbro@earthlink.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mattcbro@earthlink.net
--- Comment #29 from Matt mattcbro@earthlink.net --- Wine 1.7.8 is not fixing this bug for me. I have frequent authentication failure hangs. When I first install steam I can get in but can not download any games or verify the game cache.
After I log out of steam, logging in again causes steam to fail during authentication.
Interestingly I get the same error prior to the 1.7.8 fix, [1215/013422:ERROR:resource_bundle.cc(417)] Failed to load C:\Program Files (x86)\Steam\bin\chrome.pak Some features may not be available. fixme:iphlpapi:NotifyAddrChange (Handle 0x5e7d4d8, overlapped 0x5c974b0): stub fixme:winsock:WSALookupServiceBeginW (0x5e7d5d8 0x00000ff0 0x5e7d620) Stub! [1215/013422:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
Just as a sanity check wine --version wine-1.7.8
http://bugs.winehq.org/show_bug.cgi?id=35030
Nikolay Sivov bunglehead@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |calgrainger90@live.com
--- Comment #30 from Nikolay Sivov bunglehead@gmail.com --- *** Bug 35148 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |chilloutdreaming@gmail.com
--- Comment #31 from Bruno Jesus 00cpxxx@gmail.com --- *** Bug 35154 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |django.hitman@gmail.com
--- Comment #32 from Bruno Jesus 00cpxxx@gmail.com --- *** Bug 35183 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Mark Eoberts mr2131@cebridge.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mr2131@cebridge.net
--- Comment #33 from Mark Eoberts mr2131@cebridge.net --- (In reply to comment #20)
(In reply to comment #19)
Created attachment 46752 [details] Still crashes, reloads not working
Wine is still crashing after steam loads. my previous report may have contained the first crash report which actually isnt a crash. This is the second report which comes up after steam actually crashes. I am attempting to load an older version of wine but ive been through several system re-installs to try and remedy the crash and nothing changes.
Why are you using old wine build (1.4.1)? Fix is only present in current dev branch, and will be included in release 1.7.8 (expected today). It makes no sense to try with older versions.
Wine 1.4.1 is the version that Ubuntu installs. Even after adding the ppa source lists, Ubuntu doesn't seem to update to newer versions of Wine. I'm using Ubuntu 13:10 and it still lists my version of Wine as 1.4.1. You may have found a solution to the problem, but The 12/03 update still has my version of Steam kiboshed.
Mark
http://bugs.winehq.org/show_bug.cgi?id=35030
Ken Thomases ken@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |beaks12@gmail.com
--- Comment #34 from Ken Thomases ken@codeweavers.com --- *** Bug 35271 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
Scott Ritchie scott@open-vote.org changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |scott@open-vote.org
--- Comment #35 from Scott Ritchie scott@open-vote.org --- You need to install wine1.6 / wine1.7 packages after adding the PPA, it won't replace the wine1.4 package.
http://bugs.winehq.org/show_bug.cgi?id=35030
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bruno.chartier.13@gmail.com
--- Comment #36 from Anastasius Focht focht@gmx.net --- *** Bug 35295 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
GyB gyebro69@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |theoedipusiscomplete@gmail. | |com
--- Comment #37 from GyB gyebro69@gmail.com --- *** Bug 35299 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #38 from sovejohn@yahoo.com --- Created attachment 47093 --> http://bugs.winehq.org/attachment.cgi?id=47093 this is what the error says.
i have no clue what any of this means and it says on here that this was fixed but for me its not.
http://bugs.winehq.org/show_bug.cgi?id=35030
sovejohn@yahoo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |sovejohn@yahoo.com
--- Comment #39 from sovejohn@yahoo.com --- this error keeps happining to me everytime i want to log into steam through wine. it gives me the login screen and after giving it my pass, steam sends me an email with a code to enter because apparently im useing a new computer. but after entering the code wine says somethings having serious issues and steam then closes. im not good with computers so i have absolutly no clue whats happining.anyone have any advice for me?
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #40 from Anastasius Focht focht@gmx.net --- Hello sovejohn,
you need to upgrade to Wine 1.7.8 or newer. If you don't know how to do that, please go to WineHQ user support forums (http://forum.winehq.org/) and get help there.
Bugzilla is not meant for end user support.
Thanks.
Regards
http://bugs.winehq.org/show_bug.cgi?id=35030
triangle400@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |triangle400@gmail.com
--- Comment #41 from triangle400@gmail.com --- Ok, take 2...
I was going to post something about the bug, that i do get still, but i realised i'm using wine 1.6.1. I have something to look into before i get deeper into that. The fact remains that the "how to" on this bug mainly links here and here it mainly says to figure it out yourself...
TLDR, please elaborate in the "how to" on this bug as this does not contain user friendly instructions.
http://bugs.winehq.org/show_bug.cgi?id=35030
--- Comment #42 from Austin English austinenglish@gmail.com --- (In reply to comment #41)
Ok, take 2...
I was going to post something about the bug, that i do get still, but i realised i'm using wine 1.6.1. I have something to look into before i get deeper into that. The fact remains that the "how to" on this bug mainly links here and here it mainly says to figure it out yourself...
TLDR, please elaborate in the "how to" on this bug as this does not contain user friendly instructions.
As it says in comment #40, you need to update to wine 1.7.8.
https://bugs.winehq.org/show_bug.cgi?id=35030
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|1.6.x |---
--- Comment #43 from Alexandre Julliard julliard@winehq.org --- Removing 1.6.x milestone from bugs included in 1.6.2.
http://bugs.winehq.org/show_bug.cgi?id=35030
Rosanne DiMesio dimesio@earthlink.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bpashuta@hotmail.com
--- Comment #44 from Rosanne DiMesio dimesio@earthlink.net --- *** Bug 35654 has been marked as a duplicate of this bug. ***
https://bugs.winehq.org/show_bug.cgi?id=35030
Rosanne DiMesio dimesio@earthlink.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |dylanlxy@gmail.com
--- Comment #45 from Rosanne DiMesio dimesio@earthlink.net --- *** Bug 39202 has been marked as a duplicate of this bug. ***