Changeset 6a66923 in mainline
- Timestamp:
- 2016-06-22T21:49:58Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 92c07dc
- Parents:
- 5c7be3e
- git-author:
- Manuele Conti <conti.manuele@…> (2016-06-22 21:49:58)
- git-committer:
- Martin Decky <martin@…> (2016-06-22 21:49:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/label/src/gpt.c
r5c7be3e r6a66923 919 919 if (gpt_hdr == NULL) { 920 920 rc = ENOMEM; 921 goto e rror;921 goto exit; 922 922 } 923 923 … … 927 927 if (rc != EOK) { 928 928 rc = EIO; 929 goto e rror;929 goto exit; 930 930 } 931 931 … … 937 937 if (rc != EOK) { 938 938 rc = EIO; 939 goto error; 940 } 941 } 942 939 goto exit; 940 } 941 } 942 943 rc = EOK; 944 945 exit: 943 946 free(gpt_hdr); 944 return EOK;945 error:946 947 return rc; 947 948 }
Note:
See TracChangeset
for help on using the changeset viewer.