[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

ossy at webkit.org ossy at webkit.org
Wed Dec 22 12:09:57 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e7afbc95d27b73bb572bfe2f89060da612e17317
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 16 16:29:59 2010 +0000

    Fix warning in WebCore/plugins/win/PluginPackageWin.cpp
    https://bugs.webkit.org/show_bug.cgi?id=43920
    
    Reviewed by Adam Roben.
    
    * plugins/win/PluginPackageWin.cpp:
    (WebCore::PluginPackage::fetchInfo):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65432 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b9e982c..dc16104 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-16  Csaba Osztrogonác  <ossy at webkit.org>
+
+        Reviewed by Adam Roben.
+
+        Fix warning in WebCore/plugins/win/PluginPackageWin.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=43920
+
+        * plugins/win/PluginPackageWin.cpp:
+        (WebCore::PluginPackage::fetchInfo):
+
 2010-08-16  Pavel Feldman  <pfeldman at chromium.org>
 
         Not reviewed. Touch inspector file to force frontend deployment.
diff --git a/WebCore/plugins/win/PluginPackageWin.cpp b/WebCore/plugins/win/PluginPackageWin.cpp
index 80dea93..f3dd781 100644
--- a/WebCore/plugins/win/PluginPackageWin.cpp
+++ b/WebCore/plugins/win/PluginPackageWin.cpp
@@ -181,7 +181,7 @@ bool PluginPackage::fetchInfo()
 
     VS_FIXEDFILEINFO* info;
     UINT infoSize;
-    if (!VerQueryValue(versionInfoData.get(), TEXT("\\"), (LPVOID*) &info, &infoSize) || infoSize < sizeof(VS_FIXEDFILEINFO))
+    if (!VerQueryValueW(versionInfoData.get(), L"\\", (LPVOID*) &info, &infoSize) || infoSize < sizeof(VS_FIXEDFILEINFO))
         return false;
     m_moduleVersion.leastSig = info->dwFileVersionLS;
     m_moduleVersion.mostSig = info->dwFileVersionMS;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list