argv_split: allow argv_split to handle NULL pointer in argcp parameter gracefully
authorNeil Horman <nhorman@tuxdriver.com>
Wed, 17 Oct 2007 06:26:33 +0000 (23:26 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 17 Oct 2007 15:42:50 +0000 (08:42 -0700)
commit8e2b705649e294f43a8cd1ea79e4c594c0bd1d9d
treeedceaa54f86252ea66f3321786cd89771759dbfd
parent2a9807c0d39066236640aa34ca8de168e690632f
argv_split: allow argv_split to handle NULL pointer in argcp parameter gracefully

It would be nice if the argv_split library function could gracefully handle
a NULL pointer in the argcp parameter, so as to allow functions using it
that did not care about the value of argc to not have to declare a useless
variable.  This patch accomplishes that.  Tested by me, with successful
results.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Satyam Sharma <satyam@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/argv_split.c