]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/patches/glibc/glibc-rh794817-2.patch
Merge remote-tracking branch 'stevee/mc-update' into thirteen
[people/pmueller/ipfire-2.x.git] / src / patches / glibc / glibc-rh794817-2.patch
CommitLineData
12788f63
MT
1diff -rup a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
2--- a/stdio-common/vfprintf.c 2012-03-05 09:43:14.705536167 -0700
3+++ b/stdio-common/vfprintf.c 2012-03-05 09:48:11.602890982 -0700
4@@ -822,7 +822,7 @@ vfprintf (FILE *s, const CHAR_T *format,
5 \
6 if (function_done < 0) \
7 { \
8- /* Error in print handler. */ \
9+ /* Error in print handler; up to handler to set errno. */ \
10 done = -1; \
11 goto all_done; \
12 } \
13@@ -876,7 +876,7 @@ vfprintf (FILE *s, const CHAR_T *format,
14 \
15 if (function_done < 0) \
16 { \
17- /* Error in print handler. */ \
18+ /* Error in print handler; up to handler to set errno. */ \
19 done = -1; \
20 goto all_done; \
21 } \
22@@ -1117,7 +1117,7 @@ vfprintf (FILE *s, const CHAR_T *format,
23 &mbstate); \
24 if (len == (size_t) -1) \
25 { \
26- /* Something went wron gduring the conversion. Bail out. */ \
27+ /* Something went wrong during the conversion. Bail out. */ \
28 done = -1; \
29 goto all_done; \
30 } \
31@@ -1188,6 +1188,7 @@ vfprintf (FILE *s, const CHAR_T *format,
32 if (__mbsnrtowcs (ignore, &str2, strend - str2, \
33 ignore_size, &ps) == (size_t) -1) \
34 { \
35+ /* Conversion function has set errno. */ \
36 done = -1; \
37 goto all_done; \
38 } \
39@@ -1599,6 +1600,7 @@ vfprintf (FILE *s, const CHAR_T *format,
40 if (spec == L_('\0'))
41 {
42 /* The format string ended before the specifier is complete. */
43+ __set_errno (EINVAL);
44 done = -1;
45 goto all_done;
46 }
47@@ -1696,17 +1698,20 @@ do_positional:
48
49 /* Determine the number of arguments the format string consumes. */
50 nargs = MAX (nargs, max_ref_arg);
51+ /* Calculate total size needed to represent a single argument across
52+ all three argument-related arrays. */
53 bytes_per_arg = sizeof (*args_value) + sizeof (*args_size)
54 + sizeof (*args_type);
55
56 /* Check for potential integer overflow. */
57- if (nargs > SIZE_MAX / bytes_per_arg)
58+ if (__builtin_expect (nargs > SIZE_MAX / bytes_per_arg, 0))
59 {
60+ __set_errno (ERANGE);
61 done = -1;
62 goto all_done;
63 }
64
65- /* Allocate memory for the argument descriptions. */
66+ /* Allocate memory for all three argument arrays. */
67 if (__libc_use_alloca (nargs * bytes_per_arg))
68 args_value = alloca (nargs * bytes_per_arg);
69 else
70@@ -1937,6 +1942,7 @@ do_positional:
71 about # of chars. */
72 if (function_done < 0)
73 {
74+ /* Function has set errno. */
75 done = -1;
76 goto all_done;
77 }
78@@ -1971,6 +1977,7 @@ do_positional:
79 of chars. */
80 if (function_done < 0)
81 {
82+ /* Function has set errno. */
83 done = -1;
84 goto all_done;
85 }