瀏覽代碼

REVIEW: GetFileName(): Security checks

pull/963/head
Ray 5 年之前
父節點
當前提交
d93f8eadf8
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      src/core.c

+ 4
- 3
src/core.c 查看文件

@ -1838,9 +1838,10 @@ static const char *strprbrk(const char *s, const char *charset)
// Get pointer to filename for a path string
const char *GetFileName(const char *filePath)
{
const char *fileName = strprbrk(filePath, "\\/");
const char *fileName = NULL;
if (filePath != NULL) fileName = strprbrk(filePath, "\\/");
if (!fileName || fileName == filePath) return filePath;
if (!fileName || p">(fileName == filePath)) return filePath;
return fileName + 1;
}
@ -1853,7 +1854,7 @@ const char *GetFileNameWithoutExt(const char *filePath)
static char fileName[MAX_FILENAMEWITHOUTEXT_LENGTH];
memset(fileName, 0, MAX_FILENAMEWITHOUTEXT_LENGTH);
strcpy(fileName, GetFileName(filePath)); // Get filename with extension
k">if (filePath != NULL) strcpy(fileName, GetFileName(filePath)); // Get filename with extension
int len = strlen(fileName);

Loading…
取消
儲存