diff options
author | Alexey Shchepin <alexey@process-one.net> | 2003-03-15 21:11:20 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2003-03-15 21:11:20 +0000 |
commit | 9921b1c1d8db12f9c81bc764ad37881ef8dbaf6d (patch) | |
tree | 018cd5ac47eaa4f697201265d9c2194eee0b5e22 /src/xml_stream.erl | |
parent | *** empty log message *** (diff) |
* src/xml_stream.erl: Removed "link" which cause not improper
closing of xml connections
SVN Revision: 89
Diffstat (limited to 'src/xml_stream.erl')
-rw-r--r-- | src/xml_stream.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/xml_stream.erl b/src/xml_stream.erl index 583fc7cf0..bb3776157 100644 --- a/src/xml_stream.erl +++ b/src/xml_stream.erl @@ -16,7 +16,6 @@ start(CallbackPid) -> spawn(?MODULE, init, [CallbackPid]). init(CallbackPid) -> - link(CallbackPid), Port = open_port({spawn, expat_erl}, [binary]), loop(CallbackPid, Port, []). |