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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:57:18 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 683d3c029bb85dafa215a28c1cf03b900e7996c8
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 30 10:29:34 2010 +0000

    2010-09-30  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Andreas Kling.
    
            [BREWMP] Leave initializeRandomNumberGenerator empty.
            https://bugs.webkit.org/show_bug.cgi?id=46851
    
            On Brew MP, AEECLSID_RANDOM initializes itself.
    
            * wtf/RandomNumberSeed.h:
            (WTF::initializeRandomNumberGenerator):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68770 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index fd27ed4..547d2e5 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-30  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Andreas Kling.
+
+        [BREWMP] Leave initializeRandomNumberGenerator empty.
+        https://bugs.webkit.org/show_bug.cgi?id=46851
+
+        On Brew MP, AEECLSID_RANDOM initializes itself.
+
+        * wtf/RandomNumberSeed.h:
+        (WTF::initializeRandomNumberGenerator):
+
 2010-09-30  Gabor Loki  <loki at webkit.org>
 
         Reviewed by Csaba Osztrogonác.
diff --git a/JavaScriptCore/wtf/RandomNumberSeed.h b/JavaScriptCore/wtf/RandomNumberSeed.h
index ae414c0..1f1c00e 100644
--- a/JavaScriptCore/wtf/RandomNumberSeed.h
+++ b/JavaScriptCore/wtf/RandomNumberSeed.h
@@ -64,6 +64,8 @@ inline void initializeRandomNumberGenerator()
     init_by_array(initializationBuffer, 4);
 #elif COMPILER(MSVC) && defined(_CRT_RAND_S)
     // On Windows we use rand_s which initialises itself
+#elif PLATFORM(BREWMP)
+    // On Brew MP we use AEECLSID_RANDOM which initialises itself
 #elif OS(UNIX)
     // srandomdev is not guaranteed to exist on linux so we use this poor seed, this should be improved
     timeval time;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list