Fix double free
[platform/core/connectivity/mtp-responder.git] / src / extract_descs / mtp_extract_descs_strs.c
1 /*
2  * Copyright (c) 2012, 2013, 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <errno.h>
18 #include <stdio.h>
19 #include "mtp_descs_strings.h"
20
21 static int write_blob(const char *filename, const void *blob, size_t size)
22 {
23         int ret;
24         FILE *fp;
25
26         fp = fopen(filename, "w");
27         if (!fp) {
28                 fprintf(stderr, "Could not open %s: %m\n", filename);
29                 return -errno;
30         }
31
32         ret = fwrite(blob, size, 1, fp);
33         if (ret < 0) {
34                 fprintf(stderr, "Could not write to %s\n", filename);
35                 goto out;
36         }
37
38         ret = 0;
39
40 out:
41         fclose(fp);
42         return ret;
43 }
44
45 int main()
46 {
47         int ret;
48
49         ret = write_blob("descs", &descriptors, sizeof(descriptors));
50         if (ret < 0)
51                 return ret;
52
53         ret = write_blob("strs", &strings, sizeof(strings));
54         return ret;
55 }