Correct a Q_CHECK_PTR()'s parameter
Someone cut-and-pasted but forgot one of the changes. Change-Id: I647dc8117ebfe8ce3d4b26d468b80c15d4e533e8 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>bb10
parent
a160fd52a1
commit
8ee65cd1f2
|
|
@ -880,7 +880,7 @@ inline void QXmlStreamReaderPrivate::reallocateStack()
|
|||
sym_stack = reinterpret_cast<Value*> (realloc(sym_stack, stack_size * sizeof(Value)));
|
||||
Q_CHECK_PTR(sym_stack);
|
||||
state_stack = reinterpret_cast<int*> (realloc(state_stack, stack_size * sizeof(int)));
|
||||
Q_CHECK_PTR(sym_stack);
|
||||
Q_CHECK_PTR(state_stack);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue