|
@@ -446,7 +446,7 @@ int probe_thermal_sysfs(void)
|
|
return -1;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
- ptdata.tzi = calloc(sizeof(struct tz_info), ptdata.max_tz_instance+1);
|
|
|
|
|
|
+ ptdata.tzi = calloc(ptdata.max_tz_instance+1, sizeof(struct tz_info));
|
|
if (!ptdata.tzi) {
|
|
if (!ptdata.tzi) {
|
|
fprintf(stderr, "Err: allocate tz_info\n");
|
|
fprintf(stderr, "Err: allocate tz_info\n");
|
|
return -1;
|
|
return -1;
|
|
@@ -454,8 +454,8 @@ int probe_thermal_sysfs(void)
|
|
|
|
|
|
/* we still show thermal zone information if there is no cdev */
|
|
/* we still show thermal zone information if there is no cdev */
|
|
if (ptdata.nr_cooling_dev) {
|
|
if (ptdata.nr_cooling_dev) {
|
|
- ptdata.cdi = calloc(sizeof(struct cdev_info),
|
|
|
|
- ptdata.max_cdev_instance + 1);
|
|
|
|
|
|
+ ptdata.cdi = calloc(ptdata.max_cdev_instance + 1,
|
|
|
|
+ sizeof(struct cdev_info));
|
|
if (!ptdata.cdi) {
|
|
if (!ptdata.cdi) {
|
|
free(ptdata.tzi);
|
|
free(ptdata.tzi);
|
|
fprintf(stderr, "Err: allocate cdev_info\n");
|
|
fprintf(stderr, "Err: allocate cdev_info\n");
|