| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Otherwise a left paren in a string can bring an obscure segfault.
|
|
|
|
Ericsson MBM devices send CRSM information as hex strings, yet enclose
them in quotes which is not according to the standard.
|
|
This is completely broken according to the standard, but some vendors
use this in their "special" commands.
|
|
|
|
|
|
Currently next_string and next_hexstring functions use a static
buffer in the iterator to store the value. This value is clobbered
as soon as next_string or next_hexstring is called. Instead,
we copy the entire line in iter_next and use it as a scratch buffer.
The only limitation is that lines of max 2048 are possible, however
these are limited to around this size by parts of the standard.
|
|
|
|
|