That specific set of steps doesn't apply to any of the applications I use.
Same here. But going forward, I like to play "better safe than sorry."
Seems that the most likely hit in the "real world" would be those who build large project files, as explained by Bronek:
Bronek said:
This is also most similar to how such cases were occasionally caught in the real-life e.g. developers building a large project with object files, which are immediately read by the linker, after being written (asynchronously) by the compiler.
In the meantime, I made my own rudimentary script to literally scan all files in my dataset(s), which will output a "report" of any filess that contain at least one contiguous 128K block of zeroes.
Most of the "hits" are expected. Some sqlite files, db files, tar files, iso files, and "store-only" zip archives. I did find one photo (1.2 MiB) whose last 128K are nothing but zeroes, but it's unrelated to this.
My hunch is that I will only find false positives, and not a single corrupted file. (I don't even expect it to find any, in fact.)
But it was fascinating to see 128K chunks of 0x00 in some unusual places, such as a JPEG image.
EDIT: Also unrelated, but interesting: I noticed that some software is lazily developed when saving files, just dropping seemingly meaningless chunks of 0x00, which exaggerates the filesize. Obviously in ZFS, these chunks get compressed down to nothing. (For example, "game save" files that are each ~5MiB easily compress down to ~200KiB.)
EDIT 2: Oh, this is interesting. I wonder what it means?
No need to reply to this comment, just dumping an observation I made.
My script (that searches for 128K chunks of zeroes) found a batch of JPEG images that contain such. These JPEG files are small, around 200-300 KiB each.
Yet they all contain a "tail" of 128K+ 0x00. This means that
around half of the filesize is comprised of a contiguous block of zeroes.
Want to know what all these images have in common? They all had "effects" applied to them from an old iPad front-facing camera app.

Go figure! Not sure why, but it's fascinating to come across this unusual quirk.