Commit 2bea45dd authored by Harald Hoyer's avatar Harald Hoyer Committed by Alexandre Julliard

preloader: Fix moving of auxiliary values.

parent f0de2d9d
...@@ -519,7 +519,7 @@ static void set_auxiliary_values( ElfW(auxv_t) *av, const ElfW(auxv_t) *new_av, ...@@ -519,7 +519,7 @@ static void set_auxiliary_values( ElfW(auxv_t) *av, const ElfW(auxv_t) *new_av,
} }
else if (new_count < delete_count) /* get rid of unused values */ else if (new_count < delete_count) /* get rid of unused values */
{ {
int len = (char *)(av + av_count + 1) - dst; int len = (char *)(av + av_count + 1) - src;
for (i = len - 1; i >= 0; i--) dst[i] = src[i]; for (i = len - 1; i >= 0; i--) dst[i] = src[i];
} }
*stack = dst; *stack = dst;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment