Skip to content

Commit

Permalink
Fix Uninitialized Variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Vasudeo Desai committed Feb 4, 2025
1 parent e289f0a commit 9642f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vector/v.to.3d/trans3.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void trans3d(struct Map_info *In, struct Map_info *Out, int type,
struct line_pnts *Points;
struct line_cats *Cats;

struct field_info *Fi;
struct field_info *Fi = NULL;
dbDriver *driver;
dbString stmt;
char buf[2000];
Expand Down

0 comments on commit 9642f91

Please sign in to comment.