https://bugs.winehq.org/show_bug.cgi?id=38348
Bug ID: 38348
Summary: _wsopen_s does not respect the pmode parameter when
O_CREAT is set
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: phkelley(a)hotmail.com
Distribution: ---
When _wsopen_s is invoked to create a new file, the O_CREAT bit will be set in
the oflags parameter. The pmode parameter contains the mode for the file to be
created.
In Win32, only the S_IREAD and S_IWRITE bits in the mode matter, and Wine is
nice enough to alert with a FIXME when any bits other than these two are set.
But even when the bits meet the appropriateness criteria (no bits other than
S_IREAD and S_IWRITE), Wine still WARNs that the pmode will be ignored (when
O_CREAT is set). And indeed, nothing is done with the pmode parameter by the
rest of the routine.
It is very simple to implement the necessary support for pmode at O_CREAT time:
1. Apply the umask, which is stored in MSVCRT_umask, to the pmode to compute
the effective mode for this call to _wsopen_s.
2. Check to see if the S_IWRITE bit is missing from the effective mode.
If S_IWRITE is missing, then the "attrib" value (eventually passed on to
CreateFile) should start out as FILE_ATTRIBUTE_READONLY rather than
FILE_ATTRIBUTE_NORMAL. This will cause the created file to start off with the
+R bit set, as requested by the caller.
--
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=11364
Summary: WinRar doesn't fully utilize two CPU cores in
multithreading mode
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://rarlabs.com/download.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
WinRar doesn't fully utilize two cores of an SMP system if it has detected
them. On average WinRar's CPU usage is around 140-160% on a dual core SMP
system, while the best usage will be 200%.
Anyway thank you for resolving bug 7551.
--
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=38361
Bug ID: 38361
Summary: Dead Space 2 (Steam) crashes at the <Please
wait...Connecting> screen
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: 00cpxxx(a)gmail.com
Regression SHA1: 10f7265270f1ad4e4e1bfec6fb5f06e494d5f579
Distribution: ---
Created attachment 51203
--> https://bugs.winehq.org/attachment.cgi?id=51203
terminal output
The developer logos are shown then the game crashes just when the <Please
wait...connecting> screen is displayed.
The game starts properly in 1.7.39, regression introduced by
10f7265270f1ad4e4e1bfec6fb5f06e494d5f579 is the first bad commit
commit 10f7265270f1ad4e4e1bfec6fb5f06e494d5f579
Author: Bruno Jesus <00cpxxx(a)gmail.com>
Date: Sun Mar 29 00:53:48 2015 -0300
ws2_32: Do not poll unbound descriptors.
--
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=23481
Summary: Network in Heroes 3
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dplay
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vis(a)211.ru
I'm using the 'winetricks directplay' for playing in 'Heroes of Might and Magic
III' on a network.
But this way has a bug:
When I create a game and other player will join, game hangs at loading of
percent.
But if I join, and the user from Windows creates that all is normally created.
--
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=34820
Bug #: 34820
Summary: Path of Exile crashes on resize
Product: Wine
Version: 1.7.4
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: julusp(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
Path of Exile crashes on mac when resizing (does not matter if it is via
in-game menu or dragging the window's corner) with "Failed resetting Direct3D
device objects" popup and fixme:d3d_texture:texture_init Failed to create
surface 0x2be113c0, hr 0x8876086c
(happens with and without winemac driver)
--
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=37103
Bug ID: 37103
Summary: Wine incorrectly handles UNIX group permissions
Product: Wine
Version: 1.7.24
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: t.artem(a)mailcity.com
Here's a very simple testcase.
You've got (userid/groupid = me) a directory which belongs to a different user
(userid/groupid = otheruser). This directory user is "otheruser". This
directory group is "me". Permissions are 770.
$ ls -la
drwxrwx--- 2 otheruser me 4096 Aug 14 00:30 TestFolder
When I'm using native UNIX applications, I can create new files and erase any
files from this folder (the sticky bit is not set).
$ cd TestFolder
$ touch testfile
$ echo $?
0
$ ls -la anotherfile
-rw-r--r-- 1 otheruser otheruser 1111 May 1 11:11 anotherfile
$ rm anotherfile
$ echo $?
0
When I'm using Wine applications, I cannNOT create new files or erase existing
files in this folder. The error is "Permission denied".
--
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=37851
Bug ID: 37851
Summary: Call of Duty 4: colors and textures are not rendered
correctly
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: hardy.schumacher(a)gmx.de
Distribution: ---
Created attachment 50412
--> https://bugs.winehq.org/attachment.cgi?id=50412
Console output from COD4
Game "Call of Duty 4" reports all the time the following two lines on the
console output;
err:d3d:wined3d_debug_callback 0x131d37a8: "GL_INVALID_VALUE error generated.
Size and/or offset out of range.".
err:d3d_surface:wined3d_volume_upload_data >>>>>>>>>>>>>>>>> GL_INVALID_VALUE
(0x501) from glTexSubImage3D @ volume.c / 114
Within the game some textures only look black (e.g.: grass, trees).
--
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=38341
Bug ID: 38341
Summary: Photoshop CS6 crash at startup
Product: Wine
Version: 1.7.39
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeff.artik(a)gmail.com
Distribution: ---
Created attachment 51185
--> https://bugs.winehq.org/attachment.cgi?id=51185
Terminal output
With the lastest version of wine 1.7.39 and a bi-arch compilation + photoshop
brush patch, Photoshop always crash on startup.
Terminal output attached.
--
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=38041
Bug ID: 38041
Summary: GTAVC abruptly switches sound from left speaker to
right when steering a car
Product: Wine
Version: 1.7.34
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: b7.10110111(a)gmail.com
Distribution: ---
After wine upgrade I've noticed that when I e.g. drive a car and steer it
right, the sound from its engine abruptly switches to the right speaker, and
steering left switches the sound to left speaker. I'm not sure whether the full
sound is gone in such cases, but the switch is easily audible. This sounds
quite unpleasant and wasn't there with previous wine versions. Bisecting gives
me this commit:
02f9edfd77302eabc0a8a6e45a9423ebe2b1acef is the first bad commit
commit 02f9edfd77302eabc0a8a6e45a9423ebe2b1acef
Author: Mark Harmstone <hellas(a)burntcomma.com>
Date: Tue Jan 6 19:27:00 2015 +0000
dsound: Do not use panning to set sound position.
:040000 040000 03150d0f8efa7cbd91b17fdb40c6a1f96ff75ca1
7b1eb0070dcc0d92b3bb216a12727407f891fe28 M dlls
--
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.