diff options
author | Andrej Rode <andrej.rode@ettus.com> | 2016-12-16 10:40:00 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-01-12 15:15:37 -0800 |
commit | 6d7692f393b9d1e5e75b8239a3249ee02e0441d9 (patch) | |
tree | 3fc05ae46f9be46f8fcab696f690e589aaf97c60 /host/utils | |
parent | fba670a3c7d45847e48fc9dc8a3bdb6da0b1b948 (diff) | |
download | uhd-6d7692f393b9d1e5e75b8239a3249ee02e0441d9.tar.gz uhd-6d7692f393b9d1e5e75b8239a3249ee02e0441d9.tar.bz2 uhd-6d7692f393b9d1e5e75b8239a3249ee02e0441d9.zip |
usrp2: fixes according to coverity reports
Diffstat (limited to 'host/utils')
-rw-r--r-- | host/utils/usrp_n2xx_simple_net_burner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/utils/usrp_n2xx_simple_net_burner.cpp b/host/utils/usrp_n2xx_simple_net_burner.cpp index 56af3ce4a..f85ea9def 100644 --- a/host/utils/usrp_n2xx_simple_net_burner.cpp +++ b/host/utils/usrp_n2xx_simple_net_burner.cpp @@ -326,7 +326,7 @@ int read_fpga_image(std::string& fpga_path){ fpga_file.seekg(0, std::ios::beg); fpga_file.read((char*)fpga_test_bytes,63); bool is_good = false; - for(int i = 0; i < 63; i++){ + for(int i = 0; i < 62; i++){ if(fpga_test_bytes[i] == 255) continue; else if(fpga_test_bytes[i] == 170 and fpga_test_bytes[i+1] == 153){ |