Transceiver52M: fixup for c5da660: We don't need to check for NULL with delete operator.

This commit is contained in:
Alexander Chemeris 2013-07-16 07:33:57 +04:00
parent c4038ef54c
commit 19ae715e71
1 changed files with 1 additions and 2 deletions

View File

@ -381,8 +381,7 @@ uhd_device::~uhd_device()
stop();
for (int i = 0; i < NUM_RX_CHANS; i++) {
if (rx_smpl_buf[i])
delete rx_smpl_buf[i];
delete rx_smpl_buf[i];
}
}