1
10
13
14
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
90
91
92
93
97
98
99
100
104
105
106
107
108
109
117
118
119
120
121
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_packet.h"
...
...
UINT _nxe_packet_release(NX_PACKET **packet_ptr_ptr)
{
UINT status;
NX_PACKET *packet_ptr;
packet_ptr = *packet_ptr_ptr;
if ((packet_ptr == NX_NULL) || (packet_ptr -> nx_packet_pool_owner == NX_NULL) ||
((packet_ptr -> nx_packet_pool_owner) -> nx_packet_pool_id != NX_PACKET_POOL_ID))
{
return(NX_PTR_ERROR);
}if ((packet_ptr == NX_NULL) || (packet_ptr -> nx_packet_pool_owner == NX_NULL) || ((packet_ptr -> nx_packet_pool_owner) -> nx_packet_pool_id != NX_PACKET_POOL_ID)) { ... }
if (packet_ptr -> nx_packet_prepend_ptr < packet_ptr -> nx_packet_data_start)
{
return(NX_UNDERFLOW);
}if (packet_ptr -> nx_packet_prepend_ptr < packet_ptr -> nx_packet_data_start) { ... }
if (packet_ptr -> nx_packet_append_ptr > packet_ptr -> nx_packet_data_end)
{
return(NX_OVERFLOW);
}if (packet_ptr -> nx_packet_append_ptr > packet_ptr -> nx_packet_data_end) { ... }
status = _nx_packet_release(packet_ptr);
if (status == NX_SUCCESS)
{
/* ... */
*packet_ptr_ptr = NX_NULL;
}if (status == NX_SUCCESS) { ... }
return(status);
}{ ... }