Fix a compiler warning.

Fix a compiler warning in chunk_record() that was due to reading node
rather than xnode.  In practice this did not cause any correctness
issue, but dataflow analysis in some compilers cannot tell that node and
xnode are always equal in cases that the read is reached.
This commit is contained in:
Jason Evans 2013-10-20 15:11:01 -07:00
parent 7b65180b32
commit d504477935

View File

@ -294,7 +294,7 @@ label_return:
if (xnode != NULL)
base_node_dealloc(xnode);
if (xprev != NULL)
base_node_dealloc(prev);
base_node_dealloc(xprev);
}
void