r18865@cathode-dark-space: tlyu | 2006-11-27 23:57:55 -0500
ticket: new
target_version: 1.6
tags: pullup
subject: krb5int_copy_data_contents shouldn't free memory it didn't allocate
component: krb5-libs
* src/lib/krb5/krb/copy_data.c (krb5int_copy_data_contents): Don't
free outdata on malloc failure; we didn't allocate outdata.
ticket: 4928
version_fixed: 1.6
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@18883
dc483132-0cff-0310-8789-
dd5450dbe970
if (!indata) {
return EINVAL;
}
-
outdata->length = indata->length;
if (outdata->length) {
if (!(outdata->data = malloc(outdata->length))) {
- krb5_xfree(outdata);
return ENOMEM;
}
memcpy((char *)outdata->data, (char *)indata->data, outdata->length);