Re: [PATCH] Add get_range, allows a hyhpenated range to get_options

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> 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 [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux