Title: [291665] branches/safari-613-branch/Source/bmalloc
Revision
291665
Author
alanc...@apple.com
Date
2022-03-22 10:56:40 -0700 (Tue, 22 Mar 2022)

Log Message

Cherry-pick r291199. rdar://problem/89984164

    Unreviewed, ASan specific build fix
    https://bugs.webkit.org/show_bug.cgi?id=237572

    * libpas/src/libpas/pas_utils.h:
    (pas_zero_memory):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@291199 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-613-branch/Source/bmalloc/ChangeLog (291664 => 291665)


--- branches/safari-613-branch/Source/bmalloc/ChangeLog	2022-03-22 17:56:37 UTC (rev 291664)
+++ branches/safari-613-branch/Source/bmalloc/ChangeLog	2022-03-22 17:56:40 UTC (rev 291665)
@@ -1,5 +1,25 @@
 2022-03-21  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r291199. rdar://problem/89984164
+
+    Unreviewed, ASan specific build fix
+    https://bugs.webkit.org/show_bug.cgi?id=237572
+    
+    * libpas/src/libpas/pas_utils.h:
+    (pas_zero_memory):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@291199 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2022-03-11  Yusuke Suzuki  <ysuz...@apple.com>
+
+            Unreviewed, ASan specific build fix
+            https://bugs.webkit.org/show_bug.cgi?id=237572
+
+            * libpas/src/libpas/pas_utils.h:
+            (pas_zero_memory):
+
+2022-03-21  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r291097. rdar://problem/89116983
 
     [libpas] We should gurantee that in-flux-stash is fully baked when pointing table is set

Modified: branches/safari-613-branch/Source/bmalloc/libpas/src/libpas/pas_utils.h (291664 => 291665)


--- branches/safari-613-branch/Source/bmalloc/libpas/src/libpas/pas_utils.h	2022-03-22 17:56:37 UTC (rev 291664)
+++ branches/safari-613-branch/Source/bmalloc/libpas/src/libpas/pas_utils.h	2022-03-22 17:56:40 UTC (rev 291665)
@@ -158,7 +158,7 @@
 #define PAS_TYPEOF(a) typeof (a)
 #endif
 
-PAS_ALWAYS_INLINE void pas_zero_memory(void* memory, size_t size)
+static PAS_ALWAYS_INLINE void pas_zero_memory(void* memory, size_t size)
 {
     memset(memory, 0, size);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to