mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
[refactor] Initialize variables to default values in multiple files
This commit is contained in:
10
tool/info.c
10
tool/info.c
@@ -29,12 +29,12 @@
|
||||
|
||||
int info(char *path)
|
||||
{
|
||||
aaruformatContext *ctx;
|
||||
char *strBuffer;
|
||||
aaruformatContext *ctx = NULL;
|
||||
char *strBuffer = NULL;
|
||||
UErrorCode u_error_code = U_ZERO_ERROR;
|
||||
uint i, j;
|
||||
mediaTagEntry *mediaTag;
|
||||
mediaTagEntry *tmpMediaTag;
|
||||
uint i = 0, j = 0;
|
||||
mediaTagEntry const *mediaTag = NULL;
|
||||
mediaTagEntry const *tmpMediaTag = NULL;
|
||||
UChar ustr[128];
|
||||
|
||||
ctx = aaruf_open(path);
|
||||
|
||||
Reference in New Issue
Block a user