Skip to content

Commit

Permalink
Initialize global type array ptr to NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Nov 10, 2023
1 parent 36423cb commit 5562e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rest_vol.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ typedef struct H5_rest_ad_info_t {
} H5_rest_ad_info_t;

/* Global array containing information about open objects */
RV_type_info *RV_type_info_array_g[H5I_MAX_NUM_TYPES];
RV_type_info *RV_type_info_array_g[H5I_MAX_NUM_TYPES] = {0};

/* Host header string for specifying the host (Domain) for requests */
const char *const host_string = "X-Hdf-domain: ";
Expand Down

0 comments on commit 5562e97

Please sign in to comment.