Sponsored Content
Top Forums Programming readdir and dynamic array memory corruption Post 302491540 by torbium on Thursday 27th of January 2011 05:22:24 PM
Old 01-27-2011
Hm,
if readdir returned the SAME pointer every time
list.entries[c]->pde would have the SAME value.
BUT they don't.

Of course what you propose solves the problem, thanks you.

BUT WHY and by WHOM heap memory is corrupted after list.entries has been reallocated?
 

10 More Discussions You Might Find Interesting

1. Programming

Creating an array to hold posix thread ids: Only dynamic array works

I am facing a strange error while creating posix threads: Given below are two snippets of code, the first one works whereas the second one gives a garbage value in the output. Snippet 1 This works: -------------- int *threadids; threadids = (int *) malloc (num_threads * sizeof(int)); ... (4 Replies)
Discussion started by: kmehta
4 Replies

2. UNIX for Dummies Questions & Answers

'memory corruption' error when using Awk

Hello, everyone. I got the following error when I am using awk to analysis some text file: *** glibc detected *** awk: malloc(): memory corruption: 0x080c67f8 *** ======= Backtrace: ========= /lib/tls/i686/cmov/libc.so.6 /lib/tls/i686/cmov/libc.so.6... (5 Replies)
Discussion started by: kooyee
5 Replies

3. Programming

Why does this occur? *** glibc detected *** malloc(): memory corruption: 0x10013ff8 ***

there seems not to be error in this segment. In some computers, it can work well. But in others, it will give a failure. why it ocurrs and how to deal with it? in a function: if( *ver == NULL ) { *ver = (vertex *) malloc(sizeof(vertex)); //this line ... (17 Replies)
Discussion started by: cdbug
17 Replies

4. SCO

SCO openserver Dynamic linker corruption

Hi every body I have a problem like that "Dynamic linker error" message. I can't load many of programs in sco unix openserver 5.0.6. I guess this problem appear after my last effort to install "SCO Development System" package. How can I fix this problem? would you please help me ? (1 Reply)
Discussion started by: javad1_maroofi
1 Replies

5. Programming

./match_pattern.out: malloc(): memory corruption: 0x0000000013a11600 ***

Hi All, I have a simple code which does some computation by matching string patterns. In brief: 1. The code reads .dat and .txt files. 2. .dat files are huge text files and .txt files contain some important words. 3. I am just doing strstr to find the patterns. 4. The function returns the... (3 Replies)
Discussion started by: shoaibjameel123
3 Replies

6. Programming

*** glibc detected *** ./a.out: malloc(): memory corruption (fast):

*** glibc detected *** ./a.out: malloc(): memory corruption (fast): Posted A minute ago M trying to make multiway tree and dont know what happend when this part of code get executed: 01void ins(NODE *ptr) 02{ 03 //working 04 if(ptr!=NULL) 05 { 06 SNODE *var=NULL; 07 var=(SNODE... (3 Replies)
Discussion started by: exgenome
3 Replies

7. Programming

*** glibc detected *** : malloc(): memory corruption (fast)

Hi Friends, while executing the below code, am getting *** glibc detected *** ./ok: malloc(): memory corruption (fast) error, please suggest how to solve this issue. #include <stdio.h> #include <string.h> #include <sqlca.h> #include <alloca.h> /* Define constants for VARCHAR... (2 Replies)
Discussion started by: mpjobsrch
2 Replies

8. Programming

*** glibc detected *** ./a.out malloc() memory corruption

I am facing a problem of memory corruption. The loop runs for the first time but does not go through the second time. What could be the problem? for(int z=0;z<2;z++) { fp=fopen("poly.dat","r"); /*do something which reads this file into a 2D array*/ fclose(fp); ... (10 Replies)
Discussion started by: dare
10 Replies

9. Solaris

Solaris 10 Shared Memory Corruption with X11

I am having a problem with shared memory corruption. I have two 86 servers running Solaris 10 (150400-06). One of the servers is accessed by a Sun Ray thin client Version 11.1.3.0.2.6. I login into server one from the thin client. I then ssh -X to server two. When a process that contains a... (2 Replies)
Discussion started by: salerno
2 Replies

10. Programming

Memory corruption in dynamic array of strings

I put together a C function to add strings to a dynamic array of strings (mostly for educational purpose to explain pointers to my kid). It works, but sometimes one or two strings in the array becomes corrupted. Running example on 64 bit Ubuntu, gcc ver. 4.8.4 Hope my code is self-explanatory: ... (2 Replies)
Discussion started by: migurus
2 Replies
readdir(3UCB)					     SunOS/BSD Compatibility Library Functions					     readdir(3UCB)

NAME
readdir - read a directory entry SYNOPSIS
/usr/ucb/cc[ flag ... ] file ... #include <sys/types.h> #include <sys/dir.h> struct direct *readdir(dirp); DIR *dirp; DESCRIPTION
The readdir() function returns a pointer to a structure representing the directory entry at the current position in the directory stream to which dirp refers, and positions the directory stream at the next entry, except on read-only file systems. It returns a NULL pointer upon reaching the end of the directory stream, or upon detecting an invalid location in the directory. The readdir() function shall not return directory entries containing empty names. It is unspecified whether entries are returned for dot (.) or dot-dot (..). The pointer returned by readdir() points to data that may be overwritten by another call to readdir() on the same directory stream. This data shall not be overwritten by another call to readdir() on a different directory stream. The readdir() function may buffer several directory entries per actual read operation. The readdir() function marks for update the st_atime field of the directory each time the directory is actually read. RETURN VALUES
The readdir() function returns NULL on failure and sets errno to indicate the error. ERRORS
The readdir() function will fail if one or more of the following are true: EAGAIN Mandatory file/record locking was set, O_NDELAY or O_NONBLOCK was set, and there was a blocking record lock. EAGAIN Total amount of system memory available when reading using raw I/O is temporarily insufficient. EAGAIN No data is waiting to be read on a file associated with a tty device and O_NONBLOCK was set. EAGAIN No message is waiting to be read on a stream and O_NDELAY or O_NONBLOCK was set. EBADF The file descriptor determined by the DIR stream is no longer valid. This results if the DIR stream has been closed. EBADMSG Message waiting to be read on a stream is not a data message. EDEADLK The read() was going to go to sleep and cause a deadlock to occur. EFAULT buf points to an illegal address. EINTR A signal was caught during the read() or readv() function. EINVAL Attempted to read from a stream linked to a multiplexor. EIO A physical I/O error has occurred, or the process is in a background process group and is attempting to read from its con- trolling terminal, and either the process is ignoring or blocking the SIGTTIN signal or the process group of the process is orphaned. ENOENT The current file pointer for the directory is not located at a valid entry. ENOLCK The system record lock table was full, so the read() or readv() could not go to sleep until the blocking record lock was removed. ENOLINK fildes is on a remote machine and the link to that machine is no longer active. ENXIO The device associated with fildes is a block special or character special file and the value of the file pointer is out of range. EOVERFLOW The value of the direct structure member d_ino cannot be represented in an ino_t. USAGE
The readdir() function has a transitional interface for 64-bit file offsets. See lf64(5). SEE ALSO
getdents(2), readdir(3C), scandir(3UCB), lf64(5) NOTES
Use of these interfaces should be restricted to only applications written on BSD platforms. Use of these interfaces with any of the sys- tem libraries or in multi-thread applications is unsupported. SunOS 5.10 28 Jan 1998 readdir(3UCB)
All times are GMT -4. The time now is 10:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy