diff options
Diffstat (limited to 'source4/ntvfs/common')
-rw-r--r-- | source4/ntvfs/common/opendb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/ntvfs/common/opendb.c b/source4/ntvfs/common/opendb.c index 39d4f37ec2..bed4910be4 100644 --- a/source4/ntvfs/common/opendb.c +++ b/source4/ntvfs/common/opendb.c @@ -331,12 +331,14 @@ NTSTATUS odb_close_file(struct odb_lock *lck, uint16_t fnum) elist = (struct odb_entry *)dbuf.dptr; count = dbuf.dsize / sizeof(struct odb_entry); - /* send any pending notifications */ + /* send any pending notifications, removing them once sent */ for (i=0;i<count;i++) { if (elist[i].pending) { messaging_send_ptr(odb->messaging_ctx, elist[i].server, MSG_PVFS_RETRY_OPEN, elist[i].notify_ptr); - + memmove(&elist[i], &elist[i+1], sizeof(struct odb_entry)*(count-(i+1))); + i--; + count--; } } |