Merge pull request #2174 from Wasabi375/patch-1

ReadFieldPtrVector should return true when successful
pull/2172/head^2
Kim Kulling 2018-10-07 20:31:10 +02:00 committed by GitHub
commit 65c07613ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ bool Structure::ReadFieldPtrVector(vector<TOUT<T>>&out, const char* name, const
++db.stats().fields_read;
#endif
return false;
return true;
}