You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wine/wine-preloader-segfault.patch

12 lines
484 B

--- wine-1.2/loader/preloader.c.atrandom 2010-07-16 17:05:45.000000000 +0200
+++ wine-1.2/loader/preloader.c 2010-07-28 18:12:27.000000000 +0200
@@ -519,7 +520,7 @@ static void set_auxiliary_values( ElfW(a
}
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];
}
*stack = dst;