summaryrefslogtreecommitdiff
path: root/codec/j2k_to_image.c
diff options
context:
space:
mode:
authorFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2007-02-13 09:00:37 +0000
committerFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2007-02-13 09:00:37 +0000
commitd084ff59f2da8bfa430d113105df1037fb1c605f (patch)
treeb0e44cacb2613bde311780296d510da4e4357b66 /codec/j2k_to_image.c
parentdcc6f679bc82055dca47654c562af27701b5da7c (diff)
David Fries suggestions. In image_to_j2k and j2k_to_image, strncpy() functions: instead of specifying the path size macro, let the compiler read the length out of the array entry.
Diffstat (limited to 'codec/j2k_to_image.c')
-rw-r--r--codec/j2k_to_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/codec/j2k_to_image.c b/codec/j2k_to_image.c
index 7a75b8d1..7d8eefd0 100644
--- a/codec/j2k_to_image.c
+++ b/codec/j2k_to_image.c
@@ -153,7 +153,7 @@ int parse_cmdline_decoder(int argc, char **argv, opj_dparameters_t *parameters)
infile);
return 1;
}
- strncpy(parameters->infile, infile, OPJ_PATH_LEN);
+ strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
}
break;
@@ -172,7 +172,7 @@ int parse_cmdline_decoder(int argc, char **argv, opj_dparameters_t *parameters)
fprintf(stderr, "Unknown output format image %s [only *.pnm, *.pgm, *.ppm, *.pgx or *.bmp]!! \n", outfile);
return 1;
}
- strncpy(parameters->outfile, outfile, OPJ_PATH_LEN);
+ strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
}
break;