vote up 0 vote down star

Is there a fix or a workaround for the memory leak in getpwnam?

flag

2 Answers

vote up 6 vote down check

getpwnam() does not suffer of memory leak. Subsequent calls, indeed, will overwrite its static internal buffer.

Such kind of functions are instead non-reentrant and therefore non-thread safe. Paul suggested the use of getpwnam_r() which is the reentrant version, that is safe to be used in a multithread context.

That said, memory leaks are caused by those system calls that allocate memory by means of malloc() and leave the application the responsability to free() the memory once the returned data has used.

In these cases the RAII idiom is advisable in order to not forget to free the allocated memory -- see exception safety. std::tr1::shared_ptr<> is also a viable way: For the shared_ptr a custom deleter must be provided to free() the raw pointer when the shared_ptr goes out of the scope.

Under this perspective some dangerous functions are scandir(), asprintf(), vasprintf() etc.

link|flag
Oh good answer. If I could transfer the "accepted answer" to you, I would. – Paul Tomblin Nov 6 '08 at 19:14
@Nicola, thank you, marking your answer as accepted – umnik700 Jan 15 at 20:02
vote up 3 vote down

Use getpwnam_r.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.