Fixed bug in parser: clone_data member of message body is not set.

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@801 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2006-11-15 14:38:55 +00:00
parent 5a9e2041ee
commit f538d2d77f
1 changed files with 1 additions and 0 deletions

View File

@ -999,6 +999,7 @@ parse_headers:
body->data = scanner->curptr;
body->len = scanner->end - scanner->curptr;
body->print_body = &generic_print_body;
body->clone_data = &pjsip_clone_text_data;
msg->body = body;
}