1
0
mirror of https://github.com/ceph/ceph synced 2025-03-30 23:40:09 +00:00

Merge pull request from amitkumar50/cov-rgw-9

rgw: Error check on return of read_line()
This commit is contained in:
Matt Benjamin 2017-09-26 08:29:09 -04:00 committed by GitHub
commit 637eead62f

View File

@ -1419,6 +1419,9 @@ int RGWPostObj_ObjStore::read_form_part_header(struct post_form_part* const part
}
r = read_line(bl, chunk_size, reached_boundary, done);
if (r < 0) {
return r;
}
}
return 0;