https://bugs.winehq.org/show_bug.cgi?id=36050
Bug ID: 36050
Summary: Dragon NaturallySpeaking 12.x crashes on unimplemented
function msvcr100.dll._wcsupr_l
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
split off from bug 36001
--- snip ---
Unhandled exception: unimplemented function msvcr100.dll._wcsupr_l called in
32-bit code (0x7b83acfe).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7b83acfe ESP:0032e914 EBP:0032e988 EFLAGS:00200283( - -- I S - - -C)
EAX:7b826bf9 EBX:7b8b6000 ECX:f6a8b6bf EDX:0032e93c
ESI:80000100 EDI:001b0c20
...
Backtrace:
=>0 0x7b83acfe in kernel32 (+0x2acfe) (0x0032e988)
1 0xf6a878e8 in msvcr100 (+0x678e7) (0x0032e9c8)
2 0xf6a2d77d in msvcr100 (+0xd77c) (0x0032eaf0)
3 0x220847de in dd10shrd (+0x847dd) (0x0032eaf0)
4 0x00010052 (0x00010052)
0x7b83acfe: subl $4,%esp
Modules:
Module Address Debug info Name (175 modules)
PE 370000- 380000 Deferred lhsp01
PE 380000- 3af000 Deferred lhcom02w
PE 400000- c40000 Deferred natspeak
PE 1000000- 10d7000 Deferred ipworksssl8
PE 10000000-100e1000 Deferred ipworks8
PE 20000000-20012000 Deferred dd10scrp
PE 21000000-21020000 Deferred dd10trob
PE 22000000-222de000 Export dd10shrd
PE 24000000-24690000 Deferred dd10renx
PE 2b000000-2b04c000 Deferred dd10hook
...
ELF f6a06000-f6ac5000 Dwarf msvcr100<elf>
\-PE f6a20000-f6ac5000 \ msvcr100
...
Threads:
process tid prio (all id:s are in hex)
00000008 (D) C:\Program Files
(x86)\Nuance\NaturallySpeaking12\Program\natspeak.exe
00000028 0
00000024 0
00000009 0 <==
...
--- snip ---
Regards
--
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=20336
Summary: GetDriveTypeW exposes partially uninitialized out
parameter iosb in NtDeviceIoControlFile ?
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, patch
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Building the chromium unit test suite and then running
valgrind --trace-children=all --track-origins=yes wine base_unittests.exe
--gtest_filter=FileUtilTest.CreateShortcutTest
sometimes yields the error
Syscall param writev(vector[...]) points to uninitialised byte(s)
at writev (writev.c:46)
by wine_server_call (server.c:214)
by NTDLL_wait_for_multiple_objects (sync.c:1122)
by NtWaitForMultipleObjects (sync.c:1166)
by NtWaitForSingleObject (sync.c:1175)
by server_ioctl_file (file.c:1252)
by NtDeviceIoControlFile (file.c:1318)
by DeviceIoControl (file.c:2379)
by get_mountmgr_drive_type (volume.c:203)
by GetDriveTypeW (volume.c:1381)
by IShellLinkW_fnSetPath (shelllink.c:2155)
...
Address 0x7f21f248 is on thread 1's stack
Uninitialised value was created by a stack allocation
at DeviceIoControl (file.c:2335)
and sometimes the error
Syscall param writev(vector[...]) points to uninitialised byte(s)
at writev (writev.c:46)
by wine_server_call (server.c:214)
by NTDLL_wait_for_multiple_objects (sync.c:1122)
by wait_suspend (exception.c:85)
by usr1_handler (signal_i386.c:1993)
by ??? (in /lib32/libpthread-2.9.so)
Address 0x7ffdae08 is on thread 1's stack
Uninitialised value was created by a stack allocation
at DeviceIoControl (file.c:2335)
The stack allocation in question is
IO_STATUS_BLOCK iosb;
in kernel32/file.c in DeviceIoControl(). Setting its fields
to known values before the call to NtDeviceIoControlFile()
shows that the undefined field is iosb.Information.
Setting that field before the call gets rid of the valgrind error.
I can't quite follow how ioctl's work, but:
the IOCTL_MOUNTMGR_QUERY_UNIX_DRIVE ioctl seems
to follow the call-once-to-get-buffer-size paradigm.
Its reply is a struct mountmgr_unix_drive plus
(if there is room) two nul-terminated strings.
The first field of that struct is the total size needed
to hold the entire reply. If you call without a
big enough buffer, it fills in the size and returns
STATUS_MORE_ENTRIES. It puts 0 in the Information field
of the iosb in this case.
GetDriveTypeW happens to not care about the two strings,
so it only calls once with a small buffer.
Now, server_ioctl_file only copies the Information field
of the iosb if it gets STATUS_SUCCESS. So it leaves
Information undefined in the STATUS_MORE_ENTRIES case.
MSDN says that Information is set to zero on failure,
so if server_ioctl_file isn't going to copy that field,
maybe it should set it to zero. And in fact, setting
it to zero in the non-STATUS_SUCCESS case also gets
rid of the valgrind error.
I have no idea what Information is used for, or what's
really going on here, so I'll just attach the patch
to clear Information in the non-SUCCESS case and
hope somebody who knows what's going on can comment.
--
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=36233
Bug ID: 36233
Summary: gdi32/tests/font.c test fails with libertine font
installed
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 48373
--> https://bugs.winehq.org/attachment.cgi?id=48373
WINEDEBUG=font
font.c:3527: Test failed: Linux Libertine Display Capital: ntmCellHeight 2335
!= 2288, os2.usWinAscent/os2.usWinDescent 1854/434
media-fonts/libertine-ttf-5.1.3.20110615
wine-1.7.18
--
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=29882
Bug #: 29882
Summary: Authorware Web Player 2004 Plugin - mouseClicks and
keystroke are not recognized
Product: Wine
Version: 1.4-rc3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.kellermann(a)bfe.de
Classification: Unclassified
Content, running in the Authorware Web Player 2004 Browser-Plugin accepts no
mouseclicks and keystrokes, mouseover is OK.
Example-link:
http://www.bfe.de/bfe/lernprogramme/v41/demo/et1_a1l6/load.htm
Try clicking the bottom-placed arrow-buttons or hit teh arrow-keys (left,
right) on the keyboard. Please note that mouseover is working.
--
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=32108
Bug #: 32108
Summary: Steam - Borderlands 2
Product: Wine-gecko
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: nille1990(a)gmx.de
Classification: Unclassified
After installation, when i press "play" i just get an error so i can´t start
the game. the dialog said i shoult report 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=33745
Bug #: 33745
Summary: SimCity Societies segfaults
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roland(a)mxchange.org
Classification: Unclassified
Created attachment 44683
--> http://bugs.winehq.org/attachment.cgi?id=44683
Backtrace
I have installed SCS from DVD in a separate WINEPREFIX and got a segfault.
Please see attached backtrace for details.
--
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=36106
Bug ID: 36106
Summary: Installshield Wizard: scrollbar appears where it
shouldn't be
Product: Wine
Version: 1.7.17
Hardware: x86
URL: http://www.crayonphysics.com/download_demo.php?f=crayo
n_release55demo.exe
OS: Linux
Status: NEW
Keywords: download, regression
Severity: trivial
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Regression SHA1: c4a28490f304167d2257d2de6315f09d577742f2
This is only a cosmetic issue. At certain points during installation a
scrollbar is placed at the bottom of the screen. The scrollbar has no function
(does nothing).
To reproduce the problem download and install Crayon Physics demo version. You
can see the scrollbar on the 5th page of the installer (where you have the
option to install a desktop shortcut) as well as on the final screen when
installation is finished.
A regression due to
c4a28490f304167d2257d2de6315f09d577742f2 is the first bad commit
commit c4a28490f304167d2257d2de6315f09d577742f2
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Wed Apr 23 14:58:29 2014 -0500
user32: Allow setting horizontal extent even without WS_HSCROLL.
:040000 040000 71297e9008c45c291c498229af420567da47b48b
4c609793568ba85da56dd3dc28a5b7bf867375e0 M dlls
crayon_release55demo.exe
md5sum: af0182bb3fab33b61a1b0a5e5d854252
Tested with wine-1.7.17-92-ge2bf516
--
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=33958
Bug #: 33958
Summary: Wine vulnerability with (USB) devices
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: f.platte(a)platte-web.de
Classification: Unclassified
I have a original XBOX controller and use a third-party driver (which is
officially discontinued since OS X Tiger, but was updated some time ago to be
64bit compatible. It is the only driver out there for XBOX 1 controller for OS
X so I have to use it.
This driver seems to mess up the UNIX device manager (or similar, as I don't
have any consolidated knowledge), resulting in crashing any wine process
accessing the controller as a input device.
I get the following error message (repetitive) from the console whenever the
controller is connected:
sudo[4755]: [CURRENT_USER] : TTY=unknown ; PWD=/ ; USER=root ;
COMMAND=/usr/bin/renice [#] -p [#]
Although this issue does not seem to be related to wine itself it reveals some
vulnerability (I think).
It may be worth fixing, as this might occur this other devices, too.
Best,
Rastafabi
--
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=24064
Summary: Half-Life no longer starts after latest Steam update
(20 Aug 2010)
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elton(a)schiert.net
Created an attachment (id=30248)
--> (http://bugs.winehq.org/attachment.cgi?id=30248)
+tid log
Since the latest Steam update (http://store.steampowered.com/news/4228/) trying
to run Half-Life results only in displaying the title screen, nothing more.
I am fairly certain that this is a bug which was exposed by the above update. I
was playing Half-Life, then Steam prompted for a restart to complete the update
and since then I can no longer run Half-Life, not even from a clean
installation. I did not change my wine version inbetween.
This issue affects goldsource games (HL), but not source games (HL2).
--
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.