diff options
author | jbj <devnull@localhost> | 2003-05-08 20:39:29 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-05-08 20:39:29 +0000 |
commit | 9c5529608e389271b80469054bfe80737521590a (patch) | |
tree | b1df8b79cd3fdbb7f10d3b48ee25fddb66072fe3 /lib/formats.c | |
parent | db7ab2f447ee6097b2e98a526f6383a5ca388718 (diff) | |
download | librpm-tizen-9c5529608e389271b80469054bfe80737521590a.tar.gz librpm-tizen-9c5529608e389271b80469054bfe80737521590a.tar.bz2 librpm-tizen-9c5529608e389271b80469054bfe80737521590a.zip |
- don't use error string after gzclose (Dmitry V. Levin).
Spliddles for rpmio, drill h_errno all the way through.
CVS patchset: 6826
CVS date: 2003/05/08 20:39:29
Diffstat (limited to 'lib/formats.c')
-rw-r--r-- | lib/formats.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/formats.c b/lib/formats.c index 54994a830..b86a5a054 100644 --- a/lib/formats.c +++ b/lib/formats.c @@ -604,7 +604,7 @@ static int instprefixTag(Header h, /*@null@*/ /*@out@*/ rpmTagType * type, static int fssizesTag(Header h, /*@out@*/ rpmTagType * type, /*@out@*/ const void ** data, /*@out@*/ int_32 * count, /*@out@*/ int * freeData) - /*@globals rpmGlobalMacroContext, + /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/ /*@modifies *type, *data, *count, *freeData, rpmGlobalMacroContext, fileSystem, internalState @*/ @@ -911,7 +911,7 @@ static const char * _macro_i18ndomains = "%{?_i18ndomains}"; static int i18nTag(Header h, int_32 tag, /*@out@*/ rpmTagType * type, /*@out@*/ const void ** data, /*@out@*/ int_32 * count, /*@out@*/ int * freeData) - /*@globals rpmGlobalMacroContext @*/ + /*@globals rpmGlobalMacroContext, h_errno @*/ /*@modifies *type, *data, *count, *freeData, rpmGlobalMacroContext @*/ /*@requires maxSet(type) >= 0 /\ maxSet(data) >= 0 /\ maxSet(count) >= 0 /\ maxSet(freeData) >= 0 @*/ @@ -1001,7 +1001,7 @@ static int i18nTag(Header h, int_32 tag, /*@out@*/ rpmTagType * type, static int summaryTag(Header h, /*@out@*/ rpmTagType * type, /*@out@*/ const void ** data, /*@out@*/ int_32 * count, /*@out@*/ int * freeData) - /*@globals rpmGlobalMacroContext @*/ + /*@globals rpmGlobalMacroContext, h_errno @*/ /*@modifies *type, *data, *count, *freeData, rpmGlobalMacroContext @*/ /*@requires maxSet(type) >= 0 /\ maxSet(data) >= 0 /\ maxSet(count) >= 0 /\ maxSet(freeData) >= 0 @*/ @@ -1021,7 +1021,7 @@ static int summaryTag(Header h, /*@out@*/ rpmTagType * type, static int descriptionTag(Header h, /*@out@*/ rpmTagType * type, /*@out@*/ const void ** data, /*@out@*/ int_32 * count, /*@out@*/ int * freeData) - /*@globals rpmGlobalMacroContext @*/ + /*@globals rpmGlobalMacroContext, h_errno @*/ /*@modifies *type, *data, *count, *freeData, rpmGlobalMacroContext @*/ /*@requires maxSet(type) >= 0 /\ maxSet(data) >= 0 /\ maxSet(count) >= 0 /\ maxSet(freeData) >= 0 @*/ @@ -1041,7 +1041,7 @@ static int descriptionTag(Header h, /*@out@*/ rpmTagType * type, static int groupTag(Header h, /*@out@*/ rpmTagType * type, /*@out@*/ const void ** data, /*@out@*/ int_32 * count, /*@out@*/ int * freeData) - /*@globals rpmGlobalMacroContext @*/ + /*@globals rpmGlobalMacroContext, h_errno @*/ /*@modifies *type, *data, *count, *freeData, rpmGlobalMacroContext @*/ /*@requires maxSet(type) >= 0 /\ maxSet(data) >= 0 /\ maxSet(count) >= 0 /\ maxSet(freeData) >= 0 @*/ |