http://bugs.winehq.org/show_bug.cgi?id=14867
Summary: TrackMouseEvent thinko / valgrind warning?
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
An app I'm looking at is doing
TRACKMOUSEEVENT tme;
tme.cbSize = sizeof(TRACKMOUSEEVENT);
tme.dwFlags = TME_LEAVE;
tme.hwndTrack = my_hWnd;
TrackMouseEvent(&tme);
which causes the following valgrind complaint:
Conditional jump or move depends on uninitialised value(s)
at TrackMouseEvent (input.c:1043)
by MyTrackMouseLeave (in app)
...
Uninitialised value was created by a stack allocation
at MyTrackMouseLeave (in app)
Looking at git blame user32/input.c, I see line 1043 is the if:
hover_time = ptme->dwHoverTime;
if (hover_time == HOVER_DEFAULT || hover_time == 0 ||
!(ptme->dwHoverTime&TME_HOVER))
Squinting at that a bit, it get the feeling the bitmask check is a typo;
shouldn't that be dwFlags, not dwHoverTime?
Also, if TME_HOVER is not set, we probably shouldn't
be looking at dwHoverTime, right?
FWIW, that bitmask check was added by
http://www.winehq.org/pipermail/wine-patches/2006-October/031794.html
Incidentally, while playing around, I noticed that the test
crashes if you get too many events. I'll attach a little patch to
fail more gracefully.
--
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=10502
Summary: Zoundry Blogwriter crashes on startup
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.zoundry.com/
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://justanystuff.blogspot.com/2007/11/running-zoundry-blog-editor-under-…
says that Zoundry BlogWriter runs ok in Wine iff you have IE6
installed, crashes otherwise. I verified that it crashes on vanilla wine
without IE6.
The +relay log looks like it's checking gecko
for a bunch of properties, e.g. browser.visited_color,
image.animation_mode, bidi., unloads gecko when
it can't find them, and then crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10000
Summary: The original win32 api is still more popular then wine.
Product: Wine
Version: 0.9.46.
Platform: Other
URL: http://www.winehq.org
OS/Version: other
Status: NEW
Severity: critical
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: M.B.Lankhorst(a)gmail.com
Microsoft has a majority market share in the new desktop PC marketplace. A lot
of software depends on the win32 api, so wine should eventually have to be the
most popular implementation of it.
This idea came from https://bugs.launchpad.net/ubuntu/+bug/1 ;-)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12732
Summary: Nota Bene crashes on install
Product: Wine
Version: CVS/GIT
Platform: PC
URL: https://www.notabene.com/download/demos/nbdemo80.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, win16
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Testing for bug 11023 I found that nota bene will no longer install. I'll start
the regression test...
--
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=19661
Summary: Lotus Approach 3.1 causes a page fault on load
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: win16
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=22944)
--> (http://bugs.winehq.org/attachment.cgi?id=22944)
Wine 1.1.27 console output
Lotus Approach 3.1 causes a page fault on loading and has to be killed.
--
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=15679
Summary: cygwin symlinks not working in wine
Product: Wine
Version: 1.1.6
Platform: Other
URL: http://cygwin.com
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Surprisingly, cygwin seems to work nowadays,
as long as you do everything inside a wineconsole
running cygwin.bat. (Perhaps cygwin apps should
work outside wineconsole; that would be a separate
bug report.)
However, cygwin's gcc doesn't work unless you
replace certain cygwin symlinks with unix ones, e.g.
$ cd .wine/drive_c/cygwin/usr/i686-pc-cygwin/bin
$ for a in *; do ln -sf ../../../bin/$a; done
Likewise, /bin/vi doesn't work, as it's a symlink to vim.exe.
In fact, cygwin's ls -l doesn't even recognize cygwin's symlinks as such:
$ ls -l vi
-rw-r--r-- 1 dank mkpasswd 18 Oct 19 05:53 vi
$ cat vi
!<symlink>vim.exe
So either they're not being created right, or they're
not being recognized properly by cygwin for some reason,
or both.
--
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=11846
Summary: tablet pressure sensitivity not working in Sai and many
other key graphic applications
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wintab32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: blurymind(a)gmail.com
tablet pressure sensitivity still not working on crucial graphic software that
is made to be used with tablets.
I am not sure if thats due wintab32,because im not a developer.
Applications like SAI that are wonderfully small ,full featured and even better
than photoshop for CG coloring (better brushes,other key features) work almost
perfectly fine on wine, but their practically useless when tablet pressure
doesnt work..
http://appdb.winehq.org/objectManager.php?sClass=version&iId=11044
another application that is a freeware and a fine substitute for painter is
http://appdb.winehq.org/objectManager.php?sClass=version&iId=7425&iTestingI…
tablet pressure works on photoshop and artrage,but not on many other key
applications in the graphic world that crucially depend on it. This feature is
very important,since there are absolutely no alternatives to these applications
on linux (if you study their key features you'll see there arent any on windows
too at the moment,especially Sai). The applications work almost perfectly on
wine,but that lack of this feature stops people from taking advantage of that.
Another application is Open Canvas...
But especially Sai- If there is any hack or workaround to get pressure
sensitivity working on sai, even a patch..i would gladly test it and report any
progress on Sai on wine.
--
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=10206
Summary: Crysis has huge graphical errors on certain systems
Product: Wine
Version: 0.9.48.
Platform: PC
URL: http://www.fileplanet.com/168866/160000/fileinfo/Crysis-
Demo-(Singleplayer)
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: l_bratch(a)yahoo.co.uk
Created an attachment (id=8816)
--> (http://bugs.winehq.org/attachment.cgi?id=8816)
Screenshot from the start of the game
Crysis fails to render properly at all for me (see attachment), whereas on
other systems, such as this user's (screenshot from the same section):
http://appdb.winehq.org/appimage.php?iId=14046
It looks fairly good.
The only difference is that that user is running a Geforce 8600 GT and I am
running a 7900 GTX. Same Wine version and settings, and same driver version.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.