0

I'm checking memory allocation with poolmon for a C application, after uninstall it still have 1 allocation with zero bytes. Can this be considered as a memory leak?

A. Acosta
  • 55
  • 3
  • 9

1 Answers1

1

It's an implementation defined.

But even malloc(0) must be free()'d.

a1batross
  • 11
  • 1