Fix buffer size error.

This commit is contained in:
John McNamara 2014-06-27 03:10:59 +01:00
parent 94890c06c0
commit d7c56d3ca5

View File

@ -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");