http://bugs.winehq.org/show_bug.cgi?id=10256
Summary: Navigation : strange results when drawing vectors
Product: Wine
Version: 0.9.44.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laurent(a)vromman.org
Created an attachment (id=8883)
--> (http://bugs.winehq.org/attachment.cgi?id=8883)
Draw result under wine
Navigation (see AppDB) has the capability to draw some vector data : roads,
railways, rivers.
Using wine, those vectors have strange shapes, what makes the application
unusable (vectors are an important part of the software).
Take a look at the attachment to see the draw result in wine
--
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=8699
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #5 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:20 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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=5444
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #9 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:18 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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=6961
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #8 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:18 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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=2971
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #8 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:17 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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=10881
Summary: with valgrind 3.3.0, ntdll compile fails with undefined
reference to `VALGRIND_MAKE_WRITABLE'
Product: Wine
Version: 0.9.51.
Platform: Other
URL: http://bugs.gentoo.org/show_bug.cgi?id=202542
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daniel.santos(a)pobox.com
Valgrind removed some depreciated macros. Complete bug report with patch
available here: http://bugs.gentoo.org/show_bug.cgi?id=202542. Interim
solution is to either patch ./dlls/ntdll/signal_i386.c and ./dlls/ntdll/heap.c
or downgrade valgrind to < 3.3.0.
--
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=10657
Summary: Regression: GetAdaptersInfo no longer returning hardware
address.
Product: Wine
Version: 0.9.50.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gnb10(a)gnb10.uklinux.net
GetAdaptersInfo is failing to return the MAC address of eth0, which breaks
the licence checking on a piece of software I'm using. A bit of debugging shows
that getInterfacePhysicalByIndex is being called with 'len' set to zero, while
the code in getInterfacePhysicalByName expects len to be initialised to the
available buffer space for holding the address.
The change that caused it seems to have been the one in this commit:
http://www.winehq.org/pipermail/wine-cvs/2007-October/037001.html
which among other things removed the initialisation of the length passed in.
Certainly the trivial change
--- wine-0.9.50/dlls/iphlpapi/iphlpapi_main.c 2007-11-30 17:38:15.000000000
+0000
+++ wine-0.9.50.new/dlls/iphlpapi/iphlpapi_main.c 2007-12-03
13:41:12.000000000 +0000
@@ -735,6 +735,7 @@
/* on Win98 this is left empty, but whatever */
getInterfaceNameByIndex(table->indexes[ndx], ptr->AdapterName);
+ ptr->AddressLength = sizeof(ptr->Address);
getInterfacePhysicalByIndex(table->indexes[ndx],
&ptr->AddressLength, ptr->Address, &ptr->Type);
ptr->Index = table->indexes[ndx];
makes the application I'm using work again, but I'm not familiar enough with
wine internals to know whether this is the right place for it, or whether it
should already have been initialised elsewhere.
--
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=5312
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #12 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:17 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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=6551
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #15 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:16 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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=8617
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #6 from Dan Kegel <dank(a)kegel.com> 2008-01-28 05:42:13 ---
Closing all RESOLVED FIXED bugs older than four weeks.
--
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.