Browse Source

fix confstr return value

per the specification, the terminating null byte is counted.
master
Timo Teräs 12 years ago
committed by Rich Felker
parent
commit
0a8d98285f
  1. 2
      src/conf/confstr.c

2
src/conf/confstr.c

@ -13,5 +13,5 @@ size_t confstr(int name, char *buf, size_t len)
}
// snprintf is overkill but avoid wasting code size to implement
// this completely useless function and its truncation semantics
return snprintf(buf, len, "%s", s);
return snprintf(buf, len, "%s", s) + 1;
}

Loading…
Cancel
Save