Willy Tarreau
61cfdf4fd8
CLEANUP: tree-wide: replace free(x);x=NULL with ha_free(&x)
...
This makes the code more readable and less prone to copy-paste errors.
In addition, it allows to place some __builtin_constant_p() predicates
to trigger a link-time error in case the compiler knows that the freed
area is constant. It will also produce compile-time error if trying to
free something that is not a regular pointer (e.g. a function).
The DEBUG_MEM_STATS macro now also defines an instance for ha_free()
so that all these calls can be checked.
178 occurrences were converted. The vast majority of them were handled
by the following Coccinelle script, some slightly refined to better deal
with "&*x" or with long lines:
@ rule @
expression E;
@@
- free(E);
- E = NULL;
+ ha_free(&E);
It was verified that the resulting code is the same, more or less a
handful of cases where the compiler optimized slightly differently
the temporary variable that holds the copy of the pointer.
A non-negligible amount of {free(str);str=NULL;str_len=0;} are still
present in the config part (mostly header names in proxies). These
ones should also be cleaned for the same reasons, and probably be
turned into ist strings.
2021-02-26 21:21:09 +01:00
..
2020-11-05 19:27:09 +01:00
2020-06-11 10:18:59 +02:00
2021-02-13 09:43:18 +01:00
2021-02-13 09:43:18 +01:00
2021-01-29 12:10:33 +01:00
2021-01-29 12:10:33 +01:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2021-02-24 13:53:20 +01:00
2021-02-20 12:38:18 +01:00
2020-12-16 15:49:53 +01:00
2020-06-11 10:18:57 +02:00
2020-12-23 01:23:41 +01:00
2020-07-05 21:32:47 +02:00
2020-06-11 10:18:59 +02:00
2021-02-18 10:06:45 +01:00
2020-10-09 11:27:30 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:56 +02:00
2021-02-26 21:21:09 +01:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2021-02-12 16:23:46 +01:00
2020-06-11 10:18:59 +02:00
2021-02-20 12:38:18 +01:00
2021-01-21 15:21:12 +01:00
2021-02-18 10:06:45 +01:00
2020-06-11 10:18:59 +02:00
2020-12-02 09:45:18 +01:00
2020-12-02 09:45:18 +01:00
2020-12-23 06:39:21 +01:00
2021-01-27 12:44:39 +01:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2021-02-19 16:59:18 +01:00
2021-02-19 16:59:18 +01:00
2021-02-01 15:16:33 +01:00
2021-01-22 14:48:34 +01:00
2021-02-19 16:02:04 +01:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2020-12-31 10:04:54 +01:00
2021-02-13 10:03:46 +01:00
2021-02-13 10:03:46 +01:00
2021-02-20 12:38:18 +01:00
2021-02-20 12:38:18 +01:00
2020-06-11 10:18:59 +02:00
2021-02-12 16:23:46 +01:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:57 +02:00
2020-08-26 18:33:52 +02:00
2021-02-24 19:40:49 +01:00
2021-01-26 09:53:52 +01:00
2020-11-24 14:17:32 +01:00
2020-11-05 19:26:30 +01:00
2020-12-21 11:24:48 +01:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:56 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-11-27 10:30:23 +01:00
2020-11-13 16:26:10 +01:00
2021-01-28 16:37:14 +01:00
2021-01-28 16:37:14 +01:00
2021-02-08 10:49:08 +01:00
2020-06-11 10:18:56 +02:00
2020-06-11 10:18:57 +02:00
2021-02-26 13:53:26 +01:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2020-12-22 10:18:07 +01:00
2020-06-11 10:18:58 +02:00
2021-01-28 16:27:48 +01:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2021-02-12 16:23:46 +01:00
2020-12-02 09:45:18 +01:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2021-01-21 15:21:12 +01:00
2020-12-24 17:18:00 +01:00
2021-01-28 16:37:14 +01:00
2021-02-24 22:10:01 +01:00
2020-06-11 10:18:56 +02:00
2021-02-09 17:52:50 +01:00
2020-06-11 10:18:56 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:56 +02:00
2021-02-19 16:47:20 +01:00
2021-02-15 14:13:32 +01:00
2021-02-15 14:13:32 +01:00
2020-12-01 09:32:44 +01:00
2020-10-08 08:53:26 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-11-05 19:27:03 +01:00
2020-11-05 19:27:03 +01:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2021-02-13 09:43:18 +01:00
2021-02-22 10:35:23 +01:00
2020-11-05 19:27:09 +01:00
2021-01-15 14:41:16 +01:00
2020-06-11 10:18:58 +02:00
2020-10-19 14:08:13 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:56 +02:00
2020-06-30 14:29:02 +02:00
2020-06-29 10:36:37 +02:00
2020-09-12 20:56:41 +02:00
2021-01-06 17:32:03 +01:00
2020-12-23 11:57:26 +01:00
2020-12-08 14:54:08 +01:00
2020-12-08 14:54:08 +01:00
2020-12-08 18:10:18 +01:00
2020-12-08 14:54:08 +01:00
2020-06-11 10:18:58 +02:00
2021-01-04 10:09:02 +01:00
2020-12-11 17:02:50 +01:00
2020-10-09 18:29:04 +02:00
2021-02-26 13:52:48 +01:00
2021-02-12 16:23:46 +01:00
2021-01-04 12:31:28 +01:00
2020-06-11 10:18:58 +02:00
2020-10-23 09:21:55 +02:00
2021-01-06 16:26:50 +01:00
2020-12-23 11:57:26 +01:00
2021-01-04 12:31:28 +01:00
2020-12-23 11:57:26 +01:00
2020-12-23 11:57:26 +01:00
2020-12-23 11:57:26 +01:00
2020-12-23 11:57:26 +01:00
2020-12-23 11:57:26 +01:00
2021-01-06 16:26:50 +01:00
2020-12-23 11:57:26 +01:00
2020-08-14 07:53:40 +02:00
2020-08-14 07:53:40 +02:00
2021-02-13 10:03:46 +01:00
2021-02-13 10:03:46 +01:00
2020-06-11 10:18:59 +02:00
2021-02-13 09:43:17 +01:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:59 +02:00
2021-02-18 14:58:43 +01:00
2021-02-25 10:02:39 +01:00
2021-02-26 00:30:22 +01:00
2020-12-04 14:41:48 +01:00
2021-02-19 16:59:18 +01:00
2020-09-12 20:56:41 +02:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-10-19 14:08:13 +02:00
2020-07-15 17:50:12 +02:00
2020-12-04 15:08:00 +01:00
2020-10-15 21:47:56 +02:00
2020-08-28 19:26:39 +02:00
2020-12-11 17:02:50 +01:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2021-01-26 15:19:36 +01:00
2021-01-26 15:19:36 +01:00
2020-06-11 10:18:59 +02:00
2020-06-26 11:27:28 +02:00
2020-11-21 11:04:36 +01:00
2021-01-26 15:19:36 +01:00
2020-06-11 10:18:57 +02:00
2021-02-12 16:23:45 +01:00
2021-02-15 14:13:32 +01:00
2021-02-10 12:27:01 +01:00
2021-02-10 12:27:01 +01:00
2020-06-11 10:18:58 +02:00
2020-12-04 14:41:48 +01:00
2021-02-24 13:53:20 +01:00
2021-02-24 13:53:20 +01:00
2021-02-26 12:00:53 +01:00
2021-02-25 09:44:16 +01:00
2020-12-02 09:45:18 +01:00
2020-06-26 11:27:28 +02:00
2021-02-12 16:23:46 +01:00
2021-02-18 10:06:45 +01:00
2021-02-24 13:54:50 +01:00
2020-06-11 10:18:57 +02:00
2020-12-22 10:35:43 +01:00
2021-02-24 13:54:50 +01:00
2020-06-29 09:57:23 +02:00
2021-02-26 13:32:17 +01:00
2021-02-26 13:52:06 +01:00
2020-12-01 10:25:20 +01:00
2020-12-01 10:25:20 +01:00
2020-06-11 10:18:59 +02:00
2020-06-11 10:18:58 +02:00
2020-06-11 10:18:59 +02:00
2020-12-16 14:20:08 +01:00
2020-11-05 17:20:35 +01:00
2021-01-06 16:26:50 +01:00
2021-01-06 16:26:50 +01:00
2020-06-11 10:18:57 +02:00
2020-06-11 10:18:59 +02:00