summaryrefslogtreecommitdiff
path: root/rpmio/rpmio.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-08-19 22:27:44 +0000
committerjbj <devnull@localhost>2002-08-19 22:27:44 +0000
commitae8428475cbfde3af746d51a056e0655fe6269d8 (patch)
tree6d173ac13fbc11799ea49d3dd70d5b8ee452283a /rpmio/rpmio.c
parent105f7a517cd13b7c40b359548a9c75cbd00ed9c4 (diff)
downloadlibrpm-tizen-ae8428475cbfde3af746d51a056e0655fe6269d8.tar.gz
librpm-tizen-ae8428475cbfde3af746d51a056e0655fe6269d8.tar.bz2
librpm-tizen-ae8428475cbfde3af746d51a056e0655fe6269d8.zip
- add --with-efence to configure, check install/upgrade with efence.
- beecrypt: short hex string conversion overflows target buffer. - mark "successors only" packages in transaction. - reap scriptlets with SIGCHLD handler. - rename PSM_t to rpmpsm, add methods and refcounts to manage. - remove %%configure/%%makeinstall from arch-os/macros, default is OK. - don't export MALLOC_CHECK_ to scriptlets. - squeaky clean memory leak checking. - always malloc rpmfi structure, refcounts are correct in rpmtsRun(). - skip redundant /sbin/ldconfig scripts on upgrade (if possible). CVS patchset: 5645 CVS date: 2002/08/19 22:27:44
Diffstat (limited to 'rpmio/rpmio.c')
-rw-r--r--rpmio/rpmio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/rpmio/rpmio.c b/rpmio/rpmio.c
index 81c086aeb..3ad377183 100644
--- a/rpmio/rpmio.c
+++ b/rpmio/rpmio.c
@@ -3152,6 +3152,7 @@ int Fcntl(FD_t fd, int op, void *lip)
/* =============================================================== */
/* Helper routines that may be generally useful.
*/
+/*@-bounds@*/
int rpmioMkpath(const char * path, mode_t mode, uid_t uid, gid_t gid)
{
char * d, * de;
@@ -3200,6 +3201,7 @@ int rpmioMkpath(const char * path, mode_t mode, uid_t uid, gid_t gid)
path, mode);
return rc;
}
+/*@=bounds@*/
/*@-boundswrite@*/
int rpmioSlurp(const char * fn, const byte ** bp, ssize_t * blenp)