http://bugs.winehq.org/show_bug.cgi?id=2715
------- Additional Comments From badpenguin79@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