Page MenuHomeFreeBSD

dma: use canonical getline() loop
ClosedPublic

Authored by emaste on Feb 3 2022, 6:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Nov 5, 8:12 AM
Unknown Object (File)
Wed, Oct 30, 10:35 AM
Unknown Object (File)
Thu, Oct 17, 4:04 PM
Unknown Object (File)
Thu, Oct 17, 1:07 AM
Unknown Object (File)
Tue, Oct 15, 1:23 PM
Unknown Object (File)
Mon, Oct 14, 2:54 AM
Unknown Object (File)
Oct 12 2024, 10:50 AM
Unknown Object (File)
Oct 11 2024, 3:42 AM

Details

Summary

getline() returns -1 on erorr or EOF, so just use that condition instead of feof().

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

emaste requested review of this revision.Feb 3 2022, 6:52 PM
emaste created this revision.

I don't know why I went the complicated way in the first place ;)

This revision is now accepted and ready to land.Feb 3 2022, 7:22 PM

explicitly set errno = 0 before loop; getline() leaves it unchanged upon EOF

This revision now requires review to proceed.Feb 4 2022, 5:20 PM

use ferror rather than futzing with errno

This revision was not accepted when it landed; it landed in state Needs Review.Feb 6 2022, 2:56 AM
This revision was automatically updated to reflect the committed changes.