[Rpm-maint] [rpm-software-management/rpm] Fix spelling and grammar in conditionalbuilds.md (PR #3064)

2024-04-26 Thread Jonathan Wakely
You can view, comment on, or merge this pull request online at: https://github.com/rpm-software-management/rpm/pull/3064 -- Commit Summary -- * Fix spelling and grammar in conditionalbuilds.md -- File Changes -- M docs/manual/conditionalbuilds.md (4) -- Patch Links -- https://github

Re: [Rpm-maint] [rpm-software-management/rpm] SPECPARTS dir in %_builddir/%buildsubdir is leaking to setuptools package discovery (Issue #2532)

2023-09-04 Thread Jonathan Wakely
Could the default be `SPECPARTS-%{name}` instead of `%{name}-SPECPARTS`, so that `$RPM_BUILD_DIR/%{name}*` doesn't change meaning? -- Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/issues/2532#issuecomment-1705676298 You are receiving this becau

Re: [Rpm-maint] [PATCH] Fix array bounds check of decoding[] in base64_decode_value.

2016-06-06 Thread Jonathan Wakely
_in is less than 43 it will wrap to a positive value greater than 212, which will fail the sizeof(decoding)/sizeof(int) check. Fixed suggested by Jakub Wilk and Jonathan Wakely. Signed-off-by: Mark Wielaard --- rpmio/base64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/r

[Rpm-maint] [rpm-software-management/rpm] Fix off-by-one error (#68)

2016-05-25 Thread Jonathan Wakely
There's an off-by-one error in base64_decode_value which results in undefined behaviour: void* out; size_t len; rpmBase64Decode("\x7b", &out, &len); You can view, comment on, or merge this pull request online at: https://github.com/rpm-software-management/rpm/pull/68 -- Commit Sum