[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:36:58 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a7011336081e16fe9e9c03f8f44b7d713944db98
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 7 01:04:22 2002 +0000

    	Fix optimized build:
    
            * kwq/KWQString.mm:
            (QString::detachInternal): Uselessly Initialize newData to NULL
    	since the compiler can't tell that FATAL won't return.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1991 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 21b43c1..f4dcb9c 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-09-06  Maciej Stachowiak  <mjs at apple.com>
+
+	Fix optimized build:
+	
+        * kwq/KWQString.mm:
+        (QString::detachInternal): Uselessly Initialize newData to NULL
+	since the compiler can't tell that FATAL won't return.
+
 2002-09-06  Darin Adler  <darin at apple.com>
 
         * kwq/WebCoreResourceLoader.h:
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 21b43c1..f4dcb9c 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-09-06  Maciej Stachowiak  <mjs at apple.com>
+
+	Fix optimized build:
+	
+        * kwq/KWQString.mm:
+        (QString::detachInternal): Uselessly Initialize newData to NULL
+	since the compiler can't tell that FATAL won't return.
+
 2002-09-06  Darin Adler  <darin at apple.com>
 
         * kwq/WebCoreResourceLoader.h:
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 21b43c1..f4dcb9c 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2002-09-06  Maciej Stachowiak  <mjs at apple.com>
+
+	Fix optimized build:
+	
+        * kwq/KWQString.mm:
+        (QString::detachInternal): Uselessly Initialize newData to NULL
+	since the compiler can't tell that FATAL won't return.
+
 2002-09-06  Darin Adler  <darin at apple.com>
 
         * kwq/WebCoreResourceLoader.h:
diff --git a/WebCore/kwq/KWQString.mm b/WebCore/kwq/KWQString.mm
index ba0e051..234b289 100644
--- a/WebCore/kwq/KWQString.mm
+++ b/WebCore/kwq/KWQString.mm
@@ -2193,7 +2193,7 @@ void QString::detachInternal()
     QStringData *oldData = *dataHandle;
     
     if (oldData->refCount > 1 && oldData == &internalData) {
-        QStringData *newData;
+        QStringData *newData = NULL;
         if (oldData->_isAsciiValid)
             newData = new QStringData (oldData->ascii(), oldData->_length);
         else if (oldData->_isUnicodeValid){

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list