hostap/wpa_supplicant/dbus
Jouni Malinen a9aaacbb50 Check os_snprintf() result more consistently - maximum length
This adds verification of os_snprintf() result against the maximum
buffer length. These changes were done automatically with spatch
using the following semantic patch:

@@
expression E1,E2,E3;
statement S1;
@@

  E1 = os_snprintf(E2, E3, ...);
- if (\( E1 < 0 \| E1 <= 0 \))
+ if (os_snprintf_error(E3, E1))
(
  S1
|
{ ... }
)

Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 11:42:07 +02:00
..
.gitignore
dbus-wpa_supplicant.conf
dbus_common.c Remove leftover timeouts on cleanup 2014-05-12 19:43:59 +03:00
dbus_common.h
dbus_common_i.h
dbus_dict_helpers.c dbus: Add explicit break statements to switch-default 2014-06-13 00:27:15 +03:00
dbus_dict_helpers.h
dbus_new.c dbus: Redirect P2P request to the managment device if present 2014-10-27 17:15:09 +02:00
dbus_new.h dbus: add BSS Age property to indicate last-seen time 2014-09-07 19:18:45 +03:00
dbus_new_handlers.c Check os_snprintf() result more consistently - maximum length 2014-12-08 11:42:07 +02:00
dbus_new_handlers.h dbus: Add an interface configuration entry to set the WPS methods 2014-10-04 18:29:33 +03:00
dbus_new_handlers_p2p.c dbus: Redirect P2P request to the managment device if present 2014-10-27 17:15:09 +02:00
dbus_new_handlers_p2p.h dbus: Add a global property to set or unset WFD IEs 2014-09-28 20:47:06 +03:00
dbus_new_handlers_wps.c dbus: Add an interface configuration entry to set the WPS methods 2014-10-04 18:29:33 +03:00
dbus_new_helpers.c dbus: Check return value more consistently (CID 62841) 2014-06-14 12:32:53 +03:00
dbus_new_helpers.h
dbus_new_introspect.c
dbus_old.c
dbus_old.h
dbus_old_handlers.c Check os_snprintf() result more consistently - maximum length 2014-12-08 11:42:07 +02:00
dbus_old_handlers.h
dbus_old_handlers_wps.c
fi.epitest.hostap.WPASupplicant.service.in
fi.w1.wpa_supplicant1.service.in
Makefile Add CONFIG_CODE_COVERAGE=y option for gcov 2013-11-24 19:16:12 +02:00