Fixed a small memory leak I found with valgrind

This commit is contained in:
smly 2011-10-18 20:18:26 +09:00
parent 76e772f39a
commit 046f70f758

View File

@ -600,6 +600,7 @@ void process() {
/* advance position */ /* advance position */
positions[0] = positions[1]; positions[0] = positions[1];
} }
free(entry.key);
} }
/* because there is another potential error, /* because there is another potential error,