The length test in MHIContext::SetNetBootInfo at the top takes care of any

From: Erik Hovland <erik@hovland.org>

length testing and the next one is useless.
---

 libs/libmythtv/mhi.cpp |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/libs/libmythtv/mhi.cpp b/libs/libmythtv/mhi.cpp
index 0390e49..05fc7f5 100644
--- a/libs/libmythtv/mhi.cpp
+++ b/libs/libmythtv/mhi.cpp
@@ -259,11 +259,8 @@ void MHIContext::SetNetBootInfo(const unsigned char *data, uint length)
     QMutexLocker locker(&m_dsmccLock);
     // Save the data from the descriptor.
     m_nbiData.duplicate(data, length);
-    // If there is no Network Boot Info or we're setting it
-    // for the first time just update the "last version".
-    if (length < 2)
-        m_lastNbiVersion = NBI_VERSION_ABSENT;
-    else if (m_lastNbiVersion == NBI_VERSION_UNSET)
+    // If we're setting it for the first time just update the "last version".
+    if (m_lastNbiVersion == NBI_VERSION_UNSET)
         m_lastNbiVersion = data[0];
     else
         m_engine_wait.wakeAll();
