fix: merge errors

This commit is contained in:
Shengliang Guan 2024-12-11 16:07:06 +08:00
parent e21a901da4
commit bea73b122d
1 changed files with 1 additions and 1 deletions

View File

@ -525,8 +525,8 @@ bool tIsValidFileName(const char *fileName, const char *pattern) {
bool tIsValidFilePath(const char *filePath, const char *pattern) {
const char *filePathPattern = "^[a-zA-Z0-9:/\\_.-]+$";
return tIsValidFileName(filePath, pattern ? pattern : filePathPattern);
}
bool taosIsBigChar(char c) {
if (c >= 'A' && c <= 'Z') {