Index: src/execution.cc |
=================================================================== |
--- src/execution.cc (revision 1572) |
+++ src/execution.cc (working copy) |
@@ -482,7 +482,8 @@ |
bool* exc) { |
if (data->property_list()->IsUndefined() && |
!data->constructor()->IsUndefined()) { |
- Object* result; |
+ // Initialization to make gcc happy. |
+ Object* result = 0; |
Søren Thygesen Gjesse
2009/03/23 10:50:36
0 -> NULL.
|
{ |
HandleScope scope; |
Handle<FunctionTemplateInfo> cons_template = |