소스 검색

Update for the read_whole_file -> read_file change.

master
Richard Nyberg 18 년 전
부모
커밋
b306439636
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      misc/metainfo.c

+ 2
- 2
misc/metainfo.c 파일 보기

@@ -376,10 +376,10 @@ mi_test(const char *p, size_t size)
char *
mi_load(const char *path, size_t *size)
{
void *res = NULL;
char *res;
size_t mi_size = (1 << 21);

if ((errno = read_whole_file(&res, &mi_size, path)) != 0)
if ((res = read_file(path, NULL, &mi_size)) == NULL)
return NULL;
if (!mi_test(res, mi_size)) {
free(res);


불러오는 중...
취소
저장