Changeset ca95ccd in mainline
- Timestamp:
- 2024-08-22T20:46:18Z (3 months ago)
- Branches:
- master
- Children:
- 9546146
- Parents:
- cde067e
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.c
rcde067e rca95ccd 309 309 } 310 310 311 rc = vol_volumes_sync(volumes); 312 if (rc != EOK) { 313 printf("Error saving volume confiuration.\n"); 314 goto error; 315 } 316 311 317 printf("Configuring volume server: delete reference\n"); 312 318 vol_volume_del_ref(volume); -
uspace/lib/sif/src/sif.c
rcde067e rca95ccd 228 228 errno_t rc; 229 229 bool endtag; 230 FILE *f ;230 FILE *f = NULL; 231 231 232 232 doc = calloc(1, sizeof(sif_doc_t)); … … 255 255 } 256 256 257 fclose(f); 257 258 doc->root = root; 258 259 *rdoc = doc; … … 261 262 sif_node_delete(root); 262 263 free(doc); 264 if (f != NULL) 265 fclose(f); 263 266 return rc; 264 267 } … … 372 375 } 373 376 377 fclose(f); 374 378 return EOK; 375 379 error: -
uspace/srv/volsrv/volume.c
rcde067e rca95ccd 577 577 if (vol_volume_is_persist(volume)) { 578 578 /* Create 'volume' node. */ 579 rc = sif_node_append_child( rnode, "volume", &node);579 rc = sif_node_append_child(nvolumes, "volume", &node); 580 580 if (rc != EOK) 581 581 goto error;
Note:
See TracChangeset
for help on using the changeset viewer.