https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=15248

--- Comment #4 from Peter Wu <pe...@lekensteyn.nl> ---
I can also reproduce it without Wireshark and two tshark processes only:

1. Keep a tshark process open with a mmdbresolve.exe process.
tshark -Xlua_script:sleep.lua -r dns+icmp.pcapng.gz
local proto = Proto.new("dummysleep", "sleeping")
function proto.dissector()
    print("Sleep")
    local t2 = os.clock() + 10
    while (os.clock() < t2) do
    end
    print("Awake")
end
register_postdissector(proto)

2. Run another "tshark -r dns+icmp.pcapng.gz | sort" pipe

"sort" is not necessary, without it you can still observe stray mmdbresolve.exe
processes.

-- 
You are receiving this mail because:
You are watching all bug changes.
___________________________________________________________________________
Sent via:    Wireshark-bugs mailing list <wireshark-bugs@wireshark.org>
Archives:    https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
             mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

Reply via email to