]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Follow up for r16044.
authorIvo Raisr <ivosh@ivosh.net>
Sun, 16 Oct 2016 21:09:40 +0000 (21:09 +0000)
committerIvo Raisr <ivosh@ivosh.net>
Sun, 16 Oct 2016 21:09:40 +0000 (21:09 +0000)
Fix compilation problem on Solaris.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16045

coregrind/m_initimg/initimg-solaris.c

index 537e527afc51869509a536abb63d810c797222db..d3c6ebf69b529871ccb4f5d05a929c8132dc017c 100644 (file)
@@ -955,8 +955,8 @@ IIFinaliseImageInfo VG_(ii_create_image)(IICreateImageInfo iicii,
       }
    }
 
-   VG_(free)(info.interp_name); VG_(free)(info->interp_name);
-   VG_(free)(info.interp_args); VG_(free)(info->interp_args);
+   VG_(free)(info.interp_name);
+   VG_(free)(info.interp_args);
    return iifii;
 }