summaryrefslogtreecommitdiffstats
path: root/xml
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-03-29 20:51:48 -0700
committerElliott Hughes <enh@google.com>2010-03-29 20:51:48 -0700
commit7ca6fd0dca02f7abdd8808db78357743bbdd23a5 (patch)
treeb44b5d779ad41c1ba367c95764b5d8fefaa26836 /xml
parent3314eef71dbd0ed6d8aa96fb99432ff125cc4121 (diff)
downloadlibcore-7ca6fd0dca02f7abdd8808db78357743bbdd23a5.zip
libcore-7ca6fd0dca02f7abdd8808db78357743bbdd23a5.tar.gz
libcore-7ca6fd0dca02f7abdd8808db78357743bbdd23a5.tar.bz2
Fix a bug, and protect against an unrelated class of bugs.
If the Java array allocation in InetAddress.cpp failed, we'd free NULL instead of the previously-allocated structure. This is a new bug in froyo, but only happens in out of memory situations, so doesn't seem worth fixing there. Unrelatedly, let's disallow assignment and copying of all our RAII classes. This isn't a mistake I've seen made, but it's easy to protect against, so we may as well do so consistently. Change-Id: I2433b31ff983d388788b09e59e08d661f1725ecd
Diffstat (limited to 'xml')
-rw-r--r--xml/src/main/native/org_apache_harmony_xml_ExpatParser.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/xml/src/main/native/org_apache_harmony_xml_ExpatParser.cpp b/xml/src/main/native/org_apache_harmony_xml_ExpatParser.cpp
index b893309..d4fc557 100644
--- a/xml/src/main/native/org_apache_harmony_xml_ExpatParser.cpp
+++ b/xml/src/main/native/org_apache_harmony_xml_ExpatParser.cpp
@@ -562,6 +562,10 @@ private:
mPrefix = "";
}
}
+
+ // Disallow copy and assignment.
+ ExpatElementName(const ExpatElementName&);
+ void operator=(const ExpatElementName&);
};
/**