summaryrefslogtreecommitdiff
path: root/lib/stringbuf.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-04-29 22:43:01 +0000
committerjbj <devnull@localhost>2001-04-29 22:43:01 +0000
commit81ac89f4e6f176f9095e73b34d94d4ccf12da237 (patch)
tree85ef09056d85954efdee78fa6875611d460b538d /lib/stringbuf.c
parentc83cfd5ed5b9637a090e57bef5aca5d5b96d00f4 (diff)
downloadlibrpm-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.c2
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) {