mirror of
https://github.com/openwrt/packages.git
synced 2025-02-14 13:48:04 +00:00
- Remove a mirror with invalid certificate - Manually rebase 010-link-to-libucontext.patch - Add new 020-fix-ucontext-maybe-uninitialized.patch Signed-off-by: Aleksey Vasilenko <aleksey.vasilenko@gmail.com>
13 lines
366 B
Diff
13 lines
366 B
Diff
--- a/libmariadb/ma_context.c
|
|
+++ b/libmariadb/ma_context.c
|
|
@@ -92,6 +92,9 @@ my_context_spawn(struct my_context *c, v
|
|
{
|
|
int err;
|
|
union pass_void_ptr_as_2_int u;
|
|
+ // Avoid 'may be used uninitialized' error on 32-bit systems
|
|
+ // upstream issue: https://jira.mariadb.org/browse/CONC-725
|
|
+ u.a[1] = 0;
|
|
|
|
err= getcontext(&c->spawned_context);
|
|
if (err)
|