Fix opendir failure handling

This commit is contained in:
Don Gagne 2015-05-24 10:40:52 -07:00 committed by Lorenz Meier
parent 8f70ebecc8
commit 77bd36aa33
1 changed files with 2 additions and 8 deletions

View File

@ -316,14 +316,8 @@ MavlinkFTP::_workList(PayloadHeader* payload)
_mavlink->send_statustext_critical("FTP: can't open path (file system corrupted?)");
_mavlink->send_statustext_critical(dirPath);
#endif
// this is not an FTP error, abort directory read and continue
payload->data[offset++] = kDirentSkip;
*((char *)&payload->data[offset]) = '\0';
offset++;
payload->size = offset;
return errorCode;
// this is not an FTP error, abort directory by simulating eof
return kErrEOF;
}
#ifdef MAVLINK_FTP_DEBUG