Quote:
Originally Posted by gorilla.maguila
Do you think it's worthy to look at the possible memory leaks pointed out by valgrind, like the
Code:
char *url = malloc(len + 1)
Never being freed, or they're false positive?
|
we are using the same buffer for tcUrl so it can't be freed right away. it will not be worth making a copy because memory consumption would be same in that case.