[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:35:59 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit ecc7025567b773576fd17abe5cd6db8ff704f60b
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 29 16:10:02 2009 +0000

    2009-09-29  Janne Koskinen  <janne.p.koskinen at digia.com>
    
            Reviewed by David Kilzer.
    
            [Qt] Assert messages prints visible in Symbian
            https://bugs.webkit.org/show_bug.cgi?id=29808
    
            Asserts use vprintf to print the messages to stderr.
            In Symbian Open C it is not possible to see stderr so
            I routed the messages to stdout instead.
    
            * wtf/Assertions.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48878 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 940ab59..7b6055f 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,18 @@
 2009-09-29  Janne Koskinen  <janne.p.koskinen at digia.com>
 
+        Reviewed by David Kilzer.
+
+        [Qt] Assert messages prints visible in Symbian
+        https://bugs.webkit.org/show_bug.cgi?id=29808
+
+        Asserts use vprintf to print the messages to stderr.
+        In Symbian Open C it is not possible to see stderr so
+        I routed the messages to stdout instead.
+
+        * wtf/Assertions.cpp:
+
+2009-09-29  Janne Koskinen  <janne.p.koskinen at digia.com>
+
         Reviewed by Darin Adler.
 
         [Qt] Symbian CRASH macro implementation
diff --git a/JavaScriptCore/wtf/Assertions.cpp b/JavaScriptCore/wtf/Assertions.cpp
index 819ed9a..6c5e2e3 100644
--- a/JavaScriptCore/wtf/Assertions.cpp
+++ b/JavaScriptCore/wtf/Assertions.cpp
@@ -105,7 +105,11 @@ static void vprintf_stderr_common(const char* format, va_list args)
         } while (size > 1024);
     }
 #endif
+#if PLATFORM(SYMBIAN)
+    vfprintf(stdout, format, args);
+#else
     vfprintf(stderr, format, args);
+#endif
 }
 
 WTF_ATTRIBUTE_PRINTF(1, 2)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list