[pkg-wine-party] [SCM] Debian Wine packaging branch, lenny, updated. wine-1.0.0-1-126-gccc5cbd

Alexandre Julliard julliard at winehq.org
Thu Oct 30 14:45:02 UTC 2008


The following commit has been merged in the lenny branch:
commit ffa493e780c4a7a3dbf9398e46ca28289b535894
Author: Lei Zhang <thestig at google.com>
Date:   Mon Oct 13 14:29:32 2008 -0700

    version: Prevent infinite looping in VersionInfo32_FindChild.
    (cherry picked from commit 69871bedf1d787f25fe31df6075bf168d871cc3b)

diff --git a/dlls/version/info.c b/dlls/version/info.c
index 395895b..51e25b3 100644
--- a/dlls/version/info.c
+++ b/dlls/version/info.c
@@ -664,6 +664,7 @@ static const VS_VERSION_INFO_STRUCT32 *VersionInfo32_FindChild( const VS_VERSION
         if (!strncmpiW( child->szKey, szKey, cbKey ) && !child->szKey[cbKey])
             return child;
 
+        if (!(child->wLength)) return NULL;
         child = VersionInfo32_Next( child );
     }
 

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list