• M
    lib: Use more of VIR_STEAL_PTR() · 5772885d
    Michal Privoznik 提交于
    We have this very handy macro called VIR_STEAL_PTR() which steals
    one pointer into the other and sets the other to NULL. The
    following coccinelle patch was used to create this commit:
    
      @ rule1 @
      identifier a, b;
      @@
    
      - b = a;
        ...
      - a = NULL;
      + VIR_STEAL_PTR(b, a);
    
    Some places were clean up afterwards to make syntax-check happy
    (e.g. some curly braces were removed where the body become a one
    liner).
    Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
    Reviewed-by: NErik Skultety <eskultet@redhat.com>
    5772885d
virsh-snapshot.c 60.0 KB