diff options
Diffstat (limited to 'src/utils/wpabuf.c')
| -rw-r--r-- | src/utils/wpabuf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/utils/wpabuf.c b/src/utils/wpabuf.c index 96cb25cc1764b..77ee47288007d 100644 --- a/src/utils/wpabuf.c +++ b/src/utils/wpabuf.c @@ -244,15 +244,13 @@ struct wpabuf * wpabuf_concat(struct wpabuf *a, struct wpabuf *b) if (a) len += wpabuf_len(a); - if (b) - len += wpabuf_len(b); + len += wpabuf_len(b); n = wpabuf_alloc(len); if (n) { if (a) wpabuf_put_buf(n, a); - if (b) - wpabuf_put_buf(n, b); + wpabuf_put_buf(n, b); } wpabuf_free(a); |
