setup.c: stop prefix_pathspec() from looping past the end of string
commit772e47cd673e048adb0f7b663617ec70e0cfe598
authorAndrew Wong <andrew.kw.w@gmail.com>
Thu, 7 Mar 2013 16:36:03 +0000 (7 11:36 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Mar 2013 16:39:09 +0000 (14 09:39 -0700)
treeb759761f8c13a2e19c67d921d9bcd416f7f5feba
parent7e2010537e96d0a1144520222f20ba1dc3d61441
setup.c: stop prefix_pathspec() from looping past the end of string

The code assumes that the string ends at either `)` or `,`, and does
not handle the case where strcspn() returns length due to end of
string.  So specifying ":(top" as pathspec will cause the loop to go
past the end of string.

Signed-off-by: Andrew Wong <andrew.kw.w@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
setup.c