https://bugs.winehq.org/show_bug.cgi?id=41181
Bug ID: 41181
Summary: Assassin's Creed III crashes
Product: Wine
Version: 1.9.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: plata(a)mailbox.org
Distribution: ---
Created attachment 55411
--> https://bugs.winehq.org/attachment.cgi?id=55411
backtrace
Assassin's Creed III crashes at/after "This work of fiction was designed,
developed and produced by a multicultural team of various religious faiths and
beliefs."
I attached what looked relevant to me only because the output was REALLY long.
This could be the same as https://bugs.winehq.org/show_bug.cgi?id=39731
--
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=27774
Summary: VMMap: cannot activate window
Product: Wine
Version: 1.3.24
Platform: x86
URL: http://technet.microsoft.com/en-us/sysinternals/dd5355
33
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Read about it while reading about the Stuxnet worm. I don't fully expect the
app to work on wine (yet :)), but running it works without crashing. I can't,
however, activate the window.
To reproduce:
$ wget http://download.sysinternals.com/Files/vmmap.zip
$ unzip vmmap.zip "vmmap.exe"
$ wine start /min notepad.exe
$ wine vmmap.exe
accept the license, choose notepad, then click ok. The main window will now
appear, but you cannot click anything in it. You can still move it with
alt+drag, though.
Virtual desktop/disabling window manager control/decoration don't make a
difference.
Terminal output is pretty short:
austin@aw25 ~ $ wine vmmap.exe
fixme:system:SetProcessDPIAware stub!
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
fixme:service:EnumServicesStatusExW resume handle not supported
fixme:service:EnumServicesStatusExW resume handle not supported
fixme:heap:RtlQueryHeapInformation Unknown heap information class 2
fixme:debug_buffer:RtlCreateQueryDebugBuffer (0, 1): stub
fixme:debug_buffer:RtlCreateQueryDebugBuffer (96, 1): returning 0x145658
fixme:debug_buffer:RtlQueryProcessDebugInformation (33, 204, 0x145658): stub
fixme:debug_buffer:RtlDestroyQueryDebugBuffer (0x145658): stub
fixme:file:K32GetMappedFileNameW (0x4c, (nil), 0x33c3bc, 260): stub
fixme:file:K32GetMappedFileNameW (0x4c, 0x110000, 0x33c3bc, 260): stub
Then repeats these lines several dozen times:
fixme:virtual:NtQueryVirtualMemory (process=0x4c,addr=(nil)) Unimplemented
information class: MemoryWorkingSetList
fixme:virtual:NtQueryVirtualMemory (process=0x4c,addr=(nil)) Unimplemented
information class: MemoryWorkingSetList
fixme:virtual:NtQueryVirtualMemory (process=0x4c,addr=(nil)) Unimplemented
information class: MemoryWorkingSetList
fixme:file:K32GetMappedFileNameW (0x4c, 0x220000, 0x33c3bc, 260): stub
2f4c2ed326f82357006820b604a1f9ad99d95f38 vmmap.exe
59b65ca253c3af2dc0f010da13827efb03c7a618 vmmap.zip
--
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=17205
Summary: MessageBoxes doesn't have the copy(Ctrl-C) feature which
exists on Windows.
Product: Wine
Version: 1.1.14
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diaasami(a)gmail.com
Created an attachment (id=19116)
--> (http://bugs.winehq.org/attachment.cgi?id=19116)
Source of a simple app that shows a messagebox
On Windows, When pressing Ctrl-C with a standard messagebox focused, the
caption and contents are copied to the clipboard(as text), this doesn't happen
with Wine's messageboxes.
When running the attached application and pressing Ctrl-C with the messagebox
focused on Windows, the following is copied into the clipboard:
---------------------------
Caption
---------------------------
Test
---------------------------
OK
---------------------------
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40892
Bug ID: 40892
Summary: Charmap.exe crashes on close after copying a character
Product: Wine
Version: 1.9.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: dexgerig(a)gmail.com
Distribution: ---
Created attachment 54982
--> https://bugs.winehq.org/attachment.cgi?id=54982
Backtrace of crash
Window's charmap application will crash if you try to close it after selecting
and copying a character from it's list.
Steps to reproduce.
1. Create clean 32-bit prefix using wine version 1.9.13
2. Obtain a copy of Window's charmap.exe and the required dll getuname.dll. (I
got mine from my Windows XP machine)
md5sum:
ac9fa2ba34225342a8897930503ae12f charmap.exe
60b9959d333c3d11255d8695d2685430 getuname.dll
3. Open charmap.exe
4. Click the select button then click the copy button.
5. Close exit out of the application.
Backtrace will be attached in this post.
Looking at the backtrace it seems to crash in the clipboard uninitialization
function "OLEClipbrd_UnInitialize". Specifically in the inlined function
"IDataObject_Release". Here is the relevant code.
void OLEClipbrd_UnInitialize(void)
{
ole_clipbrd *clipbrd = theOleClipboard;
TRACE("()\n");
if ( clipbrd )
{
static const WCHAR ole32W[] = {'o','l','e','3','2',0};
HINSTANCE hinst = GetModuleHandleW(ole32W);
if ( clipbrd->window )
{
DestroyWindow(clipbrd->window);
UnregisterClassW( clipbrd_wndclass, hinst );
}
IStream_Release(clipbrd->marshal_data);
if (clipbrd->src_data) IDataObject_Release(clipbrd->src_data);
HeapFree(GetProcessHeap(), 0, clipbrd->cached_enum);
HeapFree(GetProcessHeap(), 0, clipbrd);
theOleClipboard = NULL;
}
}
static FORCEINLINE ULONG IDataObject_Release(IDataObject* This) {
return This->lpVtbl->Release(This);
}
--
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.
https://bugs.winehq.org/show_bug.cgi?id=42344
Bug ID: 42344
Summary: Metal Gear Solid V: The Phantom Pain - Doesn't
launch/hangs
Product: Wine
Version: 2.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spleefer90(a)gmail.com
Distribution: ---
Created attachment 57111
--> https://bugs.winehq.org/attachment.cgi?id=57111
steam MGSV launch log
Using steam version and wine-staging.
Set W7 in winecfg.
Launching the executable through the terminal just makes it kill itself after a
few seconds.
Launching through Steam makes one thread work at 100% and it just hangs there.
--
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=31047
Bug #: 31047
Summary: unable to edit gedit's preferences
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
Created attachment 40760
--> http://bugs.winehq.org/attachment.cgi?id=40760
Log: +winsock trace
1. Download win32 version of gedit
http://ftp.gnome.org/pub/gnome/binaries/win32/gedit/2.30/gedit-setup-2.30.1…
2. install via wine
3. start gedit
$ cd ~/.wine/drive_c/Program Files/gedit/bin
$ wine gedit.exe
4. click on edit->preference->view
Expect result:
"Text Wrapping"/"Line Numbers" and other options should be able to edit.
Actual result:
All these checkboxes are unable to edit.
There are two warnings from console at the first of running gedit:
** (gedit.exe:8): WARNING **: Failed to send buffer
** (gedit.exe:8): WARNING **: Failed to send buffer
A +winsock trace show:
warn:winsock:wsaErrno errno 32, (Broken pipe).
warn:winsock:WS2_sendto -> ERROR 10054
After that there are a lot output from console as below:
GConf Error: Adding client to server's list failed, CORBA error:
IDL:omg.org/CORBA/COMM_FAILURE:1.0
There as much of msvcrt message and winsock message with those "GConf Error":
fixme:msvcrt:MSVCRT__wsopen_s : pmode 0x01c0 ignored
warn:winsock:wsaErrno errno 115, (Operation now in progress).
native msvcrt doesn't help.
Will attach a +winsock trace, maybe helpful. Not sure what component yet.
--
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=34153
Bug #: 34153
Summary: wine does not restore mode of direction keys properly
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: unsuspicious.fakename+wine(a)gmail.com
Classification: Unclassified
Wine seems to change the up key from ^[[A to ^[OA but not always back (reliably
reproducible on unclean exits / crashes and such, but randomly happens after
clean exits too).
1) open terminal (tested in bash / zsh; with xfce4-terminal and lxterminal)
2) ctrl+v [up key] should give you: ^[[A
3) winecfg
4) ctrl+c in terminal to end winecfg
5) ctrl+v [up key] now gives you: ^[OA
This can - depending on shell configuration - temporarily break features like
p.e. bash history search bound to up/down ^[[A (but not explicitly ^[OA) and
leave end-users clueless due to the subtle / weird nature of the unexpected
behaviour.
That being said: Not sure if (wine) bug or (for some reason I can't grasp)
normal / intended behaviour. All I know is it took me quite a while and also
help to figure out what's happening and how to work around it.
--
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=21456
Summary: Mathematica 4.0 crash
Product: WineHQ Apps Database
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jean-pierre(a)piantino.com
Created an attachment (id=25836)
--> (http://bugs.winehq.org/attachment.cgi?id=25836)
Terminal output after launching Mathematica
Mathematica 4.0 was running in Wine 1.1.36 under openSUSE 11.1.
Upgrading openSUSE to 11.2 makes Mathematica crash at launch.
--
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=17982
Summary: PatBlt cannot draw arbitrary parallelograms based on the
world transform
Product: Wine
Version: 1.1.18
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Using the functions SetGraphicsMode and (Set|Modify)WorldTransform, it is
possible to define an arbitrary matrix to transform all points as things are
drawn to device contexts. Using this matrix, it should be possible to apply
arbitrary rotation/shear effects. Thus, rectangles drawn on the hdc can be
transformed into arbitrary parallelograms.
This only works on systems where GM_ADVANCED is supported (NT but not 9x,
according to MSDN).
I have written a test program that demonstrates this on Windows. On Wine, it
can only draw rectangles.
--
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.