ssize_t retval = 0;
ASSERT(numVec > 0);
+
+ /*
+ * This is needed to deal with old libraries. Once we're over
+ * the library horizon this can go away.
+ */
+ /* coverity[func_conv] */
if (preadv64 == NULL) {
fret = FileIOPreadvCoalesced(fd, entries, numEntries, offset,
totalSize, &bytesRead);
ssize_t retval = 0;
ASSERT(numVec > 0);
+
+ /*
+ * This is needed to deal with old libraries. Once we're over
+ * the library horizon this can go away.
+ */
+ /* coverity[func_conv] */
if (pwritev64 == NULL) {
fret = FileIOPwritevCoalesced(fd, entries, numEntries, offset,
totalSize, &bytesWritten);
Str_Strcpy(canPath, ptr, sizeof canPath);
}
} else {
+
+ /*
+ * This is coded as it is in order to document clearly that
+ * the function does not handle bind mount correctly (it
+ * always assumes rbind).
+ */
+ /* coverity[dead_error_line] */
Str_Strcpy(canPath, ptr, sizeof canPath);
}