Commit 64c28455 authored by Parminder Singh's avatar Parminder Singh

Fix - Issue with uninitialized structure in NR_ULSCH_CODING.c

- Initialized variable to remove the valgrind issue.
parent cfd19fe0
...@@ -389,14 +389,14 @@ int nr_ulsch_encoding(NR_UE_ULSCH_t *ulsch, ...@@ -389,14 +389,14 @@ int nr_ulsch_encoding(NR_UE_ULSCH_t *ulsch,
printf("%d \n", harq_process->d[0][cnt]); printf("%d \n", harq_process->d[0][cnt]);
} }
printf("\n");*/ printf("\n");*/
encoder_implemparams_t impp; encoder_implemparams_t impp = {
impp.n_segments=harq_process->C; .n_segments=harq_process->C,
impp.macro_num=0; .macro_num=0,
impp.tinput = NULL; .tinput = NULL,
impp.tprep = NULL; .tprep = NULL,
impp.tparity = NULL; .tparity = NULL,
impp.toutput = NULL; .toutput = NULL};
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_LDPC_ENCODER_OPTIM, VCD_FUNCTION_IN); VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_LDPC_ENCODER_OPTIM, VCD_FUNCTION_IN);
nrLDPC_encoder(harq_process->c,harq_process->d,*pz,Kb,Kr,BG,&impp); nrLDPC_encoder(harq_process->c,harq_process->d,*pz,Kb,Kr,BG,&impp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment