[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1162404964.9524.524.camel@lnx-dfults.americas.sgi.com>
Date: Wed, 01 Nov 2006 12:16:04 -0600
From: Derek Fults <dfults@....com>
To: Randy Dunlap <randy.dunlap@...cle.com>
Cc: linux-kernel@...r.kernel.org, Andi Kleen <ak@...e.de>
Subject: Re: [PATCH] Add get_range, allows a hyhpenated range to get_options
> How does get_range() handle errors, like input of
> 64-60
> or 64-N
> or 64-
> ?
>
get_range will return a negative value which caused it to break out of
the while loop on the next iteration. I've added a check of the
get_range return value to break immediately. See snippet.
If get_options is called with a bad range,
64-N,65
returns and empty array.
63,64-N
returns an array with just 63.
if (res == 3) {
int range_nums;
range_nums = get_range((char **)&str, ints + i);
+ if ( range_nums < 0)
+ break;
/* Decrement the result by one to leave out the
last number in the range. The next iteration
will handle the upper number in the range */
i += (range_nums - 1);
}
Derek
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists