mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Fix buffer size error.
This commit is contained in:
parent
94890c06c0
commit
d7c56d3ca5
@ -144,8 +144,7 @@ _write_dcterms_created(lxw_core *self)
|
||||
struct xml_attribute *attribute;
|
||||
char datetime[ATTR_32];
|
||||
|
||||
_localtime_to_iso8601_date(&self->properties->created, datetime,
|
||||
MAX_ATTRIBUTE_LENGTH);
|
||||
_localtime_to_iso8601_date(&self->properties->created, datetime, ATTR_32);
|
||||
|
||||
_INIT_ATTRIBUTES();
|
||||
_PUSH_ATTRIBUTES_STR("xsi:type", "dcterms:W3CDTF");
|
||||
@ -165,8 +164,7 @@ _write_dcterms_modified(lxw_core *self)
|
||||
struct xml_attribute *attribute;
|
||||
char datetime[ATTR_32];
|
||||
|
||||
_localtime_to_iso8601_date(&self->properties->created, datetime,
|
||||
MAX_ATTRIBUTE_LENGTH);
|
||||
_localtime_to_iso8601_date(&self->properties->created, datetime, ATTR_32);
|
||||
|
||||
_INIT_ATTRIBUTES();
|
||||
_PUSH_ATTRIBUTES_STR("xsi:type", "dcterms:W3CDTF");
|
||||
|
Loading…
x
Reference in New Issue
Block a user