1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix invalid free() in advio

This commit is contained in:
Steffen Vogel 2017-03-20 09:07:45 -03:00
parent 27913c3699
commit 326b61fa59

View file

@ -97,7 +97,7 @@ AFILE * afopen(const char *uri, const char *mode)
out0: curl_easy_cleanup(af->curl);
out1: fclose(af->file);
out2: free(af->file);
out2: free(af->uri);
free(af);
return NULL;