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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:05:48 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0767e110921ad674862d2f50d44f28e1186d1f62
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 27 06:38:19 2003 +0000

            * kwq/KWQLoader.mm: (KWQResponseMIMEType): Removed an excess volatile.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5273 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 25d32e0..83011c5 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,9 @@
 2003-10-26  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQLoader.mm: (KWQResponseMIMEType): Removed an excess volatile.
+
+2003-10-26  Darin Adler  <darin at apple.com>
+
         Reviewed by Maciej.
 
         - fixed 3463624 -- page at cinemakorea.com shows up blank due to kTECBufferBelowMinimumSizeErr from TEC
diff --git a/WebCore/kwq/KWQLoader.mm b/WebCore/kwq/KWQLoader.mm
index c6ef33f..40f8c8f 100644
--- a/WebCore/kwq/KWQLoader.mm
+++ b/WebCore/kwq/KWQLoader.mm
@@ -127,13 +127,13 @@ void KWQReleaseResponse(void *response)
 
 void *KWQResponseMIMEType(void *response)
 {
-    volatile void * volatile result = NULL;
+    void * volatile result = NULL;
 
     KWQ_BLOCK_NS_EXCEPTIONS;
     result = [(id)response MIMEType];
     KWQ_UNBLOCK_NS_EXCEPTIONS;
 
-    return (void *)result;
+    return result;
 }
 
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list