diff options
author | jbj <devnull@localhost> | 2001-04-29 22:43:01 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-04-29 22:43:01 +0000 |
commit | 81ac89f4e6f176f9095e73b34d94d4ccf12da237 (patch) | |
tree | 85ef09056d85954efdee78fa6875611d460b538d /lib/stringbuf.c | |
parent | c83cfd5ed5b9637a090e57bef5aca5d5b96d00f4 (diff) | |
download | librpm-tizen-81ac89f4e6f176f9095e73b34d94d4ccf12da237.tar.gz librpm-tizen-81ac89f4e6f176f9095e73b34d94d4ccf12da237.tar.bz2 librpm-tizen-81ac89f4e6f176f9095e73b34d94d4ccf12da237.zip |
- more boring lclint annotations and fiddles.
CVS patchset: 4725
CVS date: 2001/04/29 22:43:01
Diffstat (limited to 'lib/stringbuf.c')
-rw-r--r-- | lib/stringbuf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stringbuf.c b/lib/stringbuf.c index 0be19a708..203f869c5 100644 --- a/lib/stringbuf.c +++ b/lib/stringbuf.c @@ -82,7 +82,9 @@ void appendStringBufAux(StringBuf sb, const char *s, int nl) sb->tail = sb->buf + (sb->allocated - sb->free); } + /*@-mayaliasunique@*/ strcpy(sb->tail, s); + /*@=mayaliasunique@*/ sb->tail += l; sb->free -= l; if (nl) { |