Title: [181997] trunk/Source/_javascript_Core
Revision
181997
Author
[email protected]
Date
2015-03-25 21:50:28 -0700 (Wed, 25 Mar 2015)

Log Message

Unreviewed, try to fix Windows build.

* runtime/ClonedArguments.cpp:
(JSC::ClonedArguments::createWithInlineFrame):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (181996 => 181997)


--- trunk/Source/_javascript_Core/ChangeLog	2015-03-26 04:37:35 UTC (rev 181996)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-03-26 04:50:28 UTC (rev 181997)
@@ -1,5 +1,12 @@
 2015-03-25  Filip Pizlo  <[email protected]>
 
+        Unreviewed, try to fix Windows build.
+
+        * runtime/ClonedArguments.cpp:
+        (JSC::ClonedArguments::createWithInlineFrame):
+
+2015-03-25  Filip Pizlo  <[email protected]>
+
         Unreviewed, fix debug build.
 
         * bytecompiler/NodesCodegen.cpp:

Modified: trunk/Source/_javascript_Core/runtime/ClonedArguments.cpp (181996 => 181997)


--- trunk/Source/_javascript_Core/runtime/ClonedArguments.cpp	2015-03-26 04:37:35 UTC (rev 181996)
+++ trunk/Source/_javascript_Core/runtime/ClonedArguments.cpp	2015-03-26 04:50:28 UTC (rev 181997)
@@ -73,7 +73,7 @@
 
     ClonedArguments* result = createEmpty(myFrame, callee);
     
-    unsigned length;
+    unsigned length = 0; // Initialize because VC needs it.
     switch (mode) {
     case ArgumentsMode::Cloned: {
         if (inlineCallFrame) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to