Github user selvaganesang commented on a diff in the pull request:

    https://github.com/apache/incubator-trafodion/pull/953#discussion_r100925922
  
    --- Diff: core/sql/cli/memorymonitor.cpp ---
    @@ -102,12 +102,18 @@ MemoryMonitor::MemoryMonitor(Lng32 windowSize,
     {
       // if the windowSize is 0, we do not need memory monitor.
       assert(windowSize);
    -  char buffer[1024];
    +  char buffer[2048];
       char *currPtr;
       size_t bytesRead;
       fd_meminfo_ = fopen("/proc/meminfo", "r");
       if (fd_meminfo_) {
    -    bytesRead = fread(buffer, 1, 1024, fd_meminfo_);
    +    bytesRead = fread(buffer, 1, 2048, fd_meminfo_);
    +    if (ferror(fd_meminfo_))
    +       assert(false); 
    --- End diff --
    
    I am not sure. This should never happen and hence I am thinking it should 
be ok to leave it as assert


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to