Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check the result of malloc #29

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions multipart_parser.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Based on node-formidable by Felix Geisendörfer
/* Based on node-formidable by Felix Geisendörfer
* Igor Afonov - [email protected] - 2012
* MIT License - http://www.opensource.org/licenses/mit-license.php
*/
Expand Down Expand Up @@ -83,10 +83,13 @@ multipart_parser* multipart_parser_init
multipart_parser* p = malloc(sizeof(multipart_parser) +
strlen(boundary) +
strlen(boundary) + 9);
if (!p) {
return NULL;
}

strcpy(p->multipart_boundary, boundary);
p->boundary_length = strlen(boundary);

p->lookbehind = (p->multipart_boundary + p->boundary_length + 1);

p->index = 0;
Expand Down Expand Up @@ -272,7 +275,7 @@ size_t multipart_parser_execute(multipart_parser* p, const char *buf, size_t len
break;
}
return i;

case s_part_data_final_hyphen:
multipart_log("s_part_data_final_hyphen");
if (c == '-') {
Expand Down
2 changes: 1 addition & 1 deletion multipart_parser.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Based on node-formidable by Felix Geisendörfer
/* Based on node-formidable by Felix Geisendörfer
* Igor Afonov - [email protected] - 2012
* MIT License - http://www.opensource.org/licenses/mit-license.php
*/
Expand Down