Fix symbol rename regression in processes

This commit is contained in:
Teddy Reed 2015-02-09 14:04:39 -08:00
parent 6cc9fa4c3e
commit 94f97b93e8

View File

@ -171,7 +171,7 @@ QueryData genProcesses(QueryContext& context) {
while ((proc_info = readproc(proc, NULL))) {
if (!context.constraints["pid"].matches<int>(proc_info->tid)) {
// Optimize by not searching when a pid is a constraint.
standard_freeproc(proc_info);
standardFreeproc(proc_info);
continue;
}