aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols/mdns/files/0001-mdns-include-stddef.h-for-NULL.patch
blob: 3e9be7d6a527aff0af758410f9a9524f2f310eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From d744609c56f9872e5aa71707f1f71feec9867f51 Mon Sep 17 00:00:00 2001
From: Mikko Rapeli <mikko.rapeli@bmw.de>
Date: Tue, 14 Jul 2020 16:36:29 +0000
Subject: [PATCH 1/2] mdns: include <stddef.h> for NULL

Fixes build error with version 1096.40.7:

../mDNSCore/mDNS.c:11385:26: error: 'NULL' undeclared (first use in this function)
11385 |     const char *reason = NULL;
      |                          ^~~~
../mDNSCore/mDNS.c:56:1: note: 'NULL' is defined in header '<stddef.h>'; did you forget to '#include <stddef.h>'?
   55 | #include "dns_sd_internal.h"
  +++ |+#include <stddef.h>
   56 |
../mDNSCore/mDNS.c:11385:26: note: each undeclared identifier is reported only once for each function it appears in
11385 |     const char *reason = NULL;
      |                          ^~~~

Upstream-Status: Pending

Signed-off-by: Mikko Rapeli <mikko.rapeli@bmw.de>
---
 mDNSCore/mDNS.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mDNSCore/mDNS.c b/mDNSCore/mDNS.c
index 2fbea04..d4b9af5 100755
--- a/mDNSCore/mDNS.c
+++ b/mDNSCore/mDNS.c
@@ -23,6 +23,7 @@
  * routines, or types (which may or may not be present on any given platform).
  */
 
+#include <stddef.h> /* for NULL */
 #include "DNSCommon.h"                  // Defines general DNS utility routines
 #include "uDNS.h"                       // Defines entry points into unicast-specific routines
 #include "nsec.h"
-- 
2.20.1