Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 98750
b: refs/heads/master
c: 4d8a743
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Jul 6, 2008
1 parent 0b6b6c7 commit 78d0a59
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 78a8bf69b32980879975f7e31d30386c50bfe851
refs/heads/master: 4d8a743cdd2690c0bc8d1b8cbd02cffb1ead849f
16 changes: 14 additions & 2 deletions trunk/lib/vsprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,14 @@ static char *string(char *buf, char *end, char *s, int field_width, int precisio
return buf;
}

static char *pointer(char *buf, char *end, void *ptr, int field_width, int precision, int flags)
/*
* Show a '%p' thing. A kernel extension is that the '%p' is followed
* by an extra set of alphanumeric characters that are extended format
* specifiers.
*
* Right now don't actually handle any such, but we will..
*/
static char *pointer(const char *fmt, char *buf, char *end, void *ptr, int field_width, int precision, int flags)
{
flags |= SMALL;
if (field_width == -1) {
Expand Down Expand Up @@ -663,7 +670,12 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
continue;

case 'p':
str = pointer(str, end, va_arg(args, void *), field_width, precision, flags);
str = pointer(fmt+1, str, end,
va_arg(args, void *),
field_width, precision, flags);
/* Skip all alphanumeric pointer suffixes */
while (isalnum(fmt[1]))
fmt++;
continue;

case 'n':
Expand Down

0 comments on commit 78d0a59

Please sign in to comment.