[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

darin at apple.com darin at apple.com
Thu Feb 4 21:24:04 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 750d06a0bc279408a7835f9490156387fa633097
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 22 00:48:45 2010 +0000

    REGRESSION (r52795): New message created in response to mailto: URL has random character in message body
    rdar://problem/7565902
    
    Reviewed by Mark Rowe.
    
    This regression affects the Mac OS X Mail application.
    I was not able to find a simple way to create a regression test.
    
    * platform/cf/SharedBufferCF.cpp:
    (WebCore::SharedBuffer::SharedBuffer): Initialize m_size to 0 as in the other constructors.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53660 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 3a32a6a..f2618ae 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-01-21  Darin Adler  <darin at apple.com>
+
+        Reviewed by Mark Rowe.
+
+        REGRESSION (r52795): New message created in response to mailto: URL has random character in message body
+        rdar://problem/7565902
+
+        This regression affects the Mac OS X Mail application.
+        I was not able to find a simple way to create a regression test.
+
+        * platform/cf/SharedBufferCF.cpp:
+        (WebCore::SharedBuffer::SharedBuffer): Initialize m_size to 0 as in the other constructors.
+
 2010-01-21  Enrica Casucci  <enrica at apple.com>
 
         Reviewed by Darin Adler.
@@ -9936,7 +9949,7 @@
 
         Reviewed by Adam Roben.
 
-        Fix  build warnings blindly
+        Fix build warnings blindly
         https://bugs.webkit.org/show_bug.cgi?id=33178
 
         * platform/SharedBuffer.cpp:
diff --git a/WebCore/platform/cf/SharedBufferCF.cpp b/WebCore/platform/cf/SharedBufferCF.cpp
index da166c9..33e25ae 100644
--- a/WebCore/platform/cf/SharedBufferCF.cpp
+++ b/WebCore/platform/cf/SharedBufferCF.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2008, 2010 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -33,7 +33,8 @@
 namespace WebCore {
 
 SharedBuffer::SharedBuffer(CFDataRef cfData)
-    : m_cfData(cfData)
+    : m_size(0)
+    , m_cfData(cfData)
 {
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list