Skip to content

Commit

Permalink
Remove double free() in contrib/shpsrt, issue #39
Browse files Browse the repository at this point in the history
This fixes issue #39
  • Loading branch information
eldstal authored Jan 3, 2022
1 parent 21ae8fc commit c75b928
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contrib/shpsort.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ static char ** split(const char *arg, const char *delim) {
free(result[--i]);
}
free(result);
free(copy);
return NULL;
}
result = tmp;
Expand Down

0 comments on commit c75b928

Please sign in to comment.