diff options
author | jbj <devnull@localhost> | 2002-08-20 22:05:18 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-08-20 22:05:18 +0000 |
commit | b6b6612cfa451a62839e45b69423eb1a16a03f57 (patch) | |
tree | ae68d02919c0e94b192c6ab65fbbfb201541115d /build | |
parent | 46d1fa7527073148293e8a49ed13c80043758dae (diff) | |
download | rpm-b6b6612cfa451a62839e45b69423eb1a16a03f57.tar.gz rpm-b6b6612cfa451a62839e45b69423eb1a16a03f57.tar.bz2 rpm-b6b6612cfa451a62839e45b69423eb1a16a03f57.zip |
- check for interrupt during iteration.
- python: add ts.setProbFilter() method, remove ts.run() argument.
CVS patchset: 5652
CVS date: 2002/08/20 22:05:18
Diffstat (limited to 'build')
-rw-r--r-- | build/files.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/files.c b/build/files.c index b08cf5e5e..fb87d5833 100644 --- a/build/files.c +++ b/build/files.c @@ -31,6 +31,7 @@ /*@access Header @*/ /*@access rpmfi @*/ +/*@access rpmte @*/ /*@access FD_t @*/ /*@access StringBuf @*/ /* compared with NULL */ @@ -1372,7 +1373,9 @@ static void genCpioListAndHeader(/*@partial@*/ FileList fl, if (fi == NULL) return; /* XXX can't happen */ +/*@-onlytrans@*/ fi->te = xcalloc(1, sizeof(*fi->te)); +/*@=onlytrans@*/ fi->te->type = TR_ADDED; fi->dnl = _free(fi->dnl); |