1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-16 04:50:05 +00:00

fix: avoiding uninitialised variables in mm_getdetails and mm_gettables.sas

This commit is contained in:
munja
2021-12-15 15:10:17 +00:00
parent a45384aacb
commit a1ce68ce56
3 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ run;
data &outattrs;
keep type name value;
length type $4 name $256 value $32767;
rc1=1;n1=1;type='Prop';
rc1=1;n1=1;type='Prop';name='';value='';
do while(rc1>0);
rc1=metadata_getnprp("&uri",n1,name,value);
if rc1>0 then output;