~ubuntu-branches/ubuntu/utopic/sblim-sfcc/utopic-proposed

« back to all changes in this revision

Viewing changes to backend/cimxml/grammar.c

  • Committer: Package Import Robot
  • Author(s): Bhavani Shankar
  • Date: 2013-06-26 13:28:21 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130626132821-y7r5bvguyzw8sv1a
Tags: 2.2.5-0ubuntu1
* New Upstream release
* Bump up standards to 3.9.4
* Add Build depend on autotools-dev to regenerate autotools helper file
* Wrap and sort Build deps in d/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
571
571
static void valueObjectWithPathData(ParserControl *parm, parseUnion *stateUnion)
572
572
{
573
573
        parseUnion lvalp={0};
574
 
        CMPIObjectPath *op;
 
574
        CMPIObjectPath *op = NULL;
575
575
        CMPIInstance *inst;
576
576
        ct = localLex((parseUnion*)&stateUnion->xtokObjectWithPathData, parm);
577
577
        if(ct == XTOK_CLASSPATH) {
590
590
                setInstQualifiers(inst, &stateUnion->xtokObjectWithPathData.inst.inst.qualifiers);
591
591
                setInstProperties(inst, &stateUnion->xtokObjectWithPathData.inst.inst.properties);
592
592
                simpleArrayAdd(parm->respHdr.rvArray,(CMPIValue*)&inst,CMPI_instance);
 
593
                if (op) op->ft->release(op);
593
594
        }
594
595
        else {
595
596
                parseError("XTOK_CLASSPATH or XTOK_INSTANCEPATH", ct, parm);