http://bugs.winehq.org/show_bug.cgi?id=2718
Summary: Wine crashing with special user .. others work
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xeroc_(a)gmx.de
When I try to launch a win32 executable (ie. notepad.exe) with wine it works
quite perfect except with the one user I log in with.
In other words. root worksfine, if I create a new user it does too, but if i
start notepad using the existing useraccount 'xeroc' it crashes with
'Speicherzugriffsfehler' aka Seg fault.
I already deleted the config files .. same error .. it's not due to KDE .. I
also checked that up. No soundserver causing the error.
More information needed ?
--------------
strace wine notepad.exe
--------------
open("/home/xeroc/.wine/dosdevices/c:/windows",
O_RDONLY|O_LARGEFILE|O_DIRECTORY) = 9
ioctl(9, TUNIOCGETINFO or VFAT_IOCTL_READDIR_BOTH, 0x4123f69c) = -1 ENOTTY
(Inappropriate ioctl for device)
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++
---------------
Thx for your help
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2671
------- Additional Comments From rusoloco79(a)yahoo.com.mx 2005-14-02 11:04 -------
hi there hey can anybody see my bug i think it is important
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=560
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-14-02 10:47 -------
resolving Fixed
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2645
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-14-02 10:45 -------
This is fixed
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2630
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-14-02 10:44 -------
Resolving FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1705
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-14-02 10:42 -------
Resolving WONTFIX
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=755
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-14-02 10:41 -------
Resolving fixed (maintianer system in place)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2715
badpenguin79(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-files |wine-misc
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2715
------- Additional Comments From badpenguin79(a)hotmail.com 2005-14-02 05:54 -------
Note: Also, 20050211 release is affected .
The problem is in the function _get_tmp_fn(FILE **) ( in
$WineRelease/misc/registry.c)
---------------------------------------------------------
static LPSTR _get_tmp_fn(FILE **f)
{
LPSTR ret;
int tmp_fd,count;
ret = _xmalloc(50);
for (count = 0;;) {
sprintf(ret,"/tmp/reg%lx%04x.tmp",(long)getpid(),count++);
--> if ((tmp_fd = open(ret,O_CREAT | O_EXCL | O_WRONLY,0666)) != -1) break;
if (errno != EEXIST) {
ERR("Unexpected error while open() call: %s\n",strerror(errno));
free(ret);
*f = NULL;
return NULL;
}
}
---------------------------------------------------
When regxxxxxx.tmp is created by open() 0666 mode is used.
Since that default umask = 022 :
(0666) &~ (022) = 0644 = -rw-r--r--
Solution:
Use .. open(ret,O_CREAT | O_EXCL | O_WRONLY,0600))..
Best Regard,
Giovanni Delvecchio
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.