http://bugs.winehq.org/show_bug.cgi?id=27348
Summary: _snprintf overflows specified bounds
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ak.miller(a)auckland.ac.nz
Created an attachment (id=34972)
--> (http://bugs.winehq.org/attachment.cgi?id=34972)
A simple program which crashes Wine but works on Windows.
The Wine MSVCRT _snprintf implementation is wrong; the simple test program to
be attached shortly is correct according to the docs from Microsoft, and works
fine on Windows, but under Wine (checked out recently from git), it crashes due
to heap corruption.
--
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=20286
Summary: minimap problem
Product: WineHQ Apps Database
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mischenko.mm(a)gmail.com
CC: mischenko.mm(a)gmail.com
when minimap is activeted in the game, main window of game becomes black. Looks
like all game render takes only minimap window. There is no possibility to look
at minimap and gameplay at the same time.
--
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=24433
Summary: MS-Word complains "Do you want to revert to the saved
'<filename>' ?" at opening files
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jan-winehq(a)h-i-s.nl
Around wine-1.1, MS-Word started to yield an annoying pop-up at opening files.
It reads "Do you want to revert to the saved '<filename>' ?"
Apparently either flags, or time/dates in the file system convince word that
immediately after opening a file the file in the directory is NEWER than the
just opened one.
My current wine is:
wine-1.3.1-368-g2c08a3f
--
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=15713
Summary: widl generates incorrect format string for top level
conformance
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: huw(a)codeweavers.com
CC: robertshearman(a)gmail.com, dsh(a)linux.ucla.edu
See, for example, the type format string for ept_insert()'s 'entries' parameter
in dlls/rpcrt4/epm_c.c . The size of this array is the 'num_ents' parameter,
so the offset in the conformace discription should be 4 not 0 (which is
currently hardcoded). Also the lower nibble of the type byte should be
FC_ULONG rather than 0.
--
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=16332
Summary: crash in file dialog if the previous selected folder is
deleted
Product: Wine
Version: 1.1.9
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
To reproduce:
1. mkdir /tmp/foo; touch /tmp/foo/bar.txt
2. run notepad
3. file -> open, navigate to z:\tmp\foo, open bar.txt
4. rm -Rf /tmp/foo
5. file -> open causes a stack overflow due to infinite recursion in
FILEDLG95_LOOKIN_InsertItemAfterParent(), with pidl = NULL.
--
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=18326
Summary: Pharaoh/Cleopatra doesn't recognize CD-ROM drive
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: monolitonegro(a)gmail.com
Pharaoh plus Cleopatra expansion pack doesn't recognize the /media/cdrom as the
D: drive, thus it keep asking for the game cd. Maybe it could be a copy
protection problem. The only way to work around is to download a No-CD patch
for it. The following patch works fine for me with the english copy of the
game:
http://m0001.gamecopyworld.com/games/pc_pharaoh.shtml#Kleopatra%20v1.0%20[G…
How to reproduce: Install the Pharaoh, install the Cleopatra expansion, mount
or put the game cd in the CD-Rom drive and try to run the game.
--
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=26885
Summary: del /s crashes if it encounters a directory containing
a space
Product: Wine
Version: 1.3.18
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The following little batch file crashes cmd:
mkdir "foo bar"
cd "foo bar"
echo hi > hi.dat
cd ..
del /s hi.dat
cd "foo bar"
if exist hi.dat echo Del /s failed
if exist hi.dat del hi.dat
cd ..
rmdir "foo bar"
It's hard to fix because WCMD_delete() is complex, and when
it recurses, it smashes stuff into a new commandline without
quoting.
(dir /s doesn't seem to have the same problem?)
--
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=22964
Summary: Launching Deus-Ex game from Steam no longer works
Product: Wine
Version: 1.2-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: drewpvogel(a)gmail.com
Created an attachment (id=28441)
--> (http://bugs.winehq.org/attachment.cgi?id=28441)
Paste of errors in terminal window
I used to be able to run the game Deus-Ex from Steam. That was on 1.0.1 (Debian
testing distribution). I upgraded to 1.2-rc2 and now when I launch the game
from Steam I get a series of errors in the terminal window from which I started
Steam (see attached).
--
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=27342
Summary: Iexplore can't open url regression
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Example:
wine iexplore http://huuto.net
Nothing..
Regression test says:
dd61ebe6cf93f6d6ea270f64793a1348b3ce44d0 is the first bad commit
commit dd61ebe6cf93f6d6ea270f64793a1348b3ce44d0
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Thu May 26 13:34:11 2011 +0200
urlmon: Avoid multiple InternetQueryDataAvailable calls in pending state.
:040000 040000 d394ab2dfa82cd67aae4e412fba4a6ad62084517
b657ae52fdbef8763e6ee1013b8be99cca1110fa M dlls
--
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=24686
Summary: Kleptocracy crashes without d3dx9_28.dll
Product: Wine
Version: 1.3.4
Platform: x86
URL: http://www.sheeparcade.com/resources/free/download/kle
ptocracy.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
CC: wine-bugs(a)winehq.org
I've tried without d3dx9_28.dll, with d3dx9_36.dll and with d3dx9_28.dll but
only with d3dx9_28.dll did it not crash.
--
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.