[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [Libvir] [PATCH] Fix string handling in virDomain{Get, Set}SchedulerParameters
- From: Daniel Veillard <veillard redhat com>
- To: "Richard W.M. Jones" <rjones redhat com>
- Cc: libvir-list redhat com
- Subject: Re: [Libvir] [PATCH] Fix string handling in virDomain{Get, Set}SchedulerParameters
- Date: Fri, 22 Jun 2007 05:43:20 -0400
On Fri, Jun 22, 2007 at 10:30:37AM +0100, Richard W.M. Jones wrote:
> This small patch fixes some bugs in the handling of the field string in
> virDomainGetSchedulerParameters and makes a similar pre-emptive fix to
> virDomainSetSchedulerParameters.
>
> Also, please don't use !strcmp(a,b), because it confuses me. Better is
> to write strcmp(a,b) == 0 to mean "strings match" and strcmp(a,b) != 0
> to mean "strings don't match".
yeah the strncmp use is vrong, it should be fixed. But I dislike the
change from strncpy to strcpy. I agree that affecting local variables
with fixed strings is not nice, but as we try to chase strcpy call out
of the code those will show up, le'ts use
strncpy(..., "weight", 6)
instead. Okay ?
Daniel
--
Red Hat Virtualization group http://redhat.com/virtualization/
Daniel Veillard | virtualization library http://libvirt.org/
veillard redhat com | libxml GNOME XML XSLT toolkit http://xmlsoft.org/
http://veillard.com/ | Rpmfind RPM search engine http://rpmfind.net/
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]