Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > warning: assignment discards qualifiers from pointer target type

Reply
Thread Tools

warning: assignment discards qualifiers from pointer target type

 
 
Jason
Guest
Posts: n/a
 
      10-08-2003
I have a function (Inet_ntop) that returns const char * and if I try to
assign that return value to a char * variable, I get the gcc error message:
warning: assignment discards qualifiers from pointer target type

Does anyone know what this warning means? Why do I get it? The program
compiles and appears to work, but I'd like to understand the warning.

Here is basically what the code looks like:

char *str;
str = Inet_ntop(...); //returns const char *

Any help is appreciated. Thanks.

--
Jason
[ jake1138 AT yahoo DOT com ]


 
Reply With Quote
 
 
 
 
Mike Wahler
Guest
Posts: n/a
 
      10-08-2003
"Jason" <> wrote in message
news:bm027n$uu0$...
> I have a function (Inet_ntop) that returns const char * and if I try to
> assign that return value to a char * variable, I get the gcc error

message:
> warning: assignment discards qualifiers from pointer target type
>
> Does anyone know what this warning means?


It means you're walking on eggs.

> Why do I get it?


You have a good compiler.

>The program
> compiles and appears to work, but I'd like to understand the warning.


The moment you try to modify what the assigned-to pointer
points to, you could possibly induce undefined behavior.

>
> Here is basically what the code looks like:
>
> char *str;
> str = Inet_ntop(...); //returns const char *


It's warning you that the "protection" of the pointer's
target provided by the 'const' qualifier is lost when
the 'const' is thrown away by assigning it to a "plain"
type 'char*' pointer.

It's warning you that you're boating in deep water,
and you've thrown your life preserver overboard.

const char array[]="whatever";
array[0] = 'X'; /* compiler must tell you, "Can't do that!" */

const char *cp = array;
cp[0] = 'X'; /* compiler must tell you, "Can't do that!" */


char *p = array; /* valid, but many compilers will warn you:
"Danger, Will Robinson!" */

/* because... */

p[0]; /* is valid, although possibly/probably not what you
really wanted, and has possiblity of undefined behavior */


> Any help is appreciated. Thanks.


Write:

const char *str;
str = Inet_ntop(...); //returns const char *


The function returns type 'const char*' for a reason.
It's telling you "You can look, but don't touch the
target of the returned pointer."

HTH,
-Mike


 
Reply With Quote
 
 
 
 
Mike Wahler
Guest
Posts: n/a
 
      10-08-2003
"Jason" <> wrote in message
news:bm027n$uu0$...
> I have a function (Inet_ntop) that returns const char * and if I try to
> assign that return value to a char * variable, I get the gcc error

message:
> warning: assignment discards qualifiers from pointer target type
>
> Does anyone know what this warning means?


It means you're walking on eggs.

> Why do I get it?


You have a good compiler.

>The program
> compiles and appears to work, but I'd like to understand the warning.


The moment you try to modify what the assigned-to pointer
points to, you could possibly induce undefined behavior.

>
> Here is basically what the code looks like:
>
> char *str;
> str = Inet_ntop(...); //returns const char *


It's warning you that the "protection" of the pointer's
target provided by the 'const' qualifier is lost when
the 'const' is thrown away by assigning it to a "plain"
type 'char*' pointer.

It's warning you that you're boating in deep water,
and you've thrown your life preserver overboard.

const char array[]="whatever";
array[0] = 'X'; /* compiler must tell you, "Can't do that!" */

const char *cp = array;
cp[0] = 'X'; /* compiler must tell you, "Can't do that!" */


char *p = array; /* valid, but many compilers will warn you:
"Danger, Will Robinson!" */

/* because... */

p[0]; /* is valid, although possibly/probably not what you
really wanted, and has possiblity of undefined behavior */


> Any help is appreciated. Thanks.


Write:

const char *str;
str = Inet_ntop(...); //returns const char *


The function returns type 'const char*' for a reason.
It's telling you "You can look, but don't touch the
target of the returned pointer." If you ignore this
warning, you're on your own.

HTH,
-Mike



 
Reply With Quote
 
James Hu
Guest
Posts: n/a
 
      10-08-2003
On 2003-10-08, Jason <> wrote:
>
> char *str;
> str = Inet_ntop(...); //returns const char *
>


You should declare str variable to be the same type as that being
returned by Inet_ntop().

const char *str = Inet_ntop(/* ... */);

The "const" is a qualifier. It means the return value of Inet_ntop
is a pointer to data that should not be modified.

However, in the erroneous code, you assigned that pointer to a
regular "char *", which discards the "should not be modified"
qualifier.

-- James
 
Reply With Quote
 
Jason
Guest
Posts: n/a
 
      10-09-2003
Thanks Mike and James for your answers! I think I was confused as to how
const worked with pointers in that way, but now I understand.

--
Jason
[ jake1138 AT yahoo DOT com ]


 
Reply With Quote
 
Mike Wahler
Guest
Posts: n/a
 
      10-09-2003

"Jason" <> wrote in message
news:bm2j8v$fe$...
> Thanks Mike and James for your answers! I think I was confused as to how
> const worked with pointers in that way, but now I understand.


It can get confusing.

/* (0) */ int * pi; /* pointer to int */
/* (can modify p or *p) */

/* (1) */ int const * pci; /* pointer to const int */
/* (can modify p, but not *p) */

/* (2) */ const int * pci2; /* same as (1) */

/* (3) */ int * const cpi; /* const pointer to int */
/* (can modify *p, but not p */

/* (4) */ int const * const cpci; /* const pointer to const int */
/* (cannot modify p nor *p) */

/* (5) */ const int * const cpci2; /* same as (4) */


HTH,
-Mike


 
Reply With Quote
 
Mike Wahler
Guest
Posts: n/a
 
      10-09-2003
"Mike Wahler" <> wrote in message
news:Z_hhb.4350$ ink.net...

> /* (4) */ int const * const cpci; /* const pointer to const int */
> /* (cannot modify p nor *p) */
>
> /* (5) */ const int * const cpci2; /* same as (4) */


Dang, that's what I get for 'copy-n-pasting'

Of course the 'p' and '*p' in the comments refer to
the actual identifier in each declaration
('pci', 'cpi', etc.)

Sorry about that.

-Mike


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
is this an issue for a Ruby installation process (warning: assignment discards qualifiers from pointer target type)???? Greg Hauptmann Ruby 0 02-06-2009 08:58 PM
warning: initialization discards qualifiers from pointer target type Andre C Programming 4 03-04-2008 04:58 AM
return discards qualifiers from pointer target type Pietro Cerutti C Programming 17 09-01-2007 12:08 AM
error: passing const ... discards qualifiers danny van elsen C++ 6 04-24-2005 10:34 PM
Vexing GCC warnings: "assignment discards qualifiers from pointertarget type" Charlie Zender C Programming 12 01-03-2004 12:18 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57