parent
d8e8eb2eef
commit
94d10968c9
@ -18,7 +18,6 @@
|
|||||||
die(__VA_ARGS__); \
|
die(__VA_ARGS__); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Reads size bytes into the destination buffer from filename.
|
* Reads size bytes into the destination buffer from filename.
|
||||||
*
|
*
|
||||||
|
@ -19,11 +19,13 @@ void print_file_contents(yajl_gen json_gen, char *buffer, const char *title, con
|
|||||||
char *outwalk = buffer;
|
char *outwalk = buffer;
|
||||||
char *buf = scalloc(max_chars * sizeof(char) + 1);
|
char *buf = scalloc(max_chars * sizeof(char) + 1);
|
||||||
|
|
||||||
int n = -1;
|
char *abs_path = resolve_tilde(path);
|
||||||
int fd = open(path, O_RDONLY);
|
int fd = open(abs_path, O_RDONLY);
|
||||||
|
free(abs_path);
|
||||||
|
|
||||||
INSTANCE(path);
|
INSTANCE(path);
|
||||||
|
|
||||||
|
int n = -1;
|
||||||
if (fd > -1) {
|
if (fd > -1) {
|
||||||
n = read(fd, buf, max_chars);
|
n = read(fd, buf, max_chars);
|
||||||
if (n != -1) {
|
if (n != -1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user