dj(1): replace do/while on hard seeking

This commit is contained in:
dtb 2024-07-19 18:26:59 -06:00
parent f7ebe7cf57
commit a01cea572d
Signed by: trinity
GPG Key ID: 34C0543BBB6AF81B

View File

@ -259,28 +259,27 @@ int main(int argc, char *argv[]) {
}
}
/* hard seeking */
if (io[1].seek > 0) {
size_t t;
assert(io[1].bufuse == 0); /* requirement for hard seeking */
do {
/* hard seeking; t is io[1].bufuse, before Io_write subtracts from it */
for(size_t t; io[1].seek > 0; io[1].seek -= (t - io[1].bufuse)) {
memset(
io[1].buf, '\0',
(t = io[1].bufuse = MIN(io[1].bs, io[1].seek))
io[1].buf, '\0', /* set buf to all nulls */
(t = io[1].bufuse = MIN(io[1].bs, io[1].seek)) /* saturate block */
);
if (Io_write(&io[1])->bufuse == t && !noerror && io[1].error == 0) {
Io_write(&io[1]); /* second chance */
}
if (io[1].error != 0) {
return oserr(io[1].fn, io[1].error);
if (io[1].error != 0) { return oserr(io[1].fn, io[1].error); }
if (io[1].bufuse == t) { break; } /* all writes failed! */
}
} while ((io[1].seek -= (t - io[1].bufuse)) > 0 && io[1].bufuse != t);
io[1].bufuse = 0;
}
if (io[1].seek > 0) {
if (io[1].seek > 0) { /* hard seeking failed */
fprintio(stderr, fmt, io);
return oserr(io[1].fn, errno);
}