Tagged Questions
The strdup tag has no wiki summary.
22
votes
8answers
45k views
9
votes
7answers
12k views
strdup() function
I recently became aware that the strdup() function I've enjoyed using so much on OS X is not part of ANSI C, but part of POSIX. I don't want to rewrite all my code, so I think I'm just going to write ...
4
votes
5answers
2k views
alternative to strdup
I am using strdup here to copy the value of the parameter name into nm in the constructor... is there an alternative of achieving the same result without using strdup and without using the C++ STL ...
3
votes
3answers
384 views
strdup or _strdup?
When I use strdup in Microsoft Visual C++, it warns me:
warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for ...
2
votes
2answers
242 views
Compiler flag to reveal functions like strdup
I've been given some starter code for a project I have to complete in a class I'm taking. The code compiles fine on the university computers however when I try to compile the code on my own computer I ...
2
votes
2answers
270 views
mem-leak freeing g_strdup
I'm trying to free g_strdup but I'm not sure what I'm doing wrong.
Using valgrind --tool=memcheck --leak-check=yes ./a.out I keep getting:
==4506== 40 bytes in 10 blocks are definitely lost in loss ...
1
vote
3answers
72 views
Typecasting string and strdup
If an input const string is being modified in some way (which is resulting in C compiler warning), what is the best way to handle it - typecasting it to a new variable and then using it OR duplicating ...
1
vote
2answers
51 views
Vb.Net convert StrDub to C#.net
I have this line of code:
strKey &= Strings.StrDup(intKeySize - intLength, chrKeyFill)
What is the equivalent of this code in C#? I can't seem to find it.
Thanks!
1
vote
2answers
147 views
1
vote
4answers
703 views
Cannot free memory after using strdup
gcc 4.5.1 c89
I am trying to free some memory. However, when I check with valgrind the memory hasn't been freed. I am wondering what I am doing wrong.
I have the following structure:
typedef struct ...
1
vote
2answers
118 views
Issue with threads: value stored in heap
I have an issue with threads.
I am defining a global variable, a char * that I initialize to NULL, and a mutex.
pthread_mutex_t mutex;
char *minURLTime;
minURLTime = NULL;
Then I initialize my ...
1
vote
6answers
258 views
What is wrong with this c strdup code?
Consider this code:
char *strs[] = { "string1", "string2", NULL };
char *ptr1 = NULL, *ptr2 = NULL, *tmp;
short iter = 0;
tmp = ptr1;
while (iter < 2)
{
tmp = strdup(strs[iter]);
tmp = ...
1
vote
3answers
619 views
Whether const char * and strdup serve the same function when used with getopt in C?
In the below code snippet can i replace char * to const char * and remove the strdup() function call and directly take the optarg value set by getopt()? I am advised to use const char * to skip the ...
0
votes
2answers
61 views
std::find does not work when using strdup
I am using a std::vector to store some strings, later I try to std::find them but passing through strdup, as shown in the sample code, It does not work, std::find returns last, which means it did not ...
0
votes
0answers
18 views
mmap brokes after strdup
I tried the following configuration with mmap:
open file (file is 2000bytes)
request stat from file
map file (file is smaller than a page, offset page 0, size is expected size)
setup a pointer ...
0
votes
3answers
59 views
Will the following use of strdup() cause a memory leak in C ?
char* XX (char* str)
{
// CONCAT an existing string with str , and return to user
}
And i call this program by:
XX ( strdup("CHCHCH") );
Will this cause a leak while not ...
0
votes
2answers
483 views
strdup error on g++ with c++0x
I have some C++0x code. I was able to reproduce it below. The code below works fine without -std=c++0x however i need it for my real code.
How do i include strdup in C++0x? with gcc 4.5.2
note i am ...
0
votes
3answers
443 views
Advantages and disadvantages of using strdup on a string literal
I want to be clear about all the advantages/disadvantages of the following code:
{
char *str1 = strdup("some string");
char *str2 = "some string";
free(str1);
}
str1:
You can modify ...
0
votes
2answers
381 views
Using strdup into malloc reserved space
I've never used malloc to store more than values but I have to use strdup to order the lines of an input file and I dont get a way to make it work.
I though using strdup() to get a pointer to each ...
0
votes
4answers
198 views
Passing a structure by reference and manipulating it
typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person *array) {
array[0].name = strdup("Bob");
array[1].name = strdup("Dick");
return 1;
...
-1
votes
2answers
66 views
strdup error: 'Operation now in progress'
What does the error mean? I just need to return the value I get from the redis command.
int getReply(char* result)
{
redisContext *c;
redisReply *reply;
c = redisConnect((char*)"127.0.0.2", ...