Revision: 17843
Author:   [email protected]
Date:     Mon Nov 18 15:27:14 2013 UTC
Log:      Fix build on arm/x64 after r17840.

[email protected]
BUG=v8:3013
LOG=N

Review URL: https://codereview.chromium.org/75353002
http://code.google.com/p/v8/source/detail?r=17843

Modified:
 /branches/bleeding_edge/src/v8conversions.h

=======================================
--- /branches/bleeding_edge/src/v8conversions.h Mon Nov 18 15:16:22 2013 UTC
+++ /branches/bleeding_edge/src/v8conversions.h Mon Nov 18 15:27:14 2013 UTC
@@ -84,7 +84,7 @@
 // Converts a number into size_t.
 inline size_t NumberToSize(Isolate* isolate,
                            Object* number) {
-  size_t result;
+  size_t result = 0;
   bool is_valid = TryNumberToSize(isolate, number, &result);
   CHECK(is_valid);
   return result;

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to