fix uninitialized warning

The open source make spewed a warning about this. How does 0 sound?
Esse commit está contido em:
Paul Tarjan
2013-05-17 17:36:04 -07:00
commit de Sara Golemon
commit c4d32bde0f
+1 -1
Ver Arquivo
@@ -5927,7 +5927,7 @@ void EmitterVisitor::emitFuncCall(Emitter& e, FunctionCallPtr node) {
int numParams = params ? params->getCount() : 0;
bool useFCallBuiltin = false;
StringData* nLiteral = nullptr;
Offset fpiStart;
Offset fpiStart = 0;
if (node->getClass() || !node->getClassName().empty()) {
bool isSelfOrParent = node->isSelf() || node->isParent();
if (!node->isStatic() && !isSelfOrParent &&