From: graham.gower Date: Thu, 19 Nov 2009 00:13:51 +0000 (+0000) Subject: Assume a similar problem exists with this fdopen as fixed with r333. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=8d9e0ecb10ca5fd8b3ae1bdcf244291e75654740 Assume a similar problem exists with this fdopen as fixed with r333. git-svn-id: http://opkg.googlecode.com/svn/trunk@335 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/pkg.c b/libopkg/pkg.c index f73cf5c..741f941 100644 --- a/libopkg/pkg.c +++ b/libopkg/pkg.c @@ -1031,7 +1031,7 @@ str_list_t *pkg_get_installed_files(opkg_conf_t *conf, pkg_t *pkg) free(list_file_name); return pkg->installed_files; } - list_file = fdopen(fd, "rw"); + list_file = fdopen(fd, "rw+"); if (list_file == NULL) { opkg_message(conf, OPKG_ERROR, "%s: fdopen: %s", __FUNCTION__, strerror(errno));