Bug 862178

Summary: ruby-libvirt: ext/libvirt/stream.c registers Stream::recv with wrong parameter count
Product: [Community] Virtualization Tools Reporter: Philipp Wollermann <philipp>
Component: ruby-libvirtAssignee: Libvirt Maintainers <libvirt-maint>
Status: NEW --- QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: unspecified   
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
My patch for the bug. none

Description Philipp Wollermann 2012-10-02 07:54:42 UTC
Created attachment 620170 [details]
My patch for the bug.

Description of problem:

The code in libvirt/stream.c registers the function Stream::recv as having two parameters while in reality it has just one. Thus, when you call it, you must supply a bogus second parameter:

stream = conn.stream
vol.download stream, 0, 0, 0
data = stream.recv(1024, 0)

while it should be just

data = stream.recv(1024)

Version-Release number of selected component (if applicable):

ruby-libvirt
commit a8d79e06419efadc86fc16e74b50bfc406f9746d
Date:   Thu Oct 13 16:23:28 2011 -0400