From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steve Grubb Subject: Re: [PATCH 1/5] Add the field checking for missing value after opration Date: Wed, 6 Aug 2008 15:19:11 -0400 Message-ID: <200808061519.12007.sgrubb@redhat.com> References: <48995CFA.5020302@cn.fujitsu.com> <489964E3.40702@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <489964E3.40702@cn.fujitsu.com> Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-audit-bounces@redhat.com Errors-To: linux-audit-bounces@redhat.com To: Zhang Xiliang Cc: Linux Audit List-Id: linux-audit@redhat.com On Wednesday 06 August 2008 04:46:27 Zhang Xiliang wrote: > Hello Steve, > > > if (v == NULL || f == v) > > return -1; > > I have some questions for "f == v". > > I think it only checks the address of "f" and "v". Yes, this was in attempt to make sure that they didn't type -F =10. In that case v will equal f because they start at the same address. -Steve