mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 23:54:50 +00:00
Merge pull request #373 from carlosmn/fancy-branchname
Fix the reference character check for Unicode
This commit is contained in:
commit
ec5b158996
@ -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) {
|
||||
@ -1752,4 +1752,4 @@ int git_reference__normalize_name(char *buffer_out, size_t out_size, const char
|
||||
int git_reference__normalize_name_oid(char *buffer_out, size_t out_size, const char *name)
|
||||
{
|
||||
return normalize_name(buffer_out, out_size, name, 1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user