MAPREDUCE-3914. Mismatched free() / delete / delete [] in HadoopPipes (Joe Mudd via aw)
This commit is contained in:
parent
286cc6483f
commit
fc7cd46faf
|
@ -120,6 +120,7 @@ Trunk (Unreleased)
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
|
|
||||||
MAPREDUCE-6191. Improve clearing stale state of Java serialization
|
MAPREDUCE-6191. Improve clearing stale state of Java serialization
|
||||||
testcase. (Sam Liu via Eric Yang)
|
testcase. (Sam Liu via Eric Yang)
|
||||||
|
|
||||||
|
@ -168,6 +169,9 @@ Trunk (Unreleased)
|
||||||
MAPREDUCE-4695. Fix LocalRunner on trunk after MAPREDUCE-3223 broke it
|
MAPREDUCE-4695. Fix LocalRunner on trunk after MAPREDUCE-3223 broke it
|
||||||
(harsh)
|
(harsh)
|
||||||
|
|
||||||
|
MAPREDUCE-3914. Mismatched free() / delete / delete [] in HadoopPipes
|
||||||
|
(Joe Mudd via aw)
|
||||||
|
|
||||||
MAPREDUCE-4574. Fix TotalOrderParitioner to work with
|
MAPREDUCE-4574. Fix TotalOrderParitioner to work with
|
||||||
non-WritableComparable key types. (harsh)
|
non-WritableComparable key types. (harsh)
|
||||||
|
|
||||||
|
|
|
@ -1169,8 +1169,8 @@ namespace HadoopPipes {
|
||||||
if (outStream != NULL) {
|
if (outStream != NULL) {
|
||||||
//fclose(outStream);
|
//fclose(outStream);
|
||||||
}
|
}
|
||||||
delete bufin;
|
delete[] bufin;
|
||||||
delete bufout;
|
delete[] bufout;
|
||||||
return true;
|
return true;
|
||||||
} catch (Error& err) {
|
} catch (Error& err) {
|
||||||
fprintf(stderr, "Hadoop Pipes Exception: %s\n",
|
fprintf(stderr, "Hadoop Pipes Exception: %s\n",
|
||||||
|
|
Loading…
Reference in New Issue