| # | Line 112 | Line 112 | binary_copyf(FILE *fp, int asize) | |
|---|---|---|
| 112 | return(0); | |
| 113 | } | |
| 114 | } | |
| 115 | < | free(buf); /* success! */ |
| 116 | < | return(1); |
| 115 | > | free(buf); |
| 116 | > | if (fflush(stdout) == EOF) |
| 117 | > | goto writerr; |
| 118 | > | return(1); /* success! */ |
| 119 | } /* else need to read it all... */ | |
| 120 | buf = (char *)malloc(width*elsiz); | |
| 121 | if (!buf) | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |