From 7d3cebfb925d3c3b435c8fa868ad374c9b947450 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Fri, 27 May 2011 16:20:45 +0300 Subject: [PATCH] Eliminate dead NULL-assignments on parsePolicies() exit --- build/parsePolicies.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/parsePolicies.c b/build/parsePolicies.c index 2abc00c85..129541635 100644 --- a/build/parsePolicies.c +++ b/build/parsePolicies.c @@ -82,8 +82,8 @@ int parsePolicies(rpmSpec spec) res = nextPart; exit: - argv = _free(argv); - optCon = poptFreeContext(optCon); + free(argv); + poptFreeContext(optCon); return res; }