]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCtrackerMI.cxx
coverity fix (Ruben)
[u/mrichter/AliRoot.git] / TPC / AliTPCtrackerMI.cxx
index f4aead8d36a0bcf80120ba5573baaec48e098772..e11e1c485b8d3fe3f0c8966a63b2dd04e5ea6fd2 100644 (file)
@@ -7747,9 +7747,15 @@ void AliTPCtrackerMI::MarkSeedFree(TObject *sd)
 {
   // account that this seed is "deleted" 
   AliTPCseed* seed = dynamic_cast<AliTPCseed*>(sd);
-  if (!sd) {AliError(Form("Freeing of non-AliTPCseed %p from the pool is requested",sd)); return;}
+  if (!sd) {
+    AliError(Form("Freeing of non-AliTPCseed %p from the pool is requested",sd)); 
+    return;
+  }
   int id = seed->GetPoolID();
-  if (id<0) {AliError(Form("Freeing of seed %p NOT from the pool is requested",sd)); return;}
+  if (id<0) {
+    AliError(Form("Freeing of seed %p NOT from the pool is requested",sd)); 
+    return;
+  }
   //  AliInfo(Form("%d %p",id, seed));
   fSeedsPool->RemoveAt(id);
   if (fFreeSeedsID.GetSize()<=fNFreeSeeds) fFreeSeedsID.Set( 2*fNFreeSeeds + 100 );