Commit ec5b1589 by Vicent Martí

Merge pull request #373 from carlosmn/fancy-branchname

Fix the reference character check for Unicode
parents 3a97bff3 50a8fd03
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment