mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Remove unnecessary comparison
This commit is contained in:
parent
98a9530d23
commit
5b19c7aed3
@ -66,7 +66,7 @@ namespace
|
||||
return false;
|
||||
|
||||
for(int i = 0; i < 4; i++) {
|
||||
if(name[i] < 32 || name[i] > 127)
|
||||
if(name[i] < 32 /*|| name[i] > 127*/)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user