about summary refs log tree commit diff
path: root/converter/ppm/ppmtompeg
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-09-18 20:13:39 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-09-18 20:13:39 +0000
commitb4bfafb3a4151028ea5f010ce8f81d43c16bc358 (patch)
tree006e72f986824bfc9e3092408f3fdc61e1eccb37 /converter/ppm/ppmtompeg
parentfc9c45188e769615b5aa686d159a8ae6bd90c081 (diff)
downloadnetpbm-mirror-b4bfafb3a4151028ea5f010ce8f81d43c16bc358.tar.gz
netpbm-mirror-b4bfafb3a4151028ea5f010ce8f81d43c16bc358.tar.xz
netpbm-mirror-b4bfafb3a4151028ea5f010ce8f81d43c16bc358.zip
Fix free of non-allocated memory
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1285 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/ppm/ppmtompeg')
-rw-r--r--converter/ppm/ppmtompeg/param.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/converter/ppm/ppmtompeg/param.c b/converter/ppm/ppmtompeg/param.c
index bb5bc79a..a145d33c 100644
--- a/converter/ppm/ppmtompeg/param.c
+++ b/converter/ppm/ppmtompeg/param.c
@@ -283,8 +283,8 @@ GetFrameRate(const char * const p)
 
 
 static void
-mergeInputSource(struct inputSource * const baseSourceP,
-                 struct inputSource * const addedSourceP) {
+mergeInputSource(struct inputSource *       const baseSourceP,
+                 const struct inputSource * const addedSourceP) {
 
     unsigned int i;
 
@@ -294,12 +294,6 @@ mergeInputSource(struct inputSource * const baseSourceP,
     for (i = 0; i < addedSourceP->numInputFileEntries; ++i)
         baseSourceP->inputFileEntries[baseSourceP->numInputFileEntries++] =
             addedSourceP->inputFileEntries[i];
-
-    free(addedSourceP);
-    /* Note the space allocated for the *addedSourceP input file
-       entries themselves is still allocated, and used by 
-       *baseSourceP.
-    */
 }