浏览代码

Fehler behoben

Kolja Strohm 5 年之前
父节点
当前提交
bf1d473c38
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      ErhaltungServer/ErhaltungServer.cpp

+ 2 - 1
ErhaltungServer/ErhaltungServer.cpp

@@ -527,9 +527,9 @@ void ESAKlient::errorZuKlient( const char *nachricht ) const // sendet eine Fehl
 // Inhalt der ESKThread Klasse aus ErhaltungServer.h
 // Konstruktor
 ESKThread::ESKThread( ESKlient * zKlient )
+    : Thread()
 {
     this->zKlient = zKlient;
-    ref = 1;
 }
 
 // Destruktor
@@ -556,6 +556,7 @@ void ESKThread::thread()
 // Inhalt der ESKlient Klasse aus ErhaltungServer.h
 // Konstruktor
 ESKlient::ESKlient( SKlient * klient, ErhaltungServer * es )
+    : Thread()
 {
     th = new ESKThread( this );
     this->klient = klient;