Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #28704
| From | John Gordon <gordon@panix.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: ctypes - python2.7.3 vs python3.2.3 |
| Date | 2012-09-07 19:04 +0000 |
| Organization | PANIX Public Access Internet and UNIX, NYC |
| Message-ID | <k2dgfd$cqf$1@reader1.panix.com> (permalink) |
| References | <18eb8025-7545-4d10-9e76-2e41deaadb69@googlegroups.com> <k1jeg9$kjc$1@reader1.panix.com> <9a74$503e88dd$546bb230$30836@cache80.multikabel.net> |
In <9a74$503e88dd$546bb230$30836@cache80.multikabel.net> Jan Kuiken <jan.kuiken@quicknet.nl> writes:
> >> uint32_t myfunction (char ** _mydata)
> >> {
> >> char mydata[16];
> >
> >> strcpy(mydata, "Hello Dude!");
> >
> >> *_mydata = mydata;
> >
> >> return 0;
> >> }
> >
> > mydata is an auto variable, which goes out of scope when myfunction()
> > exits. *_mydata ends up pointing to garbage.
> I'm not completely sure, but i think this can be solved by using:
> static char mydata[16];
That will solve the immediate problem, however it makes myfunction()
non-reentrant.
> (Btw.: I don't know why you use char ** _mydata, i would use
> char * _mydata, but then again, i'm not very familiar with
> ctypes)
He uses char **_mydata because he wants myfunction()'s caller to see the
new value of _mydata, which it wouldn't if it were just char *_mydata.
--
John Gordon A is for Amy, who fell down the stairs
gordon@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
ctypes - python2.7.3 vs python3.2.3 Rolf <rolfb@personalized-books.com> - 2012-08-28 14:35 -0700
Re: ctypes - python2.7.3 vs python3.2.3 John Gordon <gordon@panix.com> - 2012-08-28 21:51 +0000
Re: ctypes - python2.7.3 vs python3.2.3 Jan Kuiken <jan.kuiken@quicknet.nl> - 2012-08-29 23:25 +0200
Re: ctypes - python2.7.3 vs python3.2.3 John Gordon <gordon@panix.com> - 2012-09-07 19:04 +0000
Re: ctypes - python2.7.3 vs python3.2.3 MRAB <python@mrabarnett.plus.com> - 2012-08-28 22:59 +0100
csiph-web