X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/81d9da9a3ab660a3ce6ac1f1660024f2b77dfc95..e7aea0c6f323c6bbf364093305e60bb78999a23f:/src/lbx.c diff --git a/src/lbx.c b/src/lbx.c index 1d92f46..a2d3796 100644 --- a/src/lbx.c +++ b/src/lbx.c @@ -1,7 +1,7 @@ /* * 2ooM: The Master of Orion II Reverse Engineering Project * Library for working with LBX archive files. - * Copyright (C) 2006-2010 Nick Bowler + * Copyright © 2006-2010, 2013 Nick Bowler * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -166,14 +166,17 @@ struct lbx *lbx_fopen(const char *file) FILE *f; f = fopen(file, "rb"); - if (!f) + if (!f) { + lbx_error_raise(-errno); return NULL; + } if (fseek(f, 0, SEEK_CUR) == 0) return lbx_open(f, &lbx_default_fops, file_close, name); p = malloc(sizeof *p); if (!p) { + lbx_error_raise(LBX_ENOMEM); fclose(f); return NULL; } @@ -182,13 +185,7 @@ struct lbx *lbx_fopen(const char *file) return lbx_open(p, &lbx_pipe_fops, pipe_close, name); } -size_t lbx_numfiles(struct lbx *pub) -{ - return pub->nfiles; -} - -int -lbx_file_stat(struct lbx *pub, unsigned fileno, struct lbx_statbuf *buf) +int lbx_file_stat(struct lbx *pub, unsigned fileno, struct lbx_statbuf *buf) { struct lbx_priv *lbx = (struct lbx_priv *)pub; static char str[256]; /* FIXME */