Skip Menu |

This queue is for tickets about the Redis-hiredis CPAN distribution.

Report information
The Basics
Id: 62234
Status: resolved
Priority: 0/
Queue: Redis-hiredis

People
Owner: NEOPHENIX [...] cpan.org
Requestors: isivirinov [...] rutube.ru
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: transactions on list
Date: Mon, 18 Oct 2010 17:17:59 +0400
To: bug-Redis-hiredis [...] rt.cpan.org
From: Сивиринов Иван <isivirinov [...] rutube.ru>
redis_version:2.1.4 perl v5.10.0 Redis::hiredis 0.0.2 $prefix = 'any_prefix'; $h->command(["del", $prefix."foo"]); $h->command(['multi']); $h->command(["lpush", $prefix."foo", "foo"]); $h->command(["lpush", $prefix."foo", "foos"]); $h->command(["lpush", $prefix."foo", "fooss"]); $h->command(["lpush", $prefix."foo", "foosss"]); $h->command(['exec']); Signal SEGV at /usr/share/perl/5.10/perl5db.pl line 638 .... ....
Resolved in 0.0.3 I was not correctly handling the fact that an array return can have both string / error and integer types.