Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
18d53eb6
Commit
18d53eb6
authored
Sep 11, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Number of wb_load files in on e directory was limited to 500
parent
5415f099
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
src/msg/wb/src/wb_ldh_msg.msg
src/msg/wb/src/wb_ldh_msg.msg
+1
-0
wb/lib/wb/src/wb_vrepwbl.cpp
wb/lib/wb/src/wb_vrepwbl.cpp
+1
-1
wb/lib/wb/src/wb_vrepwbl.h
wb/lib/wb/src/wb_vrepwbl.h
+1
-1
No files found.
src/msg/wb/src/wb_ldh_msg.msg
View file @
18d53eb6
...
@@ -131,3 +131,4 @@ confirm <Confirm required> /info
...
@@ -131,3 +131,4 @@ confirm <Confirm required> /info
db <Database error> /error
db <Database error> /error
noserver <Server not configured> /error
noserver <Server not configured> /error
lockstolen <Database lock is stolen> /error
lockstolen <Database lock is stolen> /error
maxwblfiles <Max number of wb_load files exceeded> /error
\ No newline at end of file
wb/lib/wb/src/wb_vrepwbl.cpp
View file @
18d53eb6
...
@@ -1339,7 +1339,7 @@ int wb_vrepwbl::load_files( const char *file_spec)
...
@@ -1339,7 +1339,7 @@ int wb_vrepwbl::load_files( const char *file_spec)
}
}
if
(
file_cnt
>=
WBL_FILEMAX
)
if
(
file_cnt
>=
WBL_FILEMAX
)
return
0
;
return
LDH__MAXWBLFILES
;
file
[
file_cnt
]
=
new
wb_wblfile
();
file
[
file_cnt
]
=
new
wb_wblfile
();
file
[
file_cnt
]
->
lexer
=
new
wb_wbllexer
(
s
);
file
[
file_cnt
]
->
lexer
=
new
wb_wbllexer
(
s
);
...
...
wb/lib/wb/src/wb_vrepwbl.h
View file @
18d53eb6
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#include "wb_erep.h"
#include "wb_erep.h"
#include "wb_attrname.h"
#include "wb_attrname.h"
#define WBL_FILEMAX
5
00
#define WBL_FILEMAX
10
00
class
wb_orepwbl
;
class
wb_orepwbl
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment