Module: wine
Branch: master
Commit: 2f9e8a901cebf0c6c3c74e61c385322bfa7e212d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=2f9e8a901cebf0c6c3c74e61c…
Author: Alexander Dorofeyev <alexd4(a)inbox.lv>
Date: Mon Apr 7 00:05:42 2008 +0300
wined3d: Don't copy the extra line.
biSizeImage has an extra line added to it, and passing it to memcpy can cause a
crash.
---
dlls/wined3d/surface_base.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/…
[View More]wined3d/surface_base.c b/dlls/wined3d/surface_base.c
index 9b7f100..7f689e2 100644
--- a/dlls/wined3d/surface_base.c
+++ b/dlls/wined3d/surface_base.c
@@ -545,7 +545,7 @@ HRESULT IWineD3DBaseSurfaceImpl_CreateDIBSection(IWineD3DSurface *iface) {
TRACE("DIBSection at : %p\n", This->dib.bitmap_data);
/* copy the existing surface to the dib section */
if(This->resource.allocatedMemory) {
- memcpy(This->dib.bitmap_data, This->resource.allocatedMemory, b_info->bmiHeader.biSizeImage);
+ memcpy(This->dib.bitmap_data, This->resource.allocatedMemory, This->currentDesc.Height * IWineD3DSurface_GetPitch(iface));
} else {
/* This is to make LockRect read the gl Texture although memory is allocated */
This->Flags &= ~SFLAG_INSYSMEM;
[View Less]
Module: website
Branch: master
Commit: 0f5a96951700cb243e3e2c8a3aa97dce9330b22c
URL: http://source.winehq.org/git/website.git/?a=commit;h=0f5a96951700cb243e3e2c…
Author: Marcus Meissner <marcus(a)jet.franken.de>
Date: Sun Apr 6 19:36:03 2008 +0200
adjusted my entry in who
---
templates/en/who.template | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/templates/en/who.template b/templates/en/who.template
index 76cb502..70fe288 100644
--- a/…
[View More]templates/en/who.template
+++ b/templates/en/who.template
@@ -347,8 +347,8 @@ Please email additions, corrections, and flames to
<h3>Marcus Meissner</h3><blockquote>
<table border="0"><tr>
- <td width="300"><b>Location:</b> Erlangen, Germany<br /></td>
- <td><b>IRC Nick:</b> _marcus_</td></tr>
+ <td width="300"><b>Location:</b> Nürnberg, Germany<br /></td>
+ <td><b>IRC Nick:</b> _Marcus_</td></tr>
<tr><td>
<b>Email:</b> marcus -at- jet dot franken dot de </td>
<td><b>Interview:</b> <a href="http://www.winehq.org/?interview=3">#3</a></td></tr></table>
@@ -357,14 +357,15 @@ Please email additions, corrections, and flames to
of patches and bugfixes. He is personally to blame for the first
revisions of reading and saving the Registry, starting the DirectX
implementation, doing the second OLE out of process COM support
- implementation, and more.
+ implementation, and more. In these times he is taking care that
+ the SUSE Wine RPMs get build and some small bug fixes.
</p><p>
Marcus studied computer science at the University of Erlangen and
graduated in 1997. After doing civil duty, he started
working as Senior Developer for Caldera Systems in 1999, working on
distribution development. After Caldera closed its development office
- in 2002 he started and is now working for the SuSE Linux AG as a
- Developer in the PowerPC group.
+ in 2002 he started and is now working for the SUSE Linux Products GmbH as a
+ Teamlead of the Security Team.
</p></blockquote>
<h3>Andreas Mohr</h3><blockquote>
[View Less]