Re: [Live-devel] Possible memory leak in UserAuthenticationDatabase

2019-11-08 Thread Ross Finlayson
> On Nov 8, 2019, at 5:41 AM, Jeff Shanab wrote: > > In GenericMediaServer: >Is there a memory leak If I call AddUser with the same credentials more > than once ? Yes indeed. Thanks for the report; this will be fixed in the next release of the software. Ross Finlayson Live Networks,

[Live-devel] Possible memory leak in UserAuthenticationDatabase

2019-11-08 Thread Jeff Shanab
In GenericMediaServer: Is there a memory leak If I call AddUser with the same credentials more than once ? void UserAuthenticationDatabase::addUserRecord(char const* username, char const* password) { fTable->Add(username, (void*)(strDup(password))); } strDup is called each time, but th