Replaced some large local variables by other means which save stack space
This commit is contained in:
parent
2e967b4543
commit
4f1576944c
@ -1060,15 +1060,13 @@ int Xorriso_spotlist_to_sectormap(struct XorrisO *xorriso,
|
|||||||
int Xorriso_open_job_data_to(struct XorrisO *xorriso,
|
int Xorriso_open_job_data_to(struct XorrisO *xorriso,
|
||||||
struct CheckmediajoB *job, int flag)
|
struct CheckmediajoB *job, int flag)
|
||||||
{
|
{
|
||||||
char sfe[5*SfileadrL];
|
|
||||||
|
|
||||||
if(job->data_to_path[0] == 0)
|
if(job->data_to_path[0] == 0)
|
||||||
return(2);
|
return(2);
|
||||||
job->data_to_fd= open(job->data_to_path, O_RDWR | O_CREAT,
|
job->data_to_fd= open(job->data_to_path, O_RDWR | O_CREAT,
|
||||||
S_IRUSR | S_IWUSR);
|
S_IRUSR | S_IWUSR);
|
||||||
if(job->data_to_fd == -1) {
|
if(job->data_to_fd == -1) {
|
||||||
sprintf(xorriso->info_text, "Cannot open path %s",
|
sprintf(xorriso->info_text, "Cannot open path ");
|
||||||
Text_shellsafe(job->data_to_path, sfe, 0));
|
Text_shellsafe(job->data_to_path, xorriso->info_text, 1);
|
||||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, errno, "FAILURE", 0);
|
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, errno, "FAILURE", 0);
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2011.05.02.091632"
|
#define Xorriso_timestamP "2011.05.02.100332"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user