0
6
Fork 0

Do not support old libC.
The build was successful. Details

Dieser Commit ist enthalten in:
Rafal Kupiec 2019-06-28 19:43:23 +02:00
Ursprung 48d5088265
Commit a6d89da16b
Signiert von: belliash
GPG-Schlüssel-ID: 4E829243E0CFE6B4
1 geänderte Dateien mit 0 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -6914,7 +6914,6 @@ static int UnixVfs_Rename(const char *zOld, const char *zNew) {
}
/* int (*xRealpath)(const char *,ph7_context *) */
static int UnixVfs_Realpath(const char *zPath, ph7_context *pCtx) {
#ifndef PH7_UNIX_OLD_LIBC
char *zReal;
zReal = realpath(zPath, 0);
if(zReal == 0) {
@ -6924,11 +6923,6 @@ static int UnixVfs_Realpath(const char *zPath, ph7_context *pCtx) {
/* Release the allocated buffer */
free(zReal);
return PH7_OK;
#else
zPath = 0; /* cc warning */
pCtx = 0;
return -1;
#endif
}
/* int (*xSleep)(unsigned int) */
static int UnixVfs_Sleep(unsigned int uSec) {