ravelox / pimidi

Raspberry Pi RTP MIDI
164 stars 38 forks source link

Fix to address correct parsing of hostname:port #90

Closed pierz closed 3 years ago

pierz commented 3 years ago

When configured to connect to a hostname:port using: remote.connect = hostname:port The first character of the hostname was getting truncated which then led to the lookup failure in get_sock_info() which resulted in a segfault (fixed by #89). This patch attempts to fix this problem.

Thanks for the great software!

ravelox commented 3 years ago

Thanks for finding and fixing this