diff --git a/CHANGES b/CHANGES index 8218d47ae0..4aff9f7a28 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,9 @@ +2.2-263 | 2014-03-30 20:19:05 +0200 + + * Don't include locations into serialization when cloning values. + (Robin Sommer) + 2.2-262 | 2014-03-30 20:12:47 +0200 * Refactor SerializationFormat::EndWrite and ChunkedIO::Chunk memory diff --git a/VERSION b/VERSION index b5309fe89c..24d315c04a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2-262 +2.2-263 diff --git a/aux/broctl b/aux/broctl index f8273c9eb5..f6308a0f7e 160000 --- a/aux/broctl +++ b/aux/broctl @@ -1 +1 @@ -Subproject commit f8273c9eb5db1168c21b298cd3af4f9b4b008717 +Subproject commit f6308a0f7eb0bef8279fb1ed282474291633cdb9 diff --git a/src/Val.cc b/src/Val.cc index 9b5b0b9d58..aa9c888d49 100644 --- a/src/Val.cc +++ b/src/Val.cc @@ -80,6 +80,7 @@ Val* Val::Clone() const CloneSerializer ss(form); SerialInfo sinfo(&ss); sinfo.cache = false; + sinfo.include_locations = false; if ( ! this->Serialize(&sinfo) ) return 0;