Closed woollybah closed 9 years ago
The following code in stdc.c leaks p, from line 216 :
p
int putenv_( BBString *str ){ char *t=bbTmpUTF8String( str ); char *p=(char*)malloc( strlen(t)+1 ); strcpy( p,t ); return putenv( p ); }
The following code in stdc.c leaks
p
, from line 216 :