Skip to content

Commit

Permalink
Fix bug that could potentially cause an array bounds write.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdermold committed Mar 20, 2020
1 parent d1d8ff0 commit 299ebfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/libdsproc3/src/dsproc_trans_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ int dsproc_load_ret_transform_params(
{
Retriever *ret = _DSProc->retriever;
RetTransParams *trans_params;
char coordsys[128];
char coordsys[PATH_MAX];
char *params;
int index;
int check;
Expand Down

0 comments on commit 299ebfa

Please sign in to comment.