diff options
author | Evan Huus <eapache@gmail.com> | 2013-06-19 23:08:58 +0000 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2013-06-19 23:08:58 +0000 |
commit | 8b0f1addd990ae1b6616dbb5a21e530942461154 (patch) | |
tree | e72f102e0cec19ee49b5729f8dcfa62afa3a931d /asn1/pkcs1 | |
parent | e6e7c1181bd33a94de00e137685f39520bd858dc (diff) | |
download | wireshark-8b0f1addd990ae1b6616dbb5a21e530942461154.tar.gz wireshark-8b0f1addd990ae1b6616dbb5a21e530942461154.tar.bz2 wireshark-8b0f1addd990ae1b6616dbb5a21e530942461154.zip |
Apparently one of our major global headers must include emem.h, because I just
found a bunch more asn1 dissectors using emem without ever directly including
the header. Convert those to wmem as well, which involves add a number of
#include directives since dissectors do *not* automatically pull in the wmem
headers.
svn path=/trunk/; revision=50066
Diffstat (limited to 'asn1/pkcs1')
-rw-r--r-- | asn1/pkcs1/packet-pkcs1-template.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/asn1/pkcs1/packet-pkcs1-template.c b/asn1/pkcs1/packet-pkcs1-template.c index 4ad0ae0f0a..5d0b2764db 100644 --- a/asn1/pkcs1/packet-pkcs1-template.c +++ b/asn1/pkcs1/packet-pkcs1-template.c @@ -29,6 +29,7 @@ #include <epan/packet.h> #include <epan/oids.h> #include <epan/asn1.h> +#include <epan/wmem/wmem.h> #include "packet-ber.h" #include "packet-pkcs1.h" |