gv.c: Use name_end to avoid compiler warning
authorFather Chrysostomos <sprout@cpan.org>
Thu, 6 Oct 2011 05:13:35 +0000 (22:13 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Thu, 6 Oct 2011 20:01:18 +0000 (13:01 -0700)
commitf1c07be4129bd6df320f25e77520c9725c21b9ba
treeb86891995ed07c93fc99de0cd88b6b9922fcfe09
parent7833c8a6c843957351c2d3abf519e98cf2f5feab
gv.c: Use name_end to avoid compiler warning

In this code path, name_cursor could be uninitialised if
gv_fetchpvn_flags is called with GV_NOTQUAL|GV_ADDWARN.  Whenever it
is initialised, it is the same as name_end by the time this part
of the function is reached.
gv.c