소스 검색

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;