소스 검색

* Fixed a memory leak in histogram example

git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/libpipi/trunk@3082 92316355-f0b4-4df1-b90c-862c8a59935f
remotes/tiles
jylam 16 년 전
부모
커밋
c0359c8aa4
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      examples/histogram.c

+ 4
- 3
examples/histogram.c 파일 보기

@@ -10,7 +10,7 @@ int main(int argc, char *argv[])
{
char *srcname = NULL, *dstname = NULL;
pipi_image_t *img, *newimg, *tmp;
pipi_histogram_t* histogram;
pipi_histogram_t* histogram = NULL;
int ret = 0;
if(argc < 2)
{
@@ -37,12 +37,13 @@ int main(int argc, char *argv[])
histogram = pipi_new_histogram();
pipi_get_image_histogram(tmp, histogram, PIPI_COLOR_R|PIPI_COLOR_G|PIPI_COLOR_B);


pipi_render_histogram(tmp, histogram, PIPI_COLOR_R|PIPI_COLOR_G|PIPI_COLOR_B);

pipi_free_histogram(histogram);

pipi_save(tmp, dstname);
pipi_free(newimg);
pipi_free(tmp);
return ret;
}


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