- 论坛徽章:
- 0
|
代码如下 :
- #include<stdlib.h>
- #include<stdio.h>
- #include<time.h>
- #include<sys/time.h>
- #include<unistd.h>
- int lib_sec2tm(long sec , struct tm * tm) ; //
- int get_sec2tm(long isec) ;
- int main(int argc , char * argv[])
- {
- get_sec2tm(atol(argv[1])) ; // 1131816244
- return 0 ;
- }
- int lib_sec2tm(long sec , struct tm * m) //
- {
- time_t timep ;
- timep = (time_t)sec ;
- m = localtime(&timep); //
- return 0 ;
- }
- int get_sec2tm(long isec)
- {
- struct tm * t = NULL ;
- char * str_time = NULL ;
- t = (struct tm *)malloc(sizeof(struct tm)) ;
- memset(t , 0 , sizeof(struct tm)) ;
- str_time = (char *)malloc(sizeof(char) * 100 + 1) ;
- memset(str_time , 0 , 100) ;
- lib_sec2tm(isec , t) ; //
- strftime(str_time,100,"%Y-%m-%d %H:%M:%S , %sn",t);
- printf("Sec is %ld , convert to time %sn", isec , str_time); // 打印出 1900-11-00 ...
- // 应该是 2005-11-13 ...
- free(t) ;
- free(str_time) ;
-
- }
复制代码
改成下面的是可以打印出来,但 free(t) 提示 : glibc detected , free() : invalid pointer : ...
- int lib_sec2tm(long sec , struct tm ** tm) ;
- int lib_sec2tm(long sec , struct tm ** m)
- {
- time_t timep ;
- timep = (time_t)sec ;
- *m = localtime(&timep);
- return 0 ;
- }
- int get_sec2tm(long isec)
- {
- struct tm * t = NULL ;
- char * str_time = NULL ;
- t = (struct tm *)malloc(sizeof(struct tm)) ;
- memset(t , 0 , sizeof(struct tm)) ;
- str_time = (char *)malloc(sizeof(char) * 100 + 1) ;
- memset(str_time , 0 , 100) ;
- lib_sec2tm(isec , &t) ;
- strftime(str_time,100,"%Y-%m-%d %H:%M:%S , %sn",t);
- printf("Sec is %ld , convert to time %sn", isec , str_time);
- free(t) ; // 提示 : glibc detected , free() : invalid pointer : ... , 注释掉正确
- free(str_time) ;
-
- }
-
复制代码
问题 :
1、 为何要传指针的指针 ?
2、 malloc 和 free 要配对的,为何这里出错 ? 是 strftime() 的原因吗 ?
谢谢 |
|