From 94f97b93e88b2000ae05ae19c5c85ec7a39aa080 Mon Sep 17 00:00:00 2001 From: Teddy Reed Date: Mon, 9 Feb 2015 14:04:39 -0800 Subject: [PATCH] Fix symbol rename regression in processes --- osquery/tables/system/linux/processes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osquery/tables/system/linux/processes.cpp b/osquery/tables/system/linux/processes.cpp index 5298c0b3..8c97a056 100644 --- a/osquery/tables/system/linux/processes.cpp +++ b/osquery/tables/system/linux/processes.cpp @@ -171,7 +171,7 @@ QueryData genProcesses(QueryContext& context) { while ((proc_info = readproc(proc, NULL))) { if (!context.constraints["pid"].matches(proc_info->tid)) { // Optimize by not searching when a pid is a constraint. - standard_freeproc(proc_info); + standardFreeproc(proc_info); continue; }