Bug fix: We were erroneously making a Perl scalar mortal (which causes
its reference count to be decremented when it goes out of scope) when
receiving binary data from the server. Decrementing the reference count
to early meant the scalar was being cleaned up when it was in fact
still in use.
This change simply removes the sv_2mortal() call.
Thanks to Mike Hall at National Instruments for finding this one.