From: Michal MalĂ˝ Date: Thu, 10 Jul 2014 22:33:16 +0000 (+0200) Subject: Initialize HPCS_MeasuredData properly after allocation X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=0936d89ac8b5fdf849242a3e5bf167c5b5d8b7e0;p=libHPCS.git Initialize HPCS_MeasuredData properly after allocation --- diff --git a/libhpcs.c b/libhpcs.c index a43f183..09947cc 100644 --- a/libhpcs.c +++ b/libhpcs.c @@ -6,7 +6,20 @@ struct HPCS_MeasuredData* hpcs_alloc() { - return malloc(sizeof(struct HPCS_MeasuredData)); + struct HPCS_MeasuredData* mdata = malloc(sizeof(struct HPCS_MeasuredData)); + if (mdata == NULL) + return NULL; + + mdata->file_description = NULL; + mdata->sample_info = NULL; + mdata->operator_name = NULL; + mdata->method_name = NULL; + mdata->cs_ver = NULL; + mdata->cs_rev = NULL; + mdata->y_units = NULL; + mdata->data = NULL; + + return mdata; } char* hpcs_error_to_string(const enum HPCS_RetCode err)