Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nanopb
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
le
nanopb
Commits
607cb998
Commit
607cb998
authored
11 years ago
by
Petteri Aimonen
Browse files
Options
Downloads
Patches
Plain Diff
More configuration options for dynamic alloc
parent
ab624020
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pb.h
+14
-0
14 additions, 0 deletions
pb.h
pb_decode.c
+3
-3
3 additions, 3 deletions
pb_decode.c
with
17 additions
and
3 deletions
pb.h
+
14
−
0
View file @
607cb998
...
...
@@ -10,6 +10,9 @@
* uncommenting the lines, or on the compiler command line. *
*****************************************************************/
/* Enable support for dynamically allocated fields */
/* #define PB_ENABLE_MALLOC 1 */
/* Define this if your CPU architecture is big endian, i.e. it
* stores the most-significant byte first. */
/* #define __BIG_ENDIAN__ 1 */
...
...
@@ -340,6 +343,17 @@ struct _pb_extension_t {
pb_extension_t
*
next
;
};
/* Memory allocation functions to use. You can define pb_realloc and
* pb_free to custom functions if you want. */
#ifdef PB_ENABLE_MALLOC
# ifndef pb_realloc
# define pb_realloc(ptr, size) realloc(ptr, size)
# endif
# ifndef pb_free
# define pb_free(ptr) free(ptr)
# endif
#endif
/* These macros are used to declare pb_field_t's in the constant array. */
/* Size of a structure member, in bytes. */
#define pb_membersize(st, m) (sizeof ((st*)0)->m)
...
...
This diff is collapsed.
Click to expand it.
pb_decode.c
+
3
−
3
View file @
607cb998
...
...
@@ -480,7 +480,7 @@ static bool checkreturn allocate_field(pb_istream_t *stream, void *pData, size_t
/* Allocate new or expand previous allocation */
/* Note: on failure the old pointer will remain in the structure,
* the message must be freed by caller also on error return. */
ptr
=
realloc
(
ptr
,
size
);
ptr
=
pb_
realloc
(
ptr
,
size
);
if
(
ptr
==
NULL
)
PB_RETURN_ERROR
(
stream
,
"realloc failed"
);
...
...
@@ -945,7 +945,7 @@ void pb_release(const pb_field_t fields[], void *dest_struct)
size_t
count
=
*
(
size_t
*
)
iter
.
pSize
;
while
(
count
--
)
{
free
(
*
pItem
);
pb_
free
(
*
pItem
);
*
pItem
++
=
NULL
;
}
}
...
...
@@ -968,7 +968,7 @@ void pb_release(const pb_field_t fields[], void *dest_struct)
}
/* Release main item */
free
(
*
(
void
**
)
iter
.
pData
);
pb_
free
(
*
(
void
**
)
iter
.
pData
);
*
(
void
**
)
iter
.
pData
=
NULL
;
}
}
while
(
pb_field_next
(
&
iter
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment