Add missing break to prevent segfault

When printing objects with extension, falling through to type ARRAY may cause segmentation fault.
This commit is contained in:
Dror Levin
2015-01-01 15:15:47 +02:00
parent 7ab7eaf61b
commit b9a80697bc

View File

@@ -672,6 +672,7 @@ inline std::ostream& operator<< (std::ostream& s, const object& o)
case type::EXT:
s << "EXT";
break;
case type::ARRAY:
s << "[";