[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 07:17:28 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 3aa0d5f358b0b2daf2e5b4af2d286327c30310c9
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 27 06:40:08 2002 +0000

    WebFoundation:
    
            Reviewed by Don.
    
            * Misc.subproj/WebAssertions.h: Fixed CRASH macro to use 0xbbadbeef instead of 0xbadbeef
    	to reduce the chance that the address will be valid once we have allocated a lot of memory.
    
    WebCore:
    
            Reviewed by Don.
    
            * kwq/KWQAssertions.h: Fixed CRASH macro to use 0xbbadbeef instead of 0xbadbeef
    	to reduce the chance that the address will be valid once we have allocated a lot of memory.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3189 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 741e25d..8017596 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-12-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by Don.
+
+        * kwq/KWQAssertions.h: Fixed CRASH macro to use 0xbbadbeef instead of 0xbadbeef
+	to reduce the chance that the address will be valid once we have allocated a lot of memory.
+
 2002-12-24  Richard Williamson   <rjw at apple.com>
 
         Fix for 3134543 (and widely reported dupes).  Don't use render_text
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 741e25d..8017596 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-12-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by Don.
+
+        * kwq/KWQAssertions.h: Fixed CRASH macro to use 0xbbadbeef instead of 0xbadbeef
+	to reduce the chance that the address will be valid once we have allocated a lot of memory.
+
 2002-12-24  Richard Williamson   <rjw at apple.com>
 
         Fix for 3134543 (and widely reported dupes).  Don't use render_text
diff --git a/WebCore/kwq/KWQAssertions.h b/WebCore/kwq/KWQAssertions.h
index 61bc643..497e18c 100644
--- a/WebCore/kwq/KWQAssertions.h
+++ b/WebCore/kwq/KWQAssertions.h
@@ -80,7 +80,7 @@ void KWQLog(const char *file, int line, const char *function, KWQLogChannel *cha
 
 // CRASH -- gets us into the debugger or the crash reporter -- signals are ignored by the crash reporter so we must do better
 
-#define CRASH() *(int *)0x0badbeef = 0
+#define CRASH() *(int *)0xbbadbeef = 0
 
 // ASSERT, ASSERT_WITH_MESSAGE, ASSERT_NOT_REACHED
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list