Il 13/06/2014 09:15, Markus Armbruster ha scritto:
I'm afraid this is not an improvement.Your patch makes the code ignore fclose() failure silently. This is a common mistake. fclose() failure after write can mean data loss, and the user certainly needs to know about that.
If you want that, the best solution is to first fflush() and then fclose(). Then you're sure that the fclose() doesn't cause data loss and you can safely ignore its result (it shouldn't fail).
Paolo