-
-
Notifications
You must be signed in to change notification settings - Fork 918
Open
Description
Memory leak is observed while searching in a document with undefined namespace prefix.
# Nokogiri (1.7.0.1)
---
warnings: []
nokogiri: 1.7.0.1
ruby:
version: 2.3.1
platform: x86_64-linux
description: ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]
engine: ruby
libxml:
binding: extension
source: packaged
libxml2_path: "/opt/rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/nokogiri-1.7.0.1/ports/x86_64-pc-linux-gnu/libxml2/2.9.4"
libxslt_path: "/opt/rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/nokogiri-1.7.0.1/ports/x86_64-pc-linux-gnu/libxslt/1.1.29"
libxml2_patches: []
libxslt_patches: []
compiled: 2.9.4
loaded: 2.9.4
Reproduced with:
require 'nokogiri'
while true do
begin
#parse simple xml. no namespace definition
doc = Nokogiri::XML('<ns1:Root></ns1:Root>')
# below code raises exception and leaks memory
body = doc.search('//ns1:Root').first
puts body.to_xml
rescue => e
puts e
end
end