mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-20 05:38:09 +02:00
Replacement was done with commands:
spatch --sp-file nm_clear_g_source.cocci --in-place --smpl-spacing --dir src
spatch --sp-file nm_clear_g_source.cocci --in-place --smpl-spacing --dir libnm
where nm_clear_g_source.cocci contains:
@@
expression e;
@@
- if (e) {
- g_source_remove (e);
- e = 0;
- }
+ nm_clear_g_source (&e);
|
||
|---|---|---|
| .. | ||
| tests | ||
| exports.ver | ||
| Makefile.am | ||
| nm-device-olpc-mesh.c | ||
| nm-device-olpc-mesh.h | ||
| nm-device-wifi.c | ||
| nm-device-wifi.h | ||
| nm-wifi-ap-utils.c | ||
| nm-wifi-ap-utils.h | ||
| nm-wifi-ap.c | ||
| nm-wifi-ap.h | ||
| nm-wifi-factory.c | ||