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 the pointer is replaced if there is a match
on the key.
_______________________________________________
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

Reply via email to