From: Mathieu Malaterre Date: Fri, 7 Mar 2014 16:17:21 +0000 (+0000) Subject: [trunk] Use C-style comments X-Git-Tag: version.2.0.1~4^2~79 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=aedff8a0009c34fa4940463498ae27d9938b7fcd;p=openjpeg.git [trunk] Use C-style comments --- diff --git a/tests/compareRAWimages.c b/tests/compareRAWimages.c index b4fa9427..d913cf9b 100644 --- a/tests/compareRAWimages.c +++ b/tests/compareRAWimages.c @@ -77,14 +77,14 @@ static int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param) { case 'b': sizemembasefile = strlen(opj_optarg)+1; - free(param->base_filename); // handle dup option + free(param->base_filename); /* handle dup option */ param->base_filename = (char*) malloc(sizemembasefile); strcpy(param->base_filename, opj_optarg); /*printf("param->base_filename = %s [%d / %d]\n", param->base_filename, strlen(param->base_filename), sizemembasefile );*/ break; case 't': sizememtestfile = strlen(opj_optarg) + 1; - free(param->test_filename); // handle dup option + free(param->test_filename); /* handle dup option */ param->test_filename = (char*) malloc(sizememtestfile); strcpy(param->test_filename, opj_optarg); /*printf("param->test_filename = %s [%d / %d]\n", param->test_filename, strlen(param->test_filename), sizememtestfile);*/