projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f4f81d
)
vsprintf: pre-calculate final string length for later use
author
André Goddard Rosa
<
[email protected]
>
Tue, 15 Dec 2009 02:00:56 +0000
(18:00 -0800)
committer
Linus Torvalds
<
[email protected]
>
Tue, 15 Dec 2009 16:53:29 +0000
(08:53 -0800)
Signed-off-by: André Goddard Rosa <
[email protected]
>
Acked-by: Frederic Weisbecker <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
lib/vsprintf.c
patch
|
blob
|
history
diff --git
a/lib/vsprintf.c
b/lib/vsprintf.c
index e5ab51fc2d9e4c450f1641d5ae736774dfa73b61..99747a58ec72137281c9cad363a34b52d8b14e2a 100644
(file)
--- a/
lib/vsprintf.c
+++ b/
lib/vsprintf.c
@@
-1496,13
+1496,14
@@
do { \
case FORMAT_TYPE_STR: {
const char *save_str = va_arg(args, char *);
size_t len;
+
if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
|| (unsigned long)save_str < PAGE_SIZE)
save_str = "(null)";
- len = strlen(save_str);
- if (str + len
+ 1
< end)
- memcpy(str, save_str, len
+ 1
);
- str += len
+ 1
;
+ len = strlen(save_str)
+ 1
;
+ if (str + len < end)
+ memcpy(str, save_str, len);
+ str += len;
break;
}