Index: tools/skiaserve/urlhandlers/PostHandler.cpp |
diff --git a/tools/skiaserve/urlhandlers/PostHandler.cpp b/tools/skiaserve/urlhandlers/PostHandler.cpp |
index ce599200b28578829013637af3eb8159aa651249..34beefae11cd414c0c1c0efc3ead487b23fe2287 100644 |
--- a/tools/skiaserve/urlhandlers/PostHandler.cpp |
+++ b/tools/skiaserve/urlhandlers/PostHandler.cpp |
@@ -66,11 +66,10 @@ int PostHandler::handle(Request* request, MHD_Connection* connection, |
fprintf(stderr, "Could not create picture from stream.\n"); |
return MHD_NO; |
} |
- |
+ |
// clear upload context |
delete request->fUploadContext; |
request->fUploadContext = nullptr; |
return SendTemplate(connection, true, "/"); |
} |
- |