Merge pull request #373 from carlosmn/fancy-branchname

Fix the reference character check for Unicode
This commit is contained in:
Vicent Martí 2011-08-16 10:13:45 -07:00
commit ec5b158996

View File

@ -1647,7 +1647,7 @@ void git_repository__refcache_free(git_refcache *refs)
*****************************************/
static int check_valid_ref_char(char ch)
{
if (ch <= ' ')
if ((unsigned) ch <= ' ')
return GIT_ERROR;
switch (ch) {