- fixed bug parsing OID string with space as separator

pull/179/head
Michael Zillgith 6 years ago
parent 7cb69c983a
commit c2d73c3fe8

@ -411,7 +411,7 @@ BerEncoder_encodeOIDToBuffer(const char* oidString, uint8_t* buffer, int maxBufL
if (separator == NULL) {
sepChar = ' ';
separator = strchr(oidString, ',');
separator = strchr(oidString, ' ');
}
if (separator == NULL) return 0;

Loading…
Cancel
Save