Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
If size read is 0 (eof), don't initiate faulty comm which will crash.
authordegomme <adegomme@users.noreply.github.com>
Tue, 23 Apr 2019 12:50:37 +0000 (14:50 +0200)
committerdegomme <adegomme@users.noreply.github.com>
Tue, 23 Apr 2019 12:50:37 +0000 (14:50 +0200)
src/plugins/file_system/s4u_FileSystem.cpp

index 517ad41..1c3d3c0 100644 (file)
@@ -102,7 +102,7 @@ sg_size_t File::read(sg_size_t size)
   sg_size_t read_size = local_storage_->read(std::min(size, size_ - current_position_));
   current_position_ += read_size;
 
-  if (host->get_name() != Host::current()->get_name()) {
+  if (host->get_name() != Host::current()->get_name() && read_size > 0) {
     /* the file is hosted on a remote host, initiate a communication between src and dest hosts for data transfer */
     XBT_DEBUG("File is on %s remote host, initiate data transfer of %llu bytes.", host->get_cname(), read_size);
     std::vector<Host*> m_host_list   = {Host::current(), host};