Commit 8920f9ba 8920f9ba9d655a0df2b498586a101cd9863fe72d by Sergey Poznyakoff

(address_aget_personal,address_aget_comments): Bugfix

1 parent b4c656a1
......@@ -357,7 +357,7 @@ address_aget_personal (address_t addr, size_t no, char **buf)
status = ENOMEM;
}
else
buf = NULL;
*buf = NULL;
return status;
}
......@@ -381,7 +381,7 @@ address_aget_comments (address_t addr, size_t no, char **buf)
status = ENOMEM;
}
else
buf = NULL;
*buf = NULL;
return status;
}
......