Title: [245933] branches/safari-607-branch/Source/_javascript_Core
Revision
245933
Author
[email protected]
Date
2019-05-30 17:30:35 -0700 (Thu, 30 May 2019)

Log Message

Cherry-pick r245593. rdar://problem/51264876

    Unreviewed, add mistakenly ommited initializer.

    * runtime/RegExpInlines.h:

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

Modified Paths

Diff

Modified: branches/safari-607-branch/Source/_javascript_Core/ChangeLog (245932 => 245933)


--- branches/safari-607-branch/Source/_javascript_Core/ChangeLog	2019-05-31 00:30:32 UTC (rev 245932)
+++ branches/safari-607-branch/Source/_javascript_Core/ChangeLog	2019-05-31 00:30:35 UTC (rev 245933)
@@ -1,5 +1,21 @@
 2019-05-30  Kocsen Chung  <[email protected]>
 
+        Cherry-pick r245593. rdar://problem/51264876
+
+    Unreviewed, add mistakenly ommited initializer.
+    
+    * runtime/RegExpInlines.h:
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245593 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-05-21  Keith Miller  <[email protected]>
+
+            Unreviewed, add mistakenly ommited initializer.
+
+            * runtime/RegExpInlines.h:
+
+2019-05-30  Kocsen Chung  <[email protected]>
+
         Cherry-pick r245588. rdar://problem/51264876
 
     Unreviewed build fix add UNUSED_PARAM.

Modified: branches/safari-607-branch/Source/_javascript_Core/runtime/RegExpInlines.h (245932 => 245933)


--- branches/safari-607-branch/Source/_javascript_Core/runtime/RegExpInlines.h	2019-05-31 00:30:32 UTC (rev 245932)
+++ branches/safari-607-branch/Source/_javascript_Core/runtime/RegExpInlines.h	2019-05-31 00:30:35 UTC (rev 245933)
@@ -114,7 +114,7 @@
 
 private:
     VM& m_vm;
-    void* m_buffer;
+    void* m_buffer { nullptr };
 };
 
 ALWAYS_INLINE void RegExp::compileIfNecessary(VM& vm, Yarr::YarrCharSize charSize)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to