http://bugs.winehq.org/show_bug.cgi?id=2614
Summary: dirname for server_dir should include dev# as well as inode# Product: Wine Version: 20041201 Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: trivial Priority: P2 Component: wine-kernel AssignedTo: wine-bugs@winehq.org ReportedBy: rho@swiftdsl.com.au
The directory name for the winserver socket is supposed to be of the form
/tmp/.wine-uuuu/server-dddd-iiii
where uuu is uid and dddd and iiii are the device and inode number of the $WINEPREFIX directory.
The existing code in libs/wine/config.c *almost* gets it right; however it overwrites the dev# part of the generated dirname with the inode# (instead of appending). Thus generating
/tmp/.wine-uuu/server-iiii
Not likely to me a major problem, but easilly fixed.