blob: a07ff0a02b163d522321d8410f5ebc5a722561b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ext/shout_ext.c.orig 2015-05-27 15:58:04 UTC
+++ ext/shout_ext.c
@@ -250,7 +250,7 @@ static VALUE _sh_send(VALUE self, VALUE
shout_connection *s;
GET_SC(self, s);
- Check_SafeStr(to_send);
+ SafeStringValue(to_send);
err = shout_send(s->conn, (unsigned char *) (RSTRING_PTR(to_send)),
RSTRING_LEN(to_send));
if(err != SHOUTERR_SUCCESS) {
|