cinera.c: Fix leak in GenerateTopicColours()
This commit is contained in:
parent
0959fa2774
commit
6da970d48c
|
@ -23,7 +23,7 @@ typedef struct
|
||||||
version CINERA_APP_VERSION = {
|
version CINERA_APP_VERSION = {
|
||||||
.Major = 0,
|
.Major = 0,
|
||||||
.Minor = 7,
|
.Minor = 7,
|
||||||
.Patch = 14
|
.Patch = 15
|
||||||
};
|
};
|
||||||
|
|
||||||
#include <stdarg.h> // NOTE(matt): varargs
|
#include <stdarg.h> // NOTE(matt): varargs
|
||||||
|
@ -6998,7 +6998,6 @@ GenerateTopicColours(neighbourhood *N, string Topic)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
fclose(Topics.Handle);
|
fclose(Topics.Handle);
|
||||||
FreeFile(&Topics);
|
|
||||||
|
|
||||||
asset *Asset = GetPlaceInBook(&Assets, ASSET_CSS_TOPICS);
|
asset *Asset = GetPlaceInBook(&Assets, ASSET_CSS_TOPICS);
|
||||||
if(Asset->Known)
|
if(Asset->Known)
|
||||||
|
@ -7013,6 +7012,8 @@ GenerateTopicColours(neighbourhood *N, string Topic)
|
||||||
PlaceAsset(Wrap0(CSSTopics->Filename), CSSTopics->Type, CSSTopics->Variants, CSSTopics->Associated, ASSET_CSS_TOPICS);
|
PlaceAsset(Wrap0(CSSTopics->Filename), CSSTopics->Type, CSSTopics->Variants, CSSTopics->Associated, ASSET_CSS_TOPICS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FreeFile(&Topics);
|
||||||
return RC_SUCCESS;
|
return RC_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue