mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-23 19:04:45 +03:00
Fix gcc uninitialized variable warnings
Gcc -Wall warn: 'uninitialized variable' Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
@@ -1611,10 +1611,10 @@ nvlist_lookup_nvpair_ei_sep(nvlist_t *nvl, const char *name, const char sep,
|
||||
{
|
||||
nvpair_t *nvp;
|
||||
const char *np;
|
||||
char *sepp;
|
||||
char *sepp=NULL;
|
||||
char *idxp, *idxep;
|
||||
nvlist_t **nva;
|
||||
long idx;
|
||||
long idx = 0;
|
||||
int n;
|
||||
|
||||
if (ip)
|
||||
|
||||
Reference in New Issue
Block a user