aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2000-12-01 12:02:16 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2000-12-01 12:02:16 +0000
commitb673f44d6db0789c736031522d0c3416009f734e (patch)
tree0390bcde153bc363c46473f8e240f8277fdca7a4 /sbin
parent81bb1040b13ed99944fea547b6826f14d37532ff (diff)
Notes
Diffstat (limited to 'sbin')
-rw-r--r--sbin/camcontrol/camcontrol.c20
-rw-r--r--sbin/camcontrol/util.c4
2 files changed, 24 insertions, 0 deletions
diff --git a/sbin/camcontrol/camcontrol.c b/sbin/camcontrol/camcontrol.c
index ec4205354238..87e6fb9a9235 100644
--- a/sbin/camcontrol/camcontrol.c
+++ b/sbin/camcontrol/camcontrol.c
@@ -282,6 +282,11 @@ getdevtree(void)
bufsize = sizeof(struct dev_match_result) * 100;
ccb.cdm.match_buf_len = bufsize;
ccb.cdm.matches = (struct dev_match_result *)malloc(bufsize);
+ if (ccb.cdm.matches == NULL) {
+ warnx("can't malloc memory for matches");
+ close(fd);
+ return(1);
+ }
ccb.cdm.num_matches = 0;
/*
@@ -1202,6 +1207,11 @@ readdefects(struct cam_device *device, int argc, char **argv,
* to hold them all.
*/
defect_list = malloc(dlist_length);
+ if (defect_list == NULL) {
+ warnx("can't malloc memory for defect list");
+ error = 1;
+ goto defect_bailout;
+ }
rdd_cdb =(struct scsi_read_defect_data_10 *)&ccb->csio.cdb_io.cdb_bytes;
@@ -1678,6 +1688,11 @@ scsicmd(struct cam_device *device, int argc, char **argv, char *combinedopt,
fd_data = 1;
data_ptr = (u_int8_t *)malloc(data_bytes);
+ if (data_ptr == NULL) {
+ warnx("can't malloc memory for data_ptr");
+ error = 1;
+ goto scsicmd_bailout;
+ }
break;
case 'o':
if (arglist & CAM_ARG_CMD_IN) {
@@ -1700,6 +1715,11 @@ scsicmd(struct cam_device *device, int argc, char **argv, char *combinedopt,
hook.got = 0;
datastr = cget(&hook, NULL);
data_ptr = (u_int8_t *)malloc(data_bytes);
+ if (data_ptr == NULL) {
+ warnx("can't malloc memory for data_ptr");
+ error = 1;
+ goto scsicmd_bailout;
+ }
/*
* If the user supplied "-" instead of a format, he
* wants the data to be read from stdin.
diff --git a/sbin/camcontrol/util.c b/sbin/camcontrol/util.c
index 93f409bcd969..63f952d72e1b 100644
--- a/sbin/camcontrol/util.c
+++ b/sbin/camcontrol/util.c
@@ -125,6 +125,10 @@ arg_put(void *hook, int letter, void *arg, int count, char *name)
char *p;
p = malloc(count + 1);
+ if (p == NULL) {
+ fprintf(stderr, "can't malloc memory for p\n");
+ exit(1);
+ }
bzero(p, count +1);
strncpy(p, (char *)arg, count);