projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
878e08d
)
Fix NUL-termination bug in delimcpy()
Chip Salzenberg [Wed, 30 Apr 1997 05:27:58 +0000 (17:27 +1200)]
util.c
patch
|
blob
|
blame
|
history
diff --git
a/util.c
b/util.c
index
2ee9c0e
..
fc24583
100644
(file)
--- a/
util.c
+++ b/
util.c
@@
-302,14
+302,13
@@
I32 *retlen;
from++;
}
}
- else if (*from == delim) {
- if (to < toend)
- *to = '\0';
+ else if (*from == delim)
break;
- }
if (to < toend)
*to++ = *from;
}
+ if (to < toend)
+ *to = '\0';
*retlen = tolen;
return from;
}