FreeCalypso > hg > fc-pcsc-tools
diff simtool/writecmd.c @ 141:a1aa8ee2da85
read_hex_data_file(): add maxlen argument
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 24 Feb 2021 17:25:28 +0000 |
parents | 702c2c40e51a |
children | 3f6f50103dd3 |
line wrap: on
line diff
--- a/simtool/writecmd.c Wed Feb 24 17:16:04 2021 +0000 +++ b/simtool/writecmd.c Wed Feb 24 17:25:28 2021 +0000 @@ -15,7 +15,7 @@ fprintf(stderr, "error: offset argument is out of range\n"); return(-1); } - rc = read_hex_data_file(argv[2], data); + rc = read_hex_data_file(argv[2], data, 255); if (rc < 0) return(rc); len = rc; @@ -54,7 +54,7 @@ "error: record number argument is out of range\n"); return(-1); } - rc = read_hex_data_file(argv[2], data); + rc = read_hex_data_file(argv[2], data, 255); if (rc < 0) return(rc); if (rc != curfile_record_len) { @@ -70,7 +70,7 @@ u_char data[255]; int rc; - rc = read_hex_data_file(argv[1], data); + rc = read_hex_data_file(argv[1], data, 255); if (rc < 0) return(rc); if (rc != curfile_record_len) {