llc: use memset to fill llc dummy frame padding
Change-Id: Iaa55549f979ca23dad0bddd308c1144aa4b17255changes/91/23191/1
parent
9688dc9aca
commit
a70bf72ce5
|
@ -59,8 +59,10 @@ void gprs_llc::put_dummy_frame(size_t req_len)
|
|||
|
||||
/* Add further stuffing, if the requested length exceeds the minimum
|
||||
* dummy command length */
|
||||
while (m_length < req_len)
|
||||
frame[m_length++] = 0x2b;
|
||||
if (m_length < req_len) {
|
||||
memset(&frame[m_length], 0x2b, req_len - m_length);
|
||||
m_length = req_len;
|
||||
}
|
||||
}
|
||||
|
||||
void gprs_llc::put_frame(const uint8_t *data, size_t len)
|
||||
|
|
Loading…
Reference in New Issue