j
k
j a
j l
Marcus Meissner wrote:
if (!(fin = fopen(input_file_name, "r"))) return 0; if (stat(input_file_name, &st) < 0) return 0; if (!(fin = fopen(input_file_name, "r"))) return 0;
Wouldn't it be better to use fstat here to avoid a race condition?
Mike
Back to the thread
Back to the list