|
@@ -3429,7 +3429,7 @@ int laPackUDF(laUDF *udf, int UseInstanceList, int DoBackup){
|
|
|
strSafeDestroy(&ps->Path);
|
|
|
FreeMem(ps);
|
|
|
}
|
|
|
- printf("[ALL DONE]\n");
|
|
|
+ printf("[ALL DONE]\n\n");
|
|
|
|
|
|
nuidActualSeek = la_Tell(udf);
|
|
|
|
|
@@ -3933,7 +3933,7 @@ void la_FreeDBProp(laDBProp* dbp, int cleanup_only, int SkipInstances){
|
|
|
}elif(dbp->p->PropertyType==LA_PROP_STRING && ((laStringProp*)dbp->p)->IsSafeString){
|
|
|
strSafeSet(&dbp->Data,0);
|
|
|
}elif(dbp->p->PropertyType==LA_PROP_RAW){
|
|
|
- printf("raw dbp %s\n",dbp->p->Identifier);
|
|
|
+ //printf("raw dbp %s\n",dbp->p->Identifier);
|
|
|
free(dbp->Data);
|
|
|
}else{
|
|
|
//printf("-data- %x\n",dbp->Data);
|
|
@@ -3958,7 +3958,7 @@ void la_FreeDiffCommand(laDiffCommand* dc, laDiff* d, int FromLeft){
|
|
|
}elif(dc->p->PropertyType==LA_PROP_STRING && ((laStringProp*)dc->p)->IsSafeString){
|
|
|
strSafeSet(&dc->Data,0);
|
|
|
}elif(dc->p->PropertyType==LA_PROP_RAW){
|
|
|
- printf("raw %s\n",dc->p->Identifier);
|
|
|
+ //printf("raw %s\n",dc->p->Identifier);
|
|
|
free(dc->Data);
|
|
|
}
|
|
|
memFree(dc);
|
|
@@ -4093,7 +4093,7 @@ int la_AddRawDBProp(laDBInst* dbi, laDBRawProp* dbp, laDiff* diff, laPropPack *p
|
|
|
laProp *p = pp->LastPs->p; int *Data; int s=0; int ret=0; int IsCopy=0;
|
|
|
Data=laGetRaw(pp,&s,&IsCopy); if(diff&&dbp){
|
|
|
if(dbp->DataSize!=s || (!dbp->Data&&Data) || (!Data&&dbp->Data) || (dbp->Data&&Data&&memcmp(dbp->Data, Data, s))){
|
|
|
- printf("s%d %x %d \n",s,Data,dbp->DataSize);
|
|
|
+ //printf("s%d %x %d \n",s,Data,dbp->DataSize);
|
|
|
void* NewData=(s&&Data)?calloc(1,s):0;
|
|
|
if(s&&Data)memcpy(NewData, Data, s);
|
|
|
laDiffCommandRaw* dcr=la_GiveDiffCommand(diff, dbi, p, dbp->Data);
|
|
@@ -4589,7 +4589,7 @@ int laRecordDifferences(laPropPack* base, char* path){
|
|
|
laIterateDB(FromDBI, &PP, MAIN.HeadDifference, dbp);
|
|
|
if(MAIN.HeadDifference->Commands.pFirst){ success = 1; }
|
|
|
}else{
|
|
|
- success = 0; printf("Prop not recorded as DBInst.\n");
|
|
|
+ success = 0; //printf("Prop not recorded as DBInst.\n");
|
|
|
}
|
|
|
|
|
|
la_FreePropStepCache(PP.Go);
|