Title: [245593] trunk/Source/_javascript_Core
Revision
245593
Author
[email protected]
Date
2019-05-21 13:01:35 -0700 (Tue, 21 May 2019)

Log Message

Unreviewed, add mistakenly ommited initializer.

* runtime/RegExpInlines.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (245592 => 245593)


--- trunk/Source/_javascript_Core/ChangeLog	2019-05-21 19:59:26 UTC (rev 245592)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-05-21 20:01:35 UTC (rev 245593)
@@ -1,5 +1,11 @@
 2019-05-21  Keith Miller  <[email protected]>
 
+        Unreviewed, add mistakenly ommited initializer.
+
+        * runtime/RegExpInlines.h:
+
+2019-05-21  Keith Miller  <[email protected]>
+
         Unreviewed build fix add UNUSED_PARAM.
 
         * runtime/RegExpInlines.h:

Modified: trunk/Source/_javascript_Core/runtime/RegExpInlines.h (245592 => 245593)


--- trunk/Source/_javascript_Core/runtime/RegExpInlines.h	2019-05-21 19:59:26 UTC (rev 245592)
+++ trunk/Source/_javascript_Core/runtime/RegExpInlines.h	2019-05-21 20:01:35 UTC (rev 245593)
@@ -115,7 +115,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