PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ wkb_parse_state_check()

static void wkb_parse_state_check ( wkb_parse_state s,
size_t  next 
)
inlinestatic

Check that we are not about to read off the end of the WKB array.

Definition at line 125 of file lwin_wkb.c.

References lwerror(), wkb_parse_state::pos, wkb_parse_state::wkb, and wkb_parse_state::wkb_size.

Referenced by byte_from_wkb_state(), double_from_wkb_state(), integer_from_wkb_state(), lwpoint_from_wkb_state(), and ptarray_from_wkb_state().

126 {
127  if( (s->pos + next) > (s->wkb + s->wkb_size) )
128  lwerror("WKB structure does not match expected size!");
129 }
const uint8_t * wkb
Definition: lwin_wkb.c:37
size_t wkb_size
Definition: lwin_wkb.c:38
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
const uint8_t * pos
Definition: lwin_wkb.c:46
Here is the call graph for this function:
Here is the caller graph for this function: