Check that p is not nil in format

This commit is contained in:
def
2015-01-05 01:40:47 +01:00
parent 38392d2d03
commit a90c388f6b

View File

@@ -355,7 +355,7 @@ proc `[]=`*(p: var MultipartData, name: string, file: tuple[name, contentType, c
p.add(name, file.content, file.name, file.contentType)
proc format(p: MultipartData): tuple[header, body: string] =
if p.content == nil or p.content.len == 0:
if p == nil or p.content == nil or p.content.len == 0:
return ("", "")
# Create boundary that is not in the data to be formatted