Fixed linux listenserver startup problems
Fixed multiple buffer overruns and memory leaks.
This commit is contained in:
parent
c5031315bf
commit
74f1ab866b
29 changed files with 371 additions and 254 deletions
|
|
@ -92,7 +92,10 @@ protected:
|
|||
{ }
|
||||
|
||||
public:
|
||||
static T &instance (); // implemented in cr-alloc.h
|
||||
static T &instance () {
|
||||
static T __instance {};
|
||||
return __instance;
|
||||
}
|
||||
|
||||
public:
|
||||
T *operator -> () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue