fragattacks/src/common
Jouni Malinen 89b48f7b95 Use os_zalloc() instead of os_malloc() and os_memset()
Automatically updated with spatch and the following semantic patch:

@@
expression X;
expression E1;
statement S;
@@

- X = os_malloc(E1);
+ X = os_zalloc(E1);
(
  if (X == NULL) {
	...
  }
- os_memset(X, 0, E1);
|
  if (X == NULL)
	S
- os_memset(X, 0, E1);
)

Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 11:42:07 +02:00
..
common_module_tests.c tests: Add module tests for src/common 2014-05-28 00:56:13 +03:00
defs.h mesh: Enable mesh HT mode 2014-11-16 19:43:11 +02:00
eapol_common.h MACsec: Add common IEEE 802.1X definitions 2014-05-09 20:05:28 +03:00
gas.c Add generic GAS request mechanism 2012-08-27 18:13:10 +03:00
gas.h Add generic GAS request mechanism 2012-08-27 18:13:10 +03:00
ieee802_1x_defs.h MACsec: Add common IEEE 802.1X definitions 2014-05-09 20:05:28 +03:00
ieee802_11_common.c Add generic operating class and channel to frequency function 2014-11-22 20:17:47 +02:00
ieee802_11_common.h Add generic operating class and channel to frequency function 2014-11-22 20:17:47 +02:00
ieee802_11_defs.h wpa_supplicant: Handle link measurement requests 2014-11-22 21:45:07 +02:00
Makefile Add CONFIG_CODE_COVERAGE=y option for gcov 2013-11-24 19:16:12 +02:00
privsep_commands.h Remove the GPL notification from files contributed by Jouni Malinen 2012-02-11 19:39:36 +02:00
qca-vendor-attr.h Make qca-vendor.h independent of other header files 2014-04-25 11:41:36 +03:00
qca-vendor.h hostapd: Allow ACS to be offloaded to the driver 2014-12-03 22:31:53 +02:00
sae.c SAE: Fix Anti-Clogging Token request frame format 2014-11-25 16:08:53 +02:00
sae.h SAE: Fix Anti-Clogging Token request frame format 2014-11-25 16:08:53 +02:00
tnc.h tests: TNC testing 2014-05-17 20:05:55 +03:00
version.h The master branch is now used for v2.4 development 2014-10-09 20:36:53 +03:00
wpa_common.c WPA: Use more explicit WPA/RSN selector count validation 2014-11-23 21:08:13 +02:00
wpa_common.h Suite B: Select EAPOL-Key integrity and key-wrap algorithms based on AKM 2014-11-16 17:09:11 +02:00
wpa_ctrl.c Use os_zalloc() instead of os_malloc() and os_memset() 2014-12-08 11:42:07 +02:00
wpa_ctrl.h wpa_supplicant: Add NEIGHBOR_REP_REQUEST command to the control interface 2014-11-22 21:28:52 +02:00
wpa_helpers.c Add wpa_ctrl helper functions for upper level functionality 2014-03-12 01:09:21 +02:00
wpa_helpers.h Add wpa_ctrl helper functions for upper level functionality 2014-03-12 01:09:21 +02:00