Fix #6723: Ps - project save - allow names with a hyphen (#6738)

This commit is contained in:
davidpolverari 2017-02-08 20:48:23 -02:00 committed by radare
parent 7474c17948
commit a97a3c9d7c

View File

@ -16,6 +16,7 @@ static bool is_valid_project_name (const char *name) {
case '.':
case '_':
case ':':
case '-':
continue;
}
if (name[i] >= 'a' && name[i] <= 'z') {