Thread (2 messages) flat view 2 messages, 2 authors, 2016-06-15

Re: [PATCH] use xstrdup, not strdup in ll-merge.c

From: Jim Meyering <hidden>
Date: 2016-06-15 22:46:57

Alex Riesen wrote:
2009/6/14 Jim Meyering [off-list ref]:
quoted
@@ -231,7 +231,7 @@ static int read_merge_config(const char *var, const char *value, void *cb)
       if (!strcmp(var, "merge.default")) {
               if (value)
-                       default_ll_merge = strdup(value);
+                       default_ll_merge = xstrdup(value);
read_merge_config has a failure mode (where it returns -1), why not use it?
I didn't even consider it, because it would be inconsistent with
the other heap-allocation functions used there (xcalloc, xmemdupz).

However, now that I do, it looks like that would mean adding four times
the same code (including conditionals and code to generate a diagnostic via
a call to error -- or a goto). Why bother, when all of that is already
encapsulated in xmalloc?
Maybe because you want to be able to continue after an allocation failure?
If a small strdup allocation fails, odds are good that the code won't
be able to do anything useful, so when not in library code, cleanest is
simply to exit.

In addition, if you insist on using strdup, you'll probably want to
be consistent and use calloc and memdupz, too.  Adding all of the code
required to recover from those failures and to avoid leaks would be messy.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help