Hotfix/sangshuduo/td 6166 pointer not init (#7427)
* [TD-6166]<fix>: pointer not initialized led taos.exe exit on windows. * another line.
This commit is contained in:
parent
0c7cf3a918
commit
5e15ac45fc
|
@ -196,7 +196,7 @@ not_compact_enough:
|
||||||
/* Normally defined in stdlib.h. Output buf must contain PATH_MAX bytes */
|
/* Normally defined in stdlib.h. Output buf must contain PATH_MAX bytes */
|
||||||
char *realpath(const char *path, char *outbuf) {
|
char *realpath(const char *path, char *outbuf) {
|
||||||
char *pOutbuf = outbuf;
|
char *pOutbuf = outbuf;
|
||||||
char *pOutbuf1;
|
char *pOutbuf1 = NULL;
|
||||||
int iErr;
|
int iErr;
|
||||||
const char *pc;
|
const char *pc;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue