
8 Aug
2008
8 Aug
'08
1:47 p.m.
"Daniel P. Berrange" <berrange@redhat.com> wrote:
The exec() family of UNIX functions have broken const-ness in the argv[] parameter. For inexplicable reasons, I followed this brokeness when originally doing the virRun/virExec functions. So every caller is either using wrong const-ness, or having to cast when calling them. This patch fixes the virRun/virExec API const-ness, so we only need apply a cast at the time we finally call exec()
+1 to massive cast removal + const-correctness fixes ;-) Nice. ACK