소스 검색

* Fix a bug in replace().

git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/cacamoo/trunk@1265 92316355-f0b4-4df1-b90c-862c8a59935f
master
sam 18 년 전
부모
커밋
a308b80e12
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/main.c

+ 2
- 2
src/main.c 파일 보기

@@ -458,7 +458,7 @@ char *replace(char *s1, char *oldpiece, const char *newpiece)
tocopy = strlen(s1 + i1);
if(oldlen < newlen)
s2 = realloc(s2, i2 + tocopy + 1);
memmove(s2 + i2, s1 + i1, tocopy + 1);
memcpy(s2 + i2, s1 + i1, tocopy + 1);
if(oldlen < newlen)
free(s1);
return s2;
@@ -468,7 +468,7 @@ char *replace(char *s1, char *oldpiece, const char *newpiece)
if(oldlen < newlen)
s2 = realloc(s2, i2 + tocopy + newlen);
memmove(s2 + i2, s1 + i1, tocopy);
memcpy(s2 + tocopy, newpiece, newlen);
memcpy(s2 + i2 + tocopy, newpiece, newlen);
i1 += tocopy + oldlen;
i2 += tocopy + newlen;
}


불러오는 중...
취소
저장