Skip to content

Commit 39aca1a

Browse files
committed
Fix uninitialized variable in makeprof command
1 parent da6b953 commit 39aca1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cmd/makeprof.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ suscli_makeprof_ctx_make_all(struct suscli_makeprof_ctx *self)
9595
{
9696
suscan_device_facade_t *facade = NULL;
9797
suscan_device_properties_t **prop_list = NULL;
98-
int i, count;
98+
int i, count = 0;
9999
SUBOOL ok = SU_FALSE;
100100

101101
SU_TRY(facade = suscan_device_facade_instance());

0 commit comments

Comments
 (0)