Is there a fix or a workaround for the memory leak in getpwnam?
|
|
Such kind of functions are instead non-reentrant and therefore non-thread safe. Paul suggested the use of That said, memory leaks are caused by those system calls that allocate memory by means of In these cases the RAII idiom is advisable in order to not forget to free the allocated memory -- see exception safety. Under this perspective some dangerous functions are |
||||
|
|
|
Use getpwnam_r. |
||
|
|
