diff options
author | Ron Economos <w6rz@comcast.net> | 2015-05-29 08:41:11 -0700 |
---|---|---|
committer | Ron Economos <w6rz@comcast.net> | 2015-05-29 08:41:11 -0700 |
commit | 71c24a9b5af143b87eecdf807bb33778f0bd295b (patch) | |
tree | e8363089aee4c45f62bfdce7a6195f154cbe1557 | |
parent | 5b34e51e3b7f8e5161edaf69941f30599d16c77f (diff) |
Fix segfault in 64QAM non-rotated constellation mode.
-rw-r--r-- | gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc b/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc index 8127e372db..28e7c4fac2 100644 --- a/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc +++ b/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc @@ -556,7 +556,7 @@ namespace gr { case MOD_64QAM: for (int i = 0; i < noutput_items; i += cell_size) { if (cyclic_delay == FALSE) { - for (int j = 0; j < noutput_items; j++) { + for (int j = 0; j < cell_size; j++) { index = *in++; *out++ = m_64qam[index & 0x3f]; } |