[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:04:00 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit b1d0ad25f2c238d522c30aa00ebf8d5920a4bba0
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Apr 9 00:14:40 2002 +0000

    	* src/kwq/KWQKURL.mm: (KURL::KWQKURLPrivate::KWQKURLPrivate):
    	Initialize refCount to 0 in the copy constructor.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@989 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 943cd0e..1bb8175 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,8 @@
+2002-04-08  Maciej Stachowiak  <mjs at apple.com>
+
+	* src/kwq/KWQKURL.mm: (KURL::KWQKURLPrivate::KWQKURLPrivate):
+	Initialize refCount to 0 in the copy constructor.
+
 2002-04-08  Chris Blumenberg  <cblu at apple.com>
 
 	* src/kwq/KWQKHTMLPart.mm: (KHTMLPart::requestObject):
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 943cd0e..1bb8175 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,8 @@
+2002-04-08  Maciej Stachowiak  <mjs at apple.com>
+
+	* src/kwq/KWQKURL.mm: (KURL::KWQKURLPrivate::KWQKURLPrivate):
+	Initialize refCount to 0 in the copy constructor.
+
 2002-04-08  Chris Blumenberg  <cblu at apple.com>
 
 	* src/kwq/KWQKHTMLPart.mm: (KHTMLPart::requestObject):
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 943cd0e..1bb8175 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,8 @@
+2002-04-08  Maciej Stachowiak  <mjs at apple.com>
+
+	* src/kwq/KWQKURL.mm: (KURL::KWQKURLPrivate::KWQKURLPrivate):
+	Initialize refCount to 0 in the copy constructor.
+
 2002-04-08  Chris Blumenberg  <cblu at apple.com>
 
 	* src/kwq/KWQKHTMLPart.mm: (KHTMLPart::requestObject):
diff --git a/WebCore/kwq/KWQKURL.mm b/WebCore/kwq/KWQKURL.mm
index 3ab3b74..2b6255e 100644
--- a/WebCore/kwq/KWQKURL.mm
+++ b/WebCore/kwq/KWQKURL.mm
@@ -81,7 +81,8 @@ KURL::KWQKURLPrivate::KWQKURLPrivate(const KWQKURLPrivate &other) :
     sQuery(other.sQuery),   
     sPath(other.sPath),   
     escapedPath(other.escapedPath),   
-    addedSlash(other.addedSlash)
+    addedSlash(other.addedSlash),
+    refCount(0)
 {
 }
 
diff --git a/WebCore/src/kwq/KWQKURL.mm b/WebCore/src/kwq/KWQKURL.mm
index 3ab3b74..2b6255e 100644
--- a/WebCore/src/kwq/KWQKURL.mm
+++ b/WebCore/src/kwq/KWQKURL.mm
@@ -81,7 +81,8 @@ KURL::KWQKURLPrivate::KWQKURLPrivate(const KWQKURLPrivate &other) :
     sQuery(other.sQuery),   
     sPath(other.sPath),   
     escapedPath(other.escapedPath),   
-    addedSlash(other.addedSlash)
+    addedSlash(other.addedSlash),
+    refCount(0)
 {
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list