commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 01/06: Fix segfault in 64QAM non-rotated co


From: git
Subject: [Commit-gnuradio] [gnuradio] 01/06: Fix segfault in 64QAM non-rotated constellation mode.
Date: Sun, 14 Jun 2015 15:08:46 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch maint
in repository gnuradio.

commit 71c24a9b5af143b87eecdf807bb33778f0bd295b
Author: Ron Economos <address@hidden>
Date:   Fri May 29 08:41:11 2015 -0700

    Fix segfault in 64QAM non-rotated constellation mode.
---
 gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc 
b/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc
index 8127e37..28e7c4f 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];
               }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]