Imagine I have this C function (and the corresponding prototype in a header file)

void clearstring(const char *data) {
    char *dst = (char *)data;
    *dst = 0;
}

Is there Undefined Behaviour in the above code, casting the const away, or is it just a terribly bad programming practice?

Suppose there are no const-qualified objects used

char name[] = "pmg";
clearstring(name);
link|improve this question

1  
If the cast isn't UB, I think it should be :) – pmg Jan 31 at 11:55
you certainly have your foot squarely in the shotgun sights! – Rob Agar Jan 31 at 11:57
1  
@pmg: if the cast itself were UB, then there would be little point the language permitting it - it's easy enough for a compiler to detect that const has been added in a cast, the same way it detects that char *dst = data; is illegal. Obviously there are some pointless things that the standard permits for historical reasons, but I claim that this is not one of them :-) – Steve Jessop Jan 31 at 12:08
feedback

1 Answer

up vote 13 down vote accepted

The attempt to write to *dst is UB if the caller passes you a pointer to a const object, or a pointer to a string literal.

But if the caller passes you a pointer to data that in fact is mutable, then behavior is defined. Creating a const char* that points to a modifiable char doesn't make that char immutable.

So:

char c;
clearstring(&c);    // OK, sets c to 0
char *p = malloc(100);
if (p) {
    clearstring(p); // OK, p now points to an empty string
    free(p);
}
const char d = 0;
clearstring(&d);    // UB
clearstring("foo"); // UB

That is, your function is extremely ill-advised, because it is so easy for a caller to cause UB. But it is in fact possible to use it with defined behavior.

link|improve this answer
2  
+1: (im)mutability is an inherent property of the object itself, regardless of the qualification of the pointer used to access it... – Christoph Jan 31 at 12:01
Is this UB because of C99 6.6 §9 or because of C99 6.7.3 §5? – Lundin Jan 31 at 14:13
1  
@Lundin: the latter (and 6.4.5/6 rather than 6.7.3/5 in the case of the string literal, since string literals are not const objects in C). Address constants have nothing to do with this. – Steve Jessop Jan 31 at 14:24
Ok thanks for clearing that out. – Lundin Jan 31 at 14:28
isn't it a memory leak? – lukas Jan 31 at 16:38
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.