blob: df5ac73f05830d3fe7f7899c6ac88c86fe330acf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <fcntl.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
void silly_function(char *pathname) {
struct stat f, we;
int rfd, wfd;
char *buf;
stat(pathname, &f);
stat("./critical", &we);
if (f.st_dev == we.st_dev && f.st_ino == we.st_ino) {
return;
}
rfd = open(pathname, O_RDONLY);
buf = malloc(f.st_size - 1);
read(rfd, buf, f.st_size - 1);
close(rfd);
stat(pathname, &f);
if (f.st_dev == we.st_dev && f.st_ino == we.st_ino) {
return;
}
wfd = open(pathname, O_WRONLY | O_TRUNC);
write(wfd, buf, f.st_size - 1);
close(wfd);
free(buf);
}
int main() { silly_function("./not"); }
|