]> git.ipfire.org Git - thirdparty/ccache.git/commit
Avoid using strcat and small realloc
authorAnders F Björklund <anders.f.bjorklund@gmail.com>
Sun, 12 Aug 2018 16:10:59 +0000 (18:10 +0200)
committerAnders F Björklund <anders.f.bjorklund@gmail.com>
Sun, 12 Aug 2018 16:14:39 +0000 (18:14 +0200)
commit92f8b27d4e8fbeb618dfe23652cf868430617f4b
treeaac6f346e16d7c38b8f396166bccbf32f9ba6963
parentc5cdf144aea3d6f11617b7ea475ff34c4c55de30
Avoid using strcat and small realloc

For performance reasons with large strings, we don't want to
call strlen multiple times or to realloc one byte at a time.
src/execute.c
src/util.c