chiark
/
gitweb
/
~mdw
/
mLib
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b302779
)
buf.c: Step over terminating null byte.
author
Mark Wooding
<mdw@distorted.org.uk>
Sat, 5 May 2012 12:00:26 +0000
(13:00 +0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Sat, 5 May 2012 12:18:01 +0000
(13:18 +0100)
buf.c
patch
|
blob
|
blame
|
history
diff --git
a/buf.c
b/buf.c
index 9594349f1fa27fb8ae6dd8719f426e27fa90e2e9..8893adc1b8a133822140bc6a6b89d577eacfd61e 100644
(file)
--- a/
buf.c
+++ b/
buf.c
@@
-215,7
+215,8
@@
DOUINTCONV(BUF_PUTU_)
*
* Returns: Zero if OK, nonzero if there wasn't a null byte to be found.
*
- * Use: Finds a terminating null byte.
+ * Use: Finds a terminating null byte. The length includes this
+ * terminator.
*/
static int findz(buf *b, size_t *nn)
@@
-226,7
+227,7
@@
static int findz(buf *b, size_t *nn)
buf_break(b);
return (-1);
}
- *nn = p - BCUR(b);
+ *nn = p - BCUR(b)
+ 1
;
return (0);
}