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

« back to all changes in this revision

Viewing changes to backend/cimxml/qualifier.c

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2012-11-15 11:49:36 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20121115114936-53syr7flsjo21gw3
Tags: 2.2.4-0ubuntu1
* New upstream release.
* Add debian/watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
static CMPIData __convert2CMPIData ( struct native_qualifier * qual,
54
54
                                     CMPIString ** qualname )
55
55
{
56
 
        CMPIData result;
 
56
        CMPIData result = { 0, CMPI_nullValue, {0} };
57
57
 
58
58
        if ( qual != NULL ) {
59
59
                result.type  = qual->type;
64
64
                        *qualname  = native_new_CMPIString ( qual->name,
65
65
                                                             NULL );
66
66
                }
67
 
 
68
 
        } else {
69
 
                result.state = CMPI_nullValue;
70
67
        }
71
68
 
72
69
        return result;