Skip to content

Commit

Permalink
WIP: Vlen char
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Feb 23, 2024
1 parent 785bc0b commit d1effc8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/rest_vol_dataset.c
Original file line number Diff line number Diff line change
Expand Up @@ -4936,6 +4936,7 @@ RV_json_values_to_binary_callback(char *HTTP_response, void *callback_data_in, v

#ifdef RV_CONNECTOR_DEBUG
printf("-> Converting response JSON values to binary buffer\n\n");
printf("-> Response buffer: %s\n\n", HTTP_response);
#endif

if (!HTTP_response)
Expand Down Expand Up @@ -5032,6 +5033,10 @@ RV_json_values_to_binary_recursive(yajl_val value_entry, hid_t dtype_id, void *v
}
} break;

case(H5T_STRING): {
FUNC_GOTO_ERROR(H5E_OBJECT, H5E_UNSUPPORTED, FAIL, "vlen char seq in dev");
} break;

case (H5T_COMPOUND): {
/* Recursively parse each member of the compound type */
int nmembers = 0;
Expand Down

0 comments on commit d1effc8

Please sign in to comment.