ClumpletWriter.cpp (Firebird-3.0.2.32703-0.tar.bz2) | : | ClumpletWriter.cpp (Firebird-3.0.4.33054-0.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 269 | skipping to change at line 269 | |||
void ClumpletWriter::insertString(UCHAR tag, const char* str) | void ClumpletWriter::insertString(UCHAR tag, const char* str) | |||
{ | { | |||
insertString(tag, str, strlen(str)); | insertString(tag, str, strlen(str)); | |||
} | } | |||
void ClumpletWriter::insertString(UCHAR tag, const char* str, FB_SIZE_T length) | void ClumpletWriter::insertString(UCHAR tag, const char* str, FB_SIZE_T length) | |||
{ | { | |||
insertBytesLengthCheck(tag, str, length); | insertBytesLengthCheck(tag, str, length); | |||
} | } | |||
void ClumpletWriter::insertData(UCHAR tag, const UCharBuffer& data) | ||||
{ | ||||
insertBytesLengthCheck(tag, data.begin(), data.getCount()); | ||||
} | ||||
void ClumpletWriter::insertPath(UCHAR tag, const PathName& str) | void ClumpletWriter::insertPath(UCHAR tag, const PathName& str) | |||
{ | { | |||
insertString(tag, str.c_str(), str.length()); | insertString(tag, str.c_str(), str.length()); | |||
} | } | |||
void ClumpletWriter::insertBytes(UCHAR tag, const void* bytes, FB_SIZE_T length) | void ClumpletWriter::insertBytes(UCHAR tag, const void* bytes, FB_SIZE_T length) | |||
{ | { | |||
insertBytesLengthCheck(tag, bytes, length); | insertBytesLengthCheck(tag, bytes, length); | |||
} | } | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added |