現在、「現行ディレクトリ内のファイル・ディレクトリを更新日順に表示するlsコマンドのようなプログラム」を作成途中のプログラムでエラーが発生しておリます。
自分なりにデバッグを行い、sec_mem関数内でエラーが起きているようなのですが、それ以降はどうしてもわからず、お力を貸して下さい。。
●エラー内容
プログラム実行時、たまに以下のようなエラーが発生する。
「incorrect checksum for freed object - object was probably modified after being freed.
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6」
※大まかには上記のエラーが発生せずにプログラムが正常に終了します。
#ifndef SELF_LS_H # define SELF_LS_H # include <stdio.h> # include <stdlib.h> # include <unistd.h> # include <dirent.h> # include <sys/stat.h> # include <sys/types.h> # include <string.h> int my_strlen(char *s); int is_hidden(char *s); int count(void); char *my_strdup(char *s1); void swap_str(char **s1, char **s2, struct stat *n1, struct stat *n2); void sort(char **ps, struct stat *pn, int count); char **sec_mem(int count, struct stat **pn); #endif
#include "self_ls.h" int my_strlen(char *s) { int i; i = 0; while (s[i] != '\0') i++; return (i); } int is_hidden(char *s) { if (s[0] == '.') return (1); return (0); } int count(void) { DIR *dir; struct dirent *d_cont; int n; n = 0; if ((dir = opendir("./")) == NULL) return (-1); while ((d_cont = readdir(dir)) != NULL) { if (is_hidden(d_cont->d_name) == 1) continue; n++; } closedir(dir); return (n); } char *my_strdup(char *s1) { char *p; int n; int i; i = 0; n = my_strlen(s1); if (!(p = (char *)malloc(sizeof(char) * (n + 1)))) return (NULL); while (s1[i] != '\0') { p[i] = s1[i]; i++; } p[i] = '\0'; return (p); } void swap_str(char **s1, char **s2, struct stat *n1, struct stat *n2) { char *temps; struct stat tempn; temps = *s1; *s1 = *s2; *s2 = temps; tempn = *n1; *n1 = *n2; *n2 = *n1; } void sort(char **ps, struct stat *pn, int count) { int i; int j; i = 0; while (i < count - 1) { j = i + 1; while (j < count) { if (pn[i].st_mtime > pn[j].st_mtime) swap_str(&ps[i], &ps[j], &pn[i], &pn[j]); j++; } i++; } i = 0; while (i < count) { j = my_strlen(ps[i]); write(1, ps[i], j); write(1, "\n", 1); i++; } } char **sec_mem(int count, struct stat **pn) { DIR *dir; struct dirent *d_cont; char **ps; int i; i = 0; if (!(ps = (char **)malloc(sizeof(char *) * (count + 1)))) return (NULL); if (!(dir = opendir("./"))) return (NULL); while (i < count) { d_cont = readdir(dir); if (is_hidden(d_cont->d_name) != 1) { ps[i] = my_strdup(d_cont->d_name); lstat(d_cont->d_name, pn[i]); i++; } } ps[i] = NULL; closedir(dir); return (ps); } int main(void) { int n; int i; char **ps; struct stat *pn; if ((n = count()) == -1) { perror("error"); return (-1); } if (!(pn = malloc(sizeof(stat) * (n + 1)))) return (-1); if (!(ps = sec_mem(n, &pn))) return (-1); ps[n] = NULL; sort(ps, pn, n); i = 0; while (i < n) { free(ps[i]); i++; } free(pn); free(ps); return (0); }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。