diff uicc/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 1b1468869ccf
children
line wrap: on
line diff
--- a/uicc/writecmd.c	Wed Feb 24 17:16:04 2021 +0000
+++ b/uicc/writecmd.c	Wed Feb 24 17:25:28 2021 +0000
@@ -16,7 +16,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;
@@ -59,7 +59,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 != last_sel_file_record_len) {