summaryrefslogtreecommitdiffstats
path: root/libopkg/pkg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libopkg/pkg.c')
-rw-r--r--libopkg/pkg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libopkg/pkg.c b/libopkg/pkg.c
index 093c132..111ac7a 100644
--- a/libopkg/pkg.c
+++ b/libopkg/pkg.c
@@ -314,7 +314,9 @@ pkg_init_from_file(opkg_conf_t *conf, pkg_t *pkg, const char *filename)
goto err2;
rewind(control_file);
- pkg_parse_from_stream(pkg, control_file, PFM_ALL);
+
+ if (pkg_parse_from_stream(pkg, control_file, PFM_ALL))
+ err = -1;
err2:
fclose(control_file);