Do not use pointer for file path.
所有检测均成功
The build was successful.

这个提交包含在:
Rafal Kupiec 2019-06-25 20:10:27 +02:00
父节点 647454b98d
当前提交 0a2f1133d5
签署人:: belliash
GPG 密钥 ID: 4E829243E0CFE6B4

查看文件

@ -2971,7 +2971,7 @@ PH7_PRIVATE void *PH7_StreamOpenHandle(ph7_vm *pVm, const ph7_io_stream *pStream
int iFlags, int use_include, ph7_value *pResource, int bPushInclude, int *pNew) {
void *pHandle = 0; /* cc warning */
SyString sFile;
char *sFilePath[PATH_MAX + 1];
char sFilePath[PATH_MAX + 1];
int rc;
if(pStream == 0) {
/* No such stream device */